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 : mkring.sh
#!/bin/bash PORTS="6379 6380 6381 6382" REDIS=redis-server function start_node() { P=$1 echo "starting node on port $P"; CONFIG_FILE=`tempfile` cat > $CONFIG_FILE << CONFIG port $P CONFIG $REDIS $CONFIG_FILE > /dev/null 2>/dev/null & sleep 1 rm -f $CONFIG_FILE } function stop_node() { P=$1 PID=$2 redis-cli -h localhost -p $P shutdown kill -9 $PID 2>/dev/null } function stop() { for P in $PORTS; do PID=`lsof -i :$P | tail -1 | cut -f 2 -d " "` if [ "$PID" != "" ]; then stop_node $P $PID fi done } function start() { for P in $PORTS; do start_node $P done } case "$1" in start) start ;; stop) stop ;; restart) stop start ;; *) echo "Usage: $0 [start|stop|restart]" ;; esac
Close