Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.216.105
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
lsws /
admin /
html.open /
lib /
ows /
Delete
Unzip
Name
Size
Permission
Date
Action
ConfValidation.php
1.48
KB
-rw-r--r--
2025-02-25 04:01
DAttr.php
410
B
-rw-r--r--
2025-02-25 04:01
DPageDef.php
19.2
KB
-rw-r--r--
2025-02-25 04:01
DTblDef.php
28.01
KB
-rw-r--r--
2025-02-25 04:01
Product.php
1.94
KB
-rw-r--r--
2025-02-25 04:01
RealTimeStats.php
11.2
KB
-rw-r--r--
2025-02-25 04:01
Service.php
48
B
-rw-r--r--
2025-02-25 04:01
UI.php
172
B
-rw-r--r--
2025-02-25 04:01
Save
Rename
<?php class Product { const PROD_NAME = 'OpenLiteSpeed'; private $version; private $new_version; private function __construct() { $matches = []; $str = $_SERVER['LSWS_EDITION']; if (preg_match('/(\d.*)$/i', $str, $matches)) { $this->version = trim($matches[1]); } $releasefile = SERVER_ROOT . 'autoupdate/release'; $releasefilecb = $releasefile . 'cb'; $newver = ''; $rel0 = $rel1 = ''; if (file_exists($releasefilecb)) { $rel = trim(file_get_contents($releasefilecb)); if (($pos = strpos($rel, ' ')) !== false) { $rel0 = substr($rel, 0, $pos); } else { $rel0 = $rel; } if ($this->version != $rel0) { $newver = $rel . ' (' . DMsg::UIStr('note_curbranch') . ') '; // will carry over extra string if it's in release } } if (file_exists($releasefile)) { $rel = trim(file_get_contents($releasefile)); if (($pos = strpos($rel, ' ')) !== false) { $rel1 = substr($rel, 0, $pos); } else { $rel1 = $rel; } if ($this->version != $rel1 && $rel0 != $rel1) { $newver .= $rel; // will carry over extra string if it's in release } } $this->new_version = $newver; } public static function GetInstance() { if (!isset($GLOBALS['_PRODUCT_'])) $GLOBALS['_PRODUCT_'] = new Product(); return $GLOBALS['_PRODUCT_']; } public function getVersion() { return $this->version; } public function refreshVersion() { $versionfile = SERVER_ROOT . 'VERSION'; $this->version = trim(file_get_contents($versionfile)); } public function getNewVersion() { return $this->new_version; } }