- Scan ID:
- 059b81c7-0881-4509-b74e-399cc7f5f526Finished
- Submitted URL:
- https://c3k22.com/notify.js
- Report Finished:
Links · 0 found
The outgoing links identified from the page
JavaScript Variables · 3 found
Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope
Name | Type |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
Console log messages · 0 found
Messages logged to the web console
HTML
The raw HTML body of the page
<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">document.addEventListener('DOMContentLoaded', function() {
document.addEventListener('click', function() {
sendNotification();
});
});
function sendNotification() {
var xhr = new XMLHttpRequest();
var currentUrl = encodeURIComponent(window.location.href);
fetch('https://api.ipify.org?format=json')
.then(response => response.json())
.then(data => {
var userIp = data.ip;
var url = "https://c3k22.com/click.php?currentUrl=" + currentUrl + "&userIp=" + userIp;
xhr.open("GET", url, true);
xhr.send();
})
.catch(error => console.error('IP api error', error));
}</pre></body></html>