webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
aminiwrc
/
public_html11
/
job-listing
/
app
/
Http
/
Requests
/
Sms
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
SendVerificationCode.php
0.588KB
edt
ren
UpdateSmsSetting.php
1.177KB
edt
ren
VerifyOTPCode.php
0.571KB
edt
ren
<?php namespace App\Http\Requests\Sms; use App\Http\Requests\CoreRequest; use Illuminate\Foundation\Http\FormRequest; class VerifyOTPCode extends CoreRequest { /** * 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 [ 'otp' => 'required|size:'.config('nexmo.settings.code_length') ]; } }