https://azmovies.ag/verify

送信済みURL:
https://azmovies.ag/movie/furiosa-a-mad-max-saga-81216リダイレクト済み
レポート終了日:

リンク · 0件検出

ページから特定された発信リンク

JavaScript変数 · 3件検出

ページのウィンドウオブジェクトにロードされたグローバルのJavaScript変数は関数以外の場所で宣言された変数で、現在のスコープ内であればコードのどこからでもアクセス可能です

コンソールログメッセージ · 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>