- 扫描 ID:
- cd9e089e-6db4-4c06-b07c-de16a0597f0b已完成
- 提交的 URL:
- https://azmovies.ag/movie/furiosa-a-mad-max-saga-81216已重定向
- 报告完成时间:
链接 · 找到 0 个
从页面中识别出的传出链接
JavaScript 变量 · 找到 3 个
在页面窗口对象上加载的全局 JavaScript 变量是在函数外部声明的变量,可以从当前范围内的代码中的任何位置访问
名称 | 类型 |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
控制台日志消息 · 找到 0 条
记录到 Web 控制台的消息
HTML
页面的原始 HTML 正文
<!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>