- 제출된 URL:
- https://ducky.irish/download
- 보고서 완료:
링크 · 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>Download Page</title>
<style>
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #121212;
color: #f5f5f5;
}
h1 {
margin-bottom: 30px;
font-size: 2.5rem;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
button {
padding: 15px 30px;
font-size: 1.2rem;
font-weight: bold;
color: #121212;
background-color: #1db954;
border: none;
border-radius: 25px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
cursor: pointer;
transition: all 0.3s ease;
}
button:hover {
background-color: #1aa34a;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
button:active {
background-color: #198f41;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#message {
color: red;
margin-top: 20px;
}
</style>
</head>
<body>
<h1>CW cheat Version V5.1</h1>
<button id="downloadButton">Download</button>
<p id="message"></p>
<script>
document.getElementById('downloadButton').addEventListener('click', function() {
// Update this URL to the actual URL of your file on the server
const fileUrl = 'https://ducky.irish/FWLoader.exe';
// Create a link element and trigger the download
const link = document.createElement('a');
link.href = fileUrl;
link.download = 'FWLoader.exe';
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
// Optional: Display a message
document.getElementById('message').textContent = 'Your download should start shortly.';
});
</script>
</body></html>