- ID de l'analyse :
- cd9e089e-6db4-4c06-b07c-de16a0597f0bTerminée
- URL soumise :
- https://azmovies.ag/movie/furiosa-a-mad-max-saga-81216Redirigé
- Fin du rapport :
Liens : 0 trouvé(s)
Liens sortants identifiés à partir de la page
Variables JavaScript : 3 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 |
Messages de journal de console : 0 trouvé(s)
Messages consignés dans la console web
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>AZMovies | Verification</title>
<style>
@import "https://fonts.googleapis.com/css?family=Lora:400,700%7CMontserrat:300";
*,
*::before,
*::after {
margin: 5px 0;
box-sizing: inherit;
}
html {
font-size: 62.5%;
line-height: 1.15;
-webkit-text-size-adjust: 100%;
box-sizing: border-box;
}
body {
font-family: "Lora", serif;
font-size: 1.5rem;
background-color: #131313;
color: #fff;
}
.container {
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
height: 100vh;
}
.hidden { display: none; }
.centered-object {
height:100px;
text-align: center;
margin-top:10px;
}
.centered-object2 {
text-align: center;
margin-top: 10px;
}
</style>
</head>
<body>
<div class="container">
<div id="verification-section" class="centered-object2">
<h1 style="color: #ffca28;font-size: 6rem; font-family: 'Montserrat', sans-serif;">AZMovies</h1>
<p>Welcome to AZMovies, Please solve this puzzle to enter</p>
<p>What is 10 + 7 ?</p>
<input type="text" id="captcha" placeholder="Your answer" required="">
<button id="verify-btn">Verify</button>
<p id="error-message" style="color: red;" class="hidden">Incorrect answer. Please try again.</p>
</div>
<div id="main-content" class="hidden centered-object">
<p>Successful! you will be redirected shortly.</p>
</div>
</div>
<script>
document.getElementById('verify-btn').addEventListener('click', function () {
const answer = document.getElementById('captcha').value;
if (answer === '') {
alert("Please enter an answer.");
return;
}
// Send answer to the server via AJAX
fetch('/verify', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({ captcha: answer })
})
.then(response => response.json())
.then(data => {
if (data.success) {
// If verified, hide the puzzle and show the main content
document.getElementById('verification-section').classList.add('hidden');
document.getElementById('main-content').classList.remove('hidden');
window.location.replace("/");
} else {
// Show error message
document.getElementById('error-message').classList.remove('hidden');
}
})
.catch(err => console.error("Error:", err));
});
</script>
</body></html>