- ID scansione:
- c1b30b2b-a85d-4fda-ae57-461ed75c4803Fatto
- URL inviato:
- https://lunbo.xyz/
- Report terminato:
Link · 0 trovati
I link in uscita identificati dalla pagina
Variabili JavaScript · 3 trovate
Le variabili JavaScript globali caricate sull'oggetto finestra di una pagina sono variabili dichiarate all'esterno delle funzioni e accessibili da qualsiasi punto del codice nell'ambito corrente
Nome | Tipo |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
Messaggi di log della console · 1 trovati
Messaggi registrati nella console Web
Tipo | Categoria | Log |
---|---|---|
error | network |
|
HTML
Il corpo HTML non elaborato della pagina
<html><head></head><body>没有找到匹配的数据。
<meta charset="utf-8">
<title></title>
<style>
.container {
width: 60%;
margin: 10% auto 0;
background-color: #f0f0f0;
padding: 2% 5%;
border-radius: 10px
}
ul {
padding-left: 20px;
}
ul li {
line-height: 2.3
}
a {
color: #20a53a
}
</style>
<script>
var xhr = new XMLHttpRequest();
var respse; // 声明为全局变量
//domain = window.location.hostname;
xhr.open('GET', '/admin/xz_qingqiu.php?yuming=', true);
xhr.onreadystatechange = function() {
if (xhr.readyState === 4 && xhr.status === 200) {
var response = xhr.responseText;
console.log(response); // 可以在控制台输出返回的数据
// 在这里处理返回的数据
respse = response;
// 给全局变量赋值
//window.location.href = 'https://api.whatsapp.com/send/?phone=' + respse;
if(1===){
window.location.href = 'https://api.whatsapp.com/send/?phone=' + respse;
}else{
window.location.href = respse;
}
}
};
xhr.send();
</script>
</body></html>