webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
spatie
/
laravel-ignition
/
src
/
Recorders
/
DumpRecorder
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
Dump.php
0.767KB
edt
ren
DumpHandler.php
0.441KB
edt
ren
DumpRecorder.php
3.77KB
edt
ren
HtmlDumper.php
0.893KB
edt
ren
MultiDumpHandler.php
0.489KB
edt
ren
<?php namespace Spatie\LaravelIgnition\Recorders\DumpRecorder; use Symfony\Component\VarDumper\Cloner\Data; use Symfony\Component\VarDumper\Cloner\VarCloner; use Symfony\Component\VarDumper\Dumper\HtmlDumper as BaseHtmlDumper; class HtmlDumper extends BaseHtmlDumper { public function __construct($output = null, string $charset = null, int $flags = 0) { parent::__construct($output, $charset, $flags); $this->setDumpHeader(''); } public function dumpVariable($variable): string { $cloner = new VarCloner(); $clonedData = $cloner->cloneVar($variable)->withMaxDepth(3); return $this->dump($clonedData); } public function dump(Data $data, $output = null, array $extraDisplayOptions = []): string { return (string)parent::dump($data, true, [ 'maxDepth' => 3, 'maxStringLength' => 160, ]); } }
<=Back
Liking