Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 3.145.176.168
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
lsws /
admin /
html.6.2.2 /
classes /
Delete
Unzip
Name
Size
Permission
Date
Action
ws
[ DIR ]
drwxr-xr-x
2024-07-11 18:56
CValidation.php
26.65
KB
-rw-r--r--
2024-07-11 18:56
ConfData.php
860
B
-rw-r--r--
2024-07-11 18:56
ConfigFile.php
13.87
KB
-rw-r--r--
2024-07-11 18:56
ConfigFileEx.php
4.68
KB
-rw-r--r--
2024-07-11 18:56
CustStatusCode.php
2.19
KB
-rw-r--r--
2024-07-11 18:56
DATTR_HELP.php
773
B
-rw-r--r--
2024-07-11 18:56
DATTR_HELP_ITEM.php
2.53
KB
-rw-r--r--
2024-07-11 18:56
DAttrBase.php
12.42
KB
-rw-r--r--
2024-07-11 18:56
DFileSect.php
582
B
-rw-r--r--
2024-07-11 18:56
DPage.php
3.75
KB
-rw-r--r--
2024-07-11 18:56
DTbl.php
17.52
KB
-rw-r--r--
2024-07-11 18:56
DUtil.php
4.22
KB
-rw-r--r--
2024-07-11 18:56
DispInfo.php
4.36
KB
-rw-r--r--
2024-07-11 18:56
GUIBase.php
3.25
KB
-rw-r--r--
2024-07-11 18:56
PathTool.php
3.02
KB
-rw-r--r--
2024-07-11 18:56
XmlTreeBuilder.php
3.27
KB
-rw-r--r--
2024-07-11 18:56
blowfish.php
25.68
KB
-rw-r--r--
2024-07-11 18:56
jCryption.php
15.92
KB
-rw-r--r--
2024-07-11 18:56
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; } }