⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.216
Server IP:
65.21.180.239
Server:
Linux gowhm.eplangoweb.com 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.0.30
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
proc
/
1305819
/
cwd
/
.trash
/
View File Name :
index.php.3
<?php // Display all error, for easy troubleshooting ini_set('display_errors', 1); ini_set('display_startup_errors', 1); error_reporting(E_ALL); // Capture the URI and return OK $uri = parse_url($_SERVER['REQUEST_URI']); if ($uri['path'] == '/') { echo "Tracking domain is ready"; exit(); } // Decode URL function base64UrlDecode($string) { if (is_null($string)) { return null; } return base64_decode(str_replace(['-','_'], ['+','/'], $string)); } // Get the actual url $trackingUrl = trim($uri['path'], '/'); // Test endpoint if ($trackingUrl == 'ok') { echo "ok"; exit(); } // Redirect if (isset($_GET['debug'])) { echo "Before decoded: {$trackingUrl}"; } $trackingUrl = base64UrlDecode($trackingUrl); if (isset($_GET['debug'])) { echo "<br>After decoded: {$trackingUrl}"; exit(); } header("Location: {$trackingUrl}");