- ID de l'analyse :
- 3308067e-881a-4acf-8ca7-e7dae69c6918Terminée
- URL soumise :
- https://ducky.irish/download
- Fin du rapport :
Liens : 0 trouvé(s)
Liens sortants identifiés à partir de la page
Variables JavaScript : 3 trouvée(s)
Les variables JavaScript globales chargées dans l'objet fenêtre d'une page sont des variables déclarées en dehors des fonctions et accessibles depuis n'importe quel endroit du code au sein du champ d'application actuel
Nom | Type |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
Messages de journal de console : 1 trouvé(s)
Messages consignés dans la console web
Type | Catégorie | Enregistrement |
---|---|---|
error | network |
|
HTML
Le corps HTML de la page en données brutes
<!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>