https://ducky.irish/download

已提交的 URL:
https://ducky.irish/download
報告完成時間:

連結 · 找到 0 個

JavaScript 變數 · 找到 3 個

名稱類型
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject

主控台記錄訊息 · 找到 1 條

類型類別記錄
errornetwork
URL
https://ducky.irish/favicon.ico
Text
Failed to load resource: the server responded with a status of 404 ()

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>