- ID de exploración:
- 3a38f6c2-78e2-4a6d-8245-8a44aa05a159Finalizado
- URL enviada:
- https://9467.spshop8686.com/index/usuarios/register/invite_code/WLUY7Q.htmlRedireccionado
- Informe finalizado:
Enlaces: 0 encontrados
Los enlaces salientes identificados en la página
Variables JavaScript: 6 encontradas
Las variables JavaScript globales cargadas en el objeto de ventana de una página son variables declaradas fuera de las funciones y a las que se puede acceder desde cualquier lugar del código en el ámbito actual
Nombre | Tipo |
---|---|
0 | object |
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
loadIframe | function |
tiao | function |
Mensajes de registro de la consola: 8 encontrados
Mensajes registrados en la consola web
Tipo | Categoría | Registro |
---|---|---|
log | other |
|
log | other |
|
error | security |
|
error | security |
|
error | security |
|
error | security |
|
verbose | dom |
|
verbose | dom |
|
HTML
El cuerpo HTML sin procesar de la página
<!DOCTYPE html><html lang="en"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<style>
body, html {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
}
iframe {
border: none;
width: 100%;
height: 100%;
}
</style>
<script>
function loadIframe() {
// 获取当前域名
let domain = window.location.href; // 例如 "abc.web.abcd.com"
// 使用正则表达式去掉 "web"
let modifiedDomain = domain.replace('.web', '');
// 输出去掉 "web" 的域名
console.log(modifiedDomain);
const savedPath = localStorage.getItem('savedPath');
document.getElementById('myIframe').src = modifiedDomain + savedPath;
localStorage.removeItem('savedPath');
}
function tiao() {
// 获取当前 URL 的路径部分
const currentUrl = window.location.href;
const url = new URL(currentUrl);
const path = url.pathname + url.search + url.hash;
// console.log(path,'kkkkkkk')
// 存储路径到本地缓存
localStorage.setItem('savedPath', path);
// 重定向到不带路径的域名
const baseDomain = url.origin;
window.location.href = baseDomain;
}
window.onload = function() {
const savedPath = localStorage.getItem('savedPath');
if (savedPath) {
console.log('Retrieved path:', savedPath);
setTimeout(loadIframe, 500);
// 这里可以根据需求处理路径,比如使用它进行页面导航或其他操作
}else{
// console.log('ssss88888')
tiao();
}
};
</script>
</head>
<body>
<iframe id="myIframe" src="https://ns2zoa77.spshopijgg3.top//index/usuarios/register/invite_code/WLUY7Q.html"></iframe>
</body></html>