twitter
    Find out what I'm doing, Follow Me :)

Sunday, December 19, 2010

Create One More Fake Virus

This fake virus will continuously open notepad file for unlimited times and make the victim thing that he have been hacked or his pc have got infected with a strong virus.
This all can be done with the help of a simple batch file.
--------------------------------------------------------
Batch File Code:
@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top
--------------------------------------------------------

Open the Notepad and paste this code.
Save the file with .bat extension (for eg: notepadhack.bat).
Now whenever the victim will double clicking this batch file, it will make notepad open continuously for unlimited times.


Working of this program:
Here ":top" is label. Label is like an address for someone.
"GOTO" gives simple meaning as go to that place. Means we are saying that go to the top label.
"START" code will start the exe file which is in that path.

1 comment: