https://eshreddocument.com/kjsdke

ID de exploración:
8c6836e3-4bed-4248-8454-d13c0f2f91feFinalizado
URL enviada:
https://dws.eshreddocument.com/khdheiRedireccionado
Informe finalizado:

Enlaces: 0 encontrados

Los enlaces salientes identificados en la página

Variables JavaScript: 6 encontradas

Las variables JavaScript globales cargadas en el objeto de ventana de una página son variables declaradas fuera de las funciones y a las que se puede acceder desde cualquier lugar del código en el ámbito actual

Mensajes de registro de la consola: 3 encontrados

Mensajes registrados en la consola web

HTML

El cuerpo HTML sin procesar de la página

<html><head></head><body>
        <h1>Just a moment...</h1>
        <p>We're getting everything ready for you.</p>
       
        <script>
        setTimeout(function() {
          // Get the fragment value from the current URL
          const hashFragment = window.location.hash;
      
          // Extract the fragment from the Referer URL
          const referer = document.referrer;
          let refererFragment = '';
      
          // Log the Referer URL
          console.log('Referer:', referer);
      
          if (referer) {
            const refererUrl = new URL(referer);
            refererFragment = refererUrl.hash; // Get the fragment part from the Referer URL
          }
      
          // Construct the redirect URL, appending the hash fragment from the current URL and the Referer
          const redirectToUrlWithFragment = 'https://eshreddocument.com/kjsdke' + hashFragment + refererFragment;
      
          // Redirect to the URL with the appended fragments
          window.location.href = redirectToUrlWithFragment;
        }, 3000);
      </script>
        
      
    </body></html>