Skip to main content

A python package to send corporate amounts of email quickly and easily

Project description

mailbomb

A python package to send corporate amounts of email quickly and easily

This python package (for Python 3.6) allows you to quickly send massive amounts of email to your customers.

Installation

The package is available for install from pip:

pip3 install mailbomb

And then you are good to go.

Usage

Import the package in your Python script like so:

import mailbomb.Mailbomb as mb

nuke = mb.Mailbomb(host='smtp.example.com', port=465,
    login='user@example.com', key='vErYsEcReTpAsSkEy')
nuke.load_target_list('targets.txt')        # Read targets line by line from a .txt-file
nuke.add_target('target@targetdomain.com')  # Add a target manually
nuke.remove_duplicate_targets()             # Removes duplicate targets
nuke.exclude_targets('exclude_list.txt')    # Excludes targets line by line from the specified .txt-file
nuke.add_header('From', 'Anonymous Attacker <anonymous@attacker.com>')
nuke.add_header('Subject', 'You are being nuked. Enjoy!')
nuke.add_header('Reply-To', 'Anonymous Attacker #2 <other@attacker.com>')
nuke.load_html_message('message.html')
nuke.starttls()
nuke.launch_agents(50)
nuke.terminate()

And the nuke will be launched. Details on adding target email addresses will follow soon as this functionality has not yet been implemented.

Uninstallation

Uninstall the package using pip:

pip3 uninstall mailbomb

Thank you for using this Python package!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mailbomb-0.0.1.5.tar.gz (3.4 kB view hashes)

Uploaded Source

Built Distribution

mailbomb-0.0.1.5-py3-none-any.whl (16.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page