Linux evo.fastest-server.com 5.14.0-284.1101.el9.tuxcare.11.els11.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 14 13:30:35 UTC 2026 x86_64
LiteSpeed
Server IP : 103.249.112.113 & Your IP : 216.73.217.135
Domains : 988 Domain
User : tanishks
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
lsws /
lsws-6.1.2 /
admin /
html /
classes /
Delete
Unzip
Name
Size
Permission
Date
Action
ws
[ DIR ]
drwxr-xr-x
2023-06-16 14:26
CValidation.php
26.65
KB
-rw-r--r--
2023-02-17 18:07
ConfData.php
860
B
-rw-r--r--
2023-01-10 00:49
ConfigFile.php
13.78
KB
-rw-r--r--
2023-01-10 00:49
ConfigFileEx.php
4.68
KB
-rw-r--r--
2023-01-10 00:49
CustStatusCode.php
2.19
KB
-rw-r--r--
2023-01-10 00:49
DATTR_HELP.php
773
B
-rw-r--r--
2023-01-10 00:49
DATTR_HELP_ITEM.php
2.53
KB
-rw-r--r--
2018-12-20 17:14
DAttrBase.php
12.42
KB
-rw-r--r--
2023-01-10 00:49
DFileSect.php
582
B
-rw-r--r--
2013-04-03 20:50
DPage.php
3.75
KB
-rw-r--r--
2023-01-10 00:49
DTbl.php
16.86
KB
-rw-r--r--
2023-01-06 04:06
DUtil.php
4.22
KB
-rw-r--r--
2023-01-06 04:06
DispInfo.php
4.36
KB
-rw-r--r--
2021-12-08 05:36
GUIBase.php
3.25
KB
-rw-r--r--
2018-08-23 17:48
PathTool.php
3.02
KB
-rw-r--r--
2023-01-06 04:06
XmlTreeBuilder.php
3.27
KB
-rw-r--r--
2023-01-10 00:49
blowfish.php
25.68
KB
-rw-r--r--
2023-01-06 04:06
jCryption.php
15.92
KB
-rw-r--r--
2023-01-10 00:49
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; } }