Linux lionsclub 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.29 (Ubuntu)
: 161.35.52.75 | : 3.145.183.122
Cant Read [ /etc/named.conf ]
7.4.28
www-data
shells.trxsecurity.org
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
Backdoor Scanner
Backdoor Create
Alfa Webshell
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
lionsclub /
core /
vendor /
nunomaduro /
collision /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
Adapters
[ DIR ]
drwxr-xr-x
Contracts
[ DIR ]
drwxr-xr-x
Exceptions
[ DIR ]
drwxr-xr-x
SolutionsRepositories
[ DIR ]
drwxr-xr-x
ArgumentFormatter.php
1.19
KB
-rw-r--r--
ConsoleColor.php
6.47
KB
-rw-r--r--
Handler.php
1.19
KB
-rw-r--r--
Highlighter.php
8.73
KB
-rw-r--r--
Provider.php
1.16
KB
-rw-r--r--
Writer.php
9.69
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Handler.php
<?php declare(strict_types=1); namespace NunoMaduro\Collision; use NunoMaduro\Collision\Contracts\Handler as HandlerContract; use NunoMaduro\Collision\Contracts\Writer as WriterContract; use Symfony\Component\Console\Output\OutputInterface; use Whoops\Handler\Handler as AbstractHandler; /** * @internal * * @see \Tests\Unit\HandlerTest */ final class Handler extends AbstractHandler implements HandlerContract { /** * Holds an instance of the writer. * * @var \NunoMaduro\Collision\Contracts\Writer */ protected $writer; /** * Creates an instance of the Handler. */ public function __construct(WriterContract $writer = null) { $this->writer = $writer ?: new Writer(); } /** * {@inheritdoc} */ public function handle() { $this->writer->write($this->getInspector()); return static::QUIT; } /** * {@inheritdoc} */ public function setOutput(OutputInterface $output): HandlerContract { $this->writer->setOutput($output); return $this; } /** * {@inheritdoc} */ public function getWriter(): WriterContract { return $this->writer; } }
Close