- 扫描 ID:
- 059b81c7-0881-4509-b74e-399cc7f5f526已完成
- 提交的 URL:
- https://c3k22.com/notify.js
- 报告完成时间:
链接 · 找到 0 个
从页面中识别出的传出链接
JavaScript 变量 · 找到 3 个
在页面窗口对象上加载的全局 JavaScript 变量是在函数外部声明的变量,可以从当前范围内的代码中的任何位置访问
名称 | 类型 |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
控制台日志消息 · 找到 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 => 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>