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 DATTR_HELP { private $db; private $edb; private function __construct() { $this->init(); } public static function GetInstance() { if ( !isset($GLOBALS['_DATTR_HELP_']) ) { $GLOBALS['_DATTR_HELP_'] = new DATTR_HELP(); } return $GLOBALS['_DATTR_HELP_']; } public function GetItem($label) { if (isset($this->db[$label])) { return $this->db[$label]; } return null; } public function GetEditTip($labels) { $tips = []; foreach ($labels as $label) { if (isset($this->edb[$label])) { $tips = array_merge($tips, $this->edb[$label]); } } return $tips; } private function init() { // add other customized items here include 'DATTR_HELP_inc.php'; } }