Linux premium180.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
LiteSpeed
: 162.0.209.168 | : 216.73.216.187
Cant Read [ /etc/named.conf ]
8.3.30
nortrmdp
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
opt /
alt /
php53 /
usr /
share /
pear /
[ HOME SHELL ]
Name
Size
Permission
Action
.channels
[ DIR ]
drwxr-xr-x
.pkgxml
[ DIR ]
drwxr-xr-x
.registry
[ DIR ]
drwxr-xr-x
Archive
[ DIR ]
drwxr-xr-x
Auth
[ DIR ]
drwxr-xr-x
Console
[ DIR ]
drwxr-xr-x
Mail
[ DIR ]
drwxr-xr-x
Net
[ DIR ]
drwxr-xr-x
OS
[ DIR ]
drwxr-xr-x
PEAR
[ DIR ]
drwxr-xr-x
Structures
[ DIR ]
drwxr-xr-x
Symfony
[ DIR ]
drwxr-xr-x
XML
[ DIR ]
drwxr-xr-x
data
[ DIR ]
drwxr-xr-x
ezc
[ DIR ]
drwxr-xr-x
test
[ DIR ]
drwxr-xr-x
.depdb
12.91
KB
-rw-r--r--
.depdblock
0
B
-rw-r--r--
.filemap
383.27
KB
-rw-r--r--
.lock
0
B
-rw-r--r--
Mail.php
9.65
KB
-rw-r--r--
PEAR.php
33.06
KB
-rw-r--r--
PEAR5.php
1.06
KB
-rw-r--r--
System.php
20.34
KB
-rw-r--r--
pearcmd.php
14.2
KB
-rw-r--r--
peclcmd.php
1.01
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : PEAR5.php
<?php /** * This is only meant for PHP 5 to get rid of certain strict warning * that doesn't get hidden since it's in the shutdown function */ class PEAR5 { /** * If you have a class that's mostly/entirely static, and you need static * properties, you can use this method to simulate them. Eg. in your method(s) * do this: $myVar = &PEAR5::getStaticProperty('myclass', 'myVar'); * You MUST use a reference, or they will not persist! * * @access public * @param string $class The calling classname, to prevent clashes * @param string $var The variable to retrieve. * @return mixed A reference to the variable. If not set it will be * auto initialised to NULL. */ static function &getStaticProperty($class, $var) { static $properties; if (!isset($properties[$class])) { $properties[$class] = array(); } if (!array_key_exists($var, $properties[$class])) { $properties[$class][$var] = null; } return $properties[$class][$var]; } }
Close