Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
vendor
/
barryvdh
/
laravel-debugbar
/
src
/
Twig
/
Extension
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
Debug.php
0.795KB
edt
ren
Dump.php
0.184KB
edt
ren
Stopwatch.php
1.621KB
edt
ren
<?php namespace Barryvdh\Debugbar\Twig\Extension; use DebugBar\Bridge\Twig\DebugTwigExtension; use Illuminate\Foundation\Application; use Twig\Environment; /** * Access debugbar debug in your Twig templates. */ class Debug extends DebugTwigExtension { protected $app; /** * Create a new debug extension. * * @param \Illuminate\Foundation\Application $app */ public function __construct(Application $app) { $this->app = $app; parent::__construct(null); } public function debug(Environment $env, $context) { if ($this->app->bound('debugbar') && $this->app['debugbar']->hasCollector('messages')) { $this->messagesCollector = $this->app['debugbar']['messages']; } return parent::debug($env, $context); } }
<=Back
Liking