Linux newlinux5.pouyasazan.org 3.10.0-962.3.2.lve1.5.60.el7.x86_64 #1 SMP Fri Jul 23 07:07:00 EDT 2021 x86_64
LiteSpeed
Server IP : 88.99.66.243 & Your IP : 216.73.216.178
Domains :
Cant Read [ /etc/named.conf ]
User : wdbbsgxf
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
lsws /
admin /
html.5.4.12 /
classes /
Delete
Unzip
Name
Size
Permission
Date
Action
ws
[ DIR ]
drwxr-xr-x
2021-08-31 18:50
CHART.php
3.16
KB
-rw-r--r--
2021-08-31 18:50
CValidation.php
25.06
KB
-rw-r--r--
2021-08-31 18:50
ConfData.php
853
B
-rw-r--r--
2021-08-31 18:50
ConfigFile.php
13.69
KB
-rw-r--r--
2021-08-31 18:50
ConfigFileEx.php
4.96
KB
-rw-r--r--
2021-08-31 18:50
CustStatusCode.php
2.16
KB
-rw-r--r--
2021-08-31 18:50
DATTR_HELP.php
767
B
-rw-r--r--
2021-08-31 18:50
DATTR_HELP_ITEM.php
2.53
KB
-rw-r--r--
2021-08-31 18:50
DAttrBase.php
12.82
KB
-rw-r--r--
2021-08-31 18:50
DFileSect.php
582
B
-rw-r--r--
2021-08-31 18:50
DPage.php
3.72
KB
-rw-r--r--
2021-08-31 18:50
DTbl.php
16.67
KB
-rw-r--r--
2021-08-31 18:50
DUtil.php
4.71
KB
-rw-r--r--
2021-08-31 18:50
DispInfo.php
4.3
KB
-rw-r--r--
2021-08-31 18:50
GUIBase.php
3.25
KB
-rw-r--r--
2021-08-31 18:50
PathTool.php
2.81
KB
-rw-r--r--
2021-08-31 18:50
XmlTreeBuilder.php
3.37
KB
-rw-r--r--
2021-08-31 18:50
blowfish.php
26.82
KB
-rw-r--r--
2021-08-31 18:50
jCryption.php
15.73
KB
-rw-r--r--
2021-08-31 18:50
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; } }