Friday, June 17, 2011

e-Bomb

The concept of “e-bomb” is very simple, it is some kind of program that opens a ton of windows and makes the victim computer crash.  e-bombing is a type of hacking technique it is generally used by the computer users to make fun with friends by crashing their computers or it is also used to make simple viruses(just for learning purpose). To make a simple e-bomb open your notepad and write the DOS commands written below:

@echo off
Start notepad
Start notepad
Start notepad
Start notepad
Start notepad
Start iexplore.exe http://trickraja.blogspot.com
 
Save the file with .bat extension. The commands written above help you to open the notepad 5 times on victim’s computer.

Here are the commands to shut down the computer:

@echo off
color 3
title Conditional Shutdown
set /p name=enter a name:
:start
cls
echo Hi, %name%
echo.
echo 1.Shutdown
echo 2.Quit
:invalid_choice
set /p choice=enter your choice 1,2:
if %choice%==1 goto shutdown
if %choice%==2 exit
echo invalid choice: %choice%
goto invalid_choice
:shutdown
cls
set /p sec=enter the number of seconds that you wish the computer to shutdown in:
set /p message=enter the shutdown message you wish to display:
shutdown.exe -s -f -t %sec% -c "%message%"
echo shutdown initiated at %time%
set /p cancel=type cancel to stop shutdown
if %cancel%==cancel shutdown.exe -a
if %cancel%==cancel goto start 

No comments:

Post a Comment