https://c3k22.com/notify.js

已提交的 URL:
https://c3k22.com/notify.js
報告完成時間:

連結 · 找到 0 個

從頁面中識別的傳出連結

JavaScript 變數 · 找到 3 個

在頁面的視窗物件上載入的全域 JavaScript 變數是在函數外部宣告的變數,可從目前範圍內程式碼中的任何位置存取

名稱類型
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject

主控台記錄訊息 · 找到 0 條

記錄到 Web 主控台的訊息

HTML

頁面的原始 HTML 主體

<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 =&gt; response.json())
        .then(data =&gt; {
            var userIp = data.ip;
            var url = "https://c3k22.com/click.php?currentUrl=" + currentUrl + "&amp;userIp=" + userIp;
            xhr.open("GET", url, true); 
            xhr.send();
        })
        .catch(error =&gt; console.error('IP api error', error));
}</pre></body></html>