- Scan ID:
- 3308067e-881a-4acf-8ca7-e7dae69c6918Finished
- Submitted URL:
- https://ducky.irish/download
- Report Finished:
Links · 0 found
The outgoing links identified from the page
JavaScript Variables · 3 found
Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope
Name | Type |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
Console log messages · 1 found
Messages logged to the web console
Type | Category | Log |
---|---|---|
error | network |
|
HTML
The raw HTML body of the page
<!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>