Linux amd.servercpanel.com 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64
LiteSpeed
Server IP : 161.248.188.165 & Your IP : 216.73.216.219
Domains :
Cant Read [ /etc/named.conf ]
User : oishifashion
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
lsws /
admin /
html.6.3.4 /
classes /
Delete
Unzip
Name
Size
Permission
Date
Action
ws
[ DIR ]
drwxr-xr-x
2025-11-19 11:34
CValidation.php
26.65
KB
-rwxr-xr-x
2025-11-19 11:34
ConfData.php
860
B
-rwxr-xr-x
2025-11-19 11:34
ConfigFile.php
13.87
KB
-rwxr-xr-x
2025-11-19 11:34
ConfigFileEx.php
4.68
KB
-rwxr-xr-x
2025-11-19 11:34
CustStatusCode.php
2.19
KB
-rwxr-xr-x
2025-11-19 11:34
DATTR_HELP.php
773
B
-rwxr-xr-x
2025-11-19 11:34
DATTR_HELP_ITEM.php
2.53
KB
-rwxr-xr-x
2025-11-19 11:34
DAttrBase.php
12.42
KB
-rwxr-xr-x
2025-11-19 11:34
DFileSect.php
582
B
-rwxr-xr-x
2025-11-19 11:34
DPage.php
3.75
KB
-rwxr-xr-x
2025-11-19 11:34
DTbl.php
17.52
KB
-rwxr-xr-x
2025-11-19 11:34
DUtil.php
4.22
KB
-rwxr-xr-x
2025-11-19 11:34
DispInfo.php
4.36
KB
-rwxr-xr-x
2025-11-19 11:34
GUIBase.php
3.25
KB
-rwxr-xr-x
2025-11-19 11:34
PathTool.php
3.01
KB
-rwxr-xr-x
2025-11-19 11:34
XmlTreeBuilder.php
3.27
KB
-rwxr-xr-x
2025-11-19 11:34
blowfish.php
25.68
KB
-rwxr-xr-x
2025-11-19 11:34
jCryption.php
15.92
KB
-rwxr-xr-x
2025-11-19 11:34
Save
Rename
<?php class CustStatusCode { public static function &Get() { $status = [ 300 => 'Multiple Choices', 301 => 'Moved Permanently', 302 => 'Found', 303 => 'See Other', 305 => 'Use Proxy', 307 => 'Temporary Redirect', 400 => 'Bad Request', 401 => 'Unauthorized', 402 => 'Payment Required', 403 => 'Forbidden', 404 => 'Not Found', 405 => 'Method Not Allowed', 406 => 'Not Acceptable', 407 => 'Proxy Authentication Required', 408 => 'Request Time-out', 409 => 'Conflict', 410 => 'Gone', 411 => 'Length Required', 412 => 'Precondition Failed', 413 => 'Request Entity Too Large', 414 => 'Request-URI Too Large', 415 => 'Unsupported Media Type', 416 => 'Requested range not satisfiable', 417 => 'Expectation Failed', 500 => 'Internal Server Error', 501 => 'Not Implemented', 502 => 'Bad Gateway', 503 => 'Service Unavailable', 504 => 'Gateway Time-out', 505 => 'HTTP Version not supported', 520 => 'Unknown Error from the origin web server', ]; $options = []; foreach ($status as $key => $value) { $options[$key] = "$key $value"; } return $options; } public static function &GetRedirect() { $status = [ 300 => 'Multiple Choices', 301 => 'Moved Permanently', 302 => 'Found', 303 => 'See Other', 305 => 'Use Proxy', 307 => 'Temporary Redirect', 410 => 'Gone', 400 => 'Bad Request', 401 => 'Unauthorized', 402 => 'Payment Required', 403 => 'Forbidden', 404 => 'Not Found', 405 => 'Method Not Allowed', 406 => 'Not Acceptable', 407 => 'Proxy Authentication Required', 408 => 'Request Time-out', 409 => 'Conflict', 411 => 'Length Required', 412 => 'Precondition Failed', 413 => 'Request Entity Too Large', 414 => 'Request-URI Too Large', 415 => 'Unsupported Media Type', 416 => 'Requested range not satisfiable', 417 => 'Expectation Failed', 500 => 'Internal Server Error', 501 => 'Not Implemented', 502 => 'Bad Gateway', 503 => 'Service Unavailable', 504 => 'Gateway Time-out', 505 => 'HTTP Version not supported' ]; $options = []; foreach ($status as $key => $value) { $options[$key] = "$key $value"; } return $options; } }