Linux server2.hpierson.com 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64
Apache
: 162.0.216.123 | : 216.73.216.54
28 Domain
?7.4.33
yvffpqmy
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
opt /
cpanel /
ea-wappspector /
vendor /
rector /
rector /
[ HOME SHELL ]
Name
Size
Permission
Action
?;
bin
[ DIR ]
drwxr-xr-x
?;
config
[ DIR ]
drwxr-xr-x
?;
rules
[ DIR ]
drwxr-xr-x
?;
src
[ DIR ]
drwxr-xr-x
?;
stubs-rector
[ DIR ]
drwxr-xr-x
?;
templates
[ DIR ]
drwxr-xr-x
?;
vendor
[ DIR ]
drwxr-xr-x
LICENSE
1.1
KB
-rw-r--r--
README.md
6.11
KB
-rw-r--r--
bootstrap.php
800
B
-rw-r--r--
composer.json
754
B
-rw-r--r--
preload.php
30.31
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : bootstrap.php
<?php declare(strict_types = 1); // inspired by https://github.com/phpstan/phpstan/blob/master/bootstrap.php spl_autoload_register(function (string $class): void { static $composerAutoloader; // already loaded in bin/rector.php if (defined('__RECTOR_RUNNING__')) { return; } // load prefixed or native class, e.g. for running tests if (strpos($class, 'RectorPrefix') === 0 || strpos($class, 'Rector\\') === 0) { if ($composerAutoloader === null) { // prefixed version autoload $composerAutoloader = require __DIR__ . '/vendor/autoload.php'; } // some weird collision with PHPStan custom rule tests if (! is_int($composerAutoloader)) { $composerAutoloader->loadClass($class); } } });
Close