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.7 /
classes /
ws /
Delete
Unzip
Name
Size
Permission
Date
Action
CLIENT.php
8.99
KB
-rw-r--r--
2019-04-10 01:37
ConfCenter.php
32.2
KB
-rw-r--r--
2019-04-10 01:37
ConfValidation.php
994
B
-rw-r--r--
2019-04-10 01:37
DATTR_HELP_inc.php
216.99
KB
-rw-r--r--
2019-04-10 01:37
DAttr.php
1.35
KB
-rw-r--r--
2019-04-10 01:37
DPageDef.php
13.48
KB
-rw-r--r--
2019-04-10 01:37
DTblDef.php
108.14
KB
-rw-r--r--
2019-04-10 01:37
GUI.php
2.35
KB
-rw-r--r--
2019-04-10 01:37
PRODUCT.php
2.38
KB
-rw-r--r--
2019-04-10 01:37
ReqProbe.php
5.08
KB
-rw-r--r--
2019-04-10 01:37
STATS.php
8.73
KB
-rw-r--r--
2019-04-10 01:37
Service.php
17.78
KB
-rw-r--r--
2019-04-10 01:37
Save
Rename
<?php class DAttr extends DAttrBase { // 0: no restriction; 1: LSWS ENTERPRISE; 2: LSWS 2CPU +; // 3: LSLB 2CPU +; 4: X-CPU public $_version = 0; public $_feature = 0; // feature bit public function blockedVersion() { if ($this->_feature == 0 && $this->_version == 0) { return false; // no restriction } // feature either cache or litemage if ($this->_feature != 0) { $features = $_SERVER['LS_FEATURES']; if ( ($this->_feature & $features) != 0) { return false; // feature enabled } elseif ($this->_version == 0) { return true; } } if ($this->_version == 1) { // LSWS ENTERPRISE; $edition = strtoupper($_SERVER['LSWS_EDITION']); return ( strpos($edition, "ENTERPRISE" ) === false ); } $proc = $_SERVER['LSWS_CHILDREN']{0}; if ( !$proc) { $proc = 1; } if ($this->_version == 2) { // LSWS 2CPU + return ($proc < 2); } if ($this->_version == 4) {// XCPU, unlimited is 9:n (n is actual used) return ($proc != '9'); } return true; // not supported } public function dup($key, $label, $helpkey) { $d = parent::dup($key, $label, $helpkey); $d->_version = $this->_version; $d->_feature = $this->_feature; return $d; } public function bypassSavePost() { return ($this->_FDE[2] == 'N' || $this->blockedVersion()); } }