- ID de l'analyse :
- 3a38f6c2-78e2-4a6d-8245-8a44aa05a159Terminée
- URL soumise :
- https://9467.spshop8686.com/index/usuarios/register/invite_code/WLUY7Q.htmlRedirigé
- Fin du rapport :
Liens : 0 trouvé(s)
Liens sortants identifiés à partir de la page
Variables JavaScript : 6 trouvée(s)
Les variables JavaScript globales chargées dans l'objet fenêtre d'une page sont des variables déclarées en dehors des fonctions et accessibles depuis n'importe quel endroit du code au sein du champ d'application actuel
Nom | Type |
---|---|
0 | object |
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
loadIframe | function |
tiao | function |
Messages de journal de console : 8 trouvé(s)
Messages consignés dans la console web
Type | Catégorie | Enregistrement |
---|---|---|
log | other |
|
log | other |
|
error | security |
|
error | security |
|
error | security |
|
error | security |
|
verbose | dom |
|
verbose | dom |
|
HTML
Le corps HTML de la page en données brutes
<!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>