Linux worldls-302.fr.planethoster.net 4.18.0-553.8.1.lve.el7h.x86_64 #1 SMP Thu Jul 4 15:19:33 UTC 2024 x86_64
LiteSpeed
Server IP : 10.185.0.203 & Your IP : 216.73.216.32
Domains :
Cant Read [ /etc/named.conf ]
User : gerathty
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
lsws /
admin /
html.5.3.5 /
classes /
Delete
Unzip
Name
Size
Permission
Date
Action
ws
[ DIR ]
drwxr-xr-x
2019-01-22 00:44
CHART.php
3.16
KB
-rw-r--r--
2019-01-22 00:44
CValidation.php
23.53
KB
-rw-r--r--
2019-01-22 00:44
ConfData.php
853
B
-rw-r--r--
2019-01-22 00:44
ConfigFile.php
12.85
KB
-rw-r--r--
2019-01-22 00:44
ConfigFileEx.php
4.19
KB
-rw-r--r--
2019-01-22 00:44
CustStatusCode.php
2.16
KB
-rw-r--r--
2019-01-22 00:44
DATTR_HELP.php
767
B
-rw-r--r--
2019-01-22 00:44
DATTR_HELP_ITEM.php
1.6
KB
-rw-r--r--
2019-01-22 00:44
DAttrBase.php
12.64
KB
-rw-r--r--
2019-01-22 00:44
DFileSect.php
582
B
-rw-r--r--
2019-01-22 00:44
DPage.php
3.72
KB
-rw-r--r--
2019-01-22 00:44
DTbl.php
16.82
KB
-rw-r--r--
2019-01-22 00:44
DUtil.php
4.71
KB
-rw-r--r--
2019-01-22 00:44
DispInfo.php
4.3
KB
-rw-r--r--
2019-01-22 00:44
GUIBase.php
3.25
KB
-rw-r--r--
2019-01-22 00:44
PathTool.php
2.49
KB
-rw-r--r--
2019-01-22 00:44
XmlTreeBuilder.php
3.37
KB
-rw-r--r--
2019-01-22 00:44
blowfish.php
26.82
KB
-rw-r--r--
2019-01-22 00:44
jCryption.php
15.73
KB
-rw-r--r--
2019-01-22 00:44
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; } }