Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.117.132.79
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
1 /
vendor /
facade /
flare-client-php /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
Concerns
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
Context
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
Contracts
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
Enums
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
Glows
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
Http
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
Middleware
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
Solutions
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
Stacktrace
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
Time
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
Truncation
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
Api.php
1.65
KB
-rw-r--r--
2020-11-17 16:24
Flare.php
6.35
KB
-rw-r--r--
2020-11-17 16:24
Frame.php
1.25
KB
-rw-r--r--
2020-11-17 16:24
Report.php
6.62
KB
-rw-r--r--
2020-11-17 16:24
View.php
1.09
KB
-rw-r--r--
2020-11-17 16:24
helpers.php
514
B
-rw-r--r--
2020-11-17 16:24
Save
Rename
<?php namespace Facade\FlareClient; use Symfony\Component\VarDumper\Cloner\VarCloner; use Symfony\Component\VarDumper\Dumper\HtmlDumper; class View { /** @var string */ private $file; /** @var array */ private $data = []; public function __construct(string $file, array $data = []) { $this->file = $file; $this->data = $data; } public static function create(string $file, array $data = []): self { return new static($file, $data); } private function dumpViewData($variable): string { $cloner = new VarCloner(); $dumper = new HtmlDumper(); $dumper->setDumpHeader(''); $output = fopen('php://memory', 'r+b'); $dumper->dump($cloner->cloneVar($variable)->withMaxDepth(1), $output, [ 'maxDepth' => 1, 'maxStringLength' => 160, ]); return stream_get_contents($output, -1, 0); } public function toArray() { return [ 'file' => $this->file, 'data' => array_map([$this, 'dumpViewData'], $this->data), ]; } }