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.139.55.240
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 CVal { private $_v = null; //value private $_e = null; //err public function __construct($v, $e=null) { $this->_v = $v; $this->_e = $e; } public function GetVal() { return $this->_v; } public function SetVal($v) { $this->_v = $v; } public function HasVal() { // 0 is valid return ($this->_v !== null && $this->_v !== ''); } public function GetErr() { return $this->_e; } public function SetErr($e) { $this->_e = $e; } public function HasErr() { return $this->_e != null; } } class ConfData { public $_data; public $_path; public $_type; //{'serv','admin','vh','tp'} public $_id; public function __construct($type, $path, $id=null) { $this->_data = []; $this->_type = $type; $this->_path = $path; $this->_id = $id; } public function setId($id) { $this->_id = $id; } }