- Scan ID:
- 0851abbf-5f4a-4a90-b5a7-109eb4cf4740Finished
- Submitted URL:
- https://dxd.cx/ti
- 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 · 2 found
Messages logged to the web console
Type | Category | Log |
---|---|---|
error | network |
|
error | network |
|
HTML
The raw HTML body of the page
<!DOCTYPE html><html><head>
<script src="./jquery-1.7.min.js"></script>
<script type="text/javascript">
let baseUrl="https://www.feilubino.online/7a-api/shortLink/smsRedirect";
function randomString(e) {
e = e || 32;
var t = "ABCDEFGHJKMNPQRSTWXYZabcdefhijkmnprstwxyz0123456789";
let a = t.length;
let n = "";
for (i = 0; i < e; i++){
n += t.charAt(Math.floor(Math.random() * a));
}
return n;
}
let deviceId=localStorage.getItem("smsDeviceId");
if(!deviceId){
deviceId=randomString(20);
localStorage.setItem("smsDeviceId",deviceId);
}
let data={href:window.location.href,deviceId:deviceId}
$(function(){
$.post(baseUrl,data,function(res){
if(res.success&&res.data.url&&res.data.url.length>=10){
window.location.href=res.data.url;
}
});
})
</script>
</head>
<body>
</body></html>