Spams victim’s email by signing up to a newletter repetitevely using email dot trick

Carnage Email Bomber Spams victim’s email by signing up to a newletter repetitevely using email dot trick. Report Bug · Request Feature Features Clean UI (I was bored) HTTP/HTTPS Proxies Required Victim will constantly get emails from the newsletter, perfect way to piss off your victims. Uses the email dot trick to sign up multiple times under the same email. (Making it very difficult to block all the newsletter emails) GitHub View Github    

Read more

Send Email from the console line using a python3 script

Table of content About the project This python3 script allow you to send email from the terminal using a json file as configuration file and a .txt file as the subject for the mail. Setup Install required packages cd send_email $ pip install -r requirements.txt Create the config.json file with your credentials . This configuration file is for gmailChange port and server for others smtp providers. { “email”: “[email protected]”, “password”: “xxxxxx”, “port”: 587, “server”: “smtp.gmail.com” } Remove reading write   […]

Read more

This program sends a message to various email adresses

This program sends a message to various email adresses.Fist, download offices.txt and message.txtThen, enter the directory of the files where it is needed.In the offices.txt file, enter the name of the receiver with a capital first letter. Leave a space and then enter their e-mail adress.In order to enter a second receiver, change the line.In the message.txt file you construct your own message around the text “$OFFICE_NAME”, which you will leave untouched.When you run the .py file, you will be […]

Read more

Email sending for Flask

Flask extension for Red Mail What is it? Flask Red Mail is a Flask extension for Red Mail.Red Mail is a powerful email sender library capable of includingattachments from various formats, embedding images, parametrizationwith Jinja etc. This library harness the power of Red Mail in order tomake it trivial to: Send verification emails to users Create email based forgot password functionality Create Flask based email news letters Handle other needs for sending emails from a web application Links: Installation Install […]

Read more

A repo by Lukas Schubotz and Raymon van Dinter

We’re the hackathon leftovers, but we are Too Good To Go ;-). A repo by Lukas Schubotz, Stef van Buuren, and Raymon van Dinter. We aim to improve current data preprocessing for FTM’s WOB data to analyze Shell and Dutch Governmental contacts. Synchronous visualisation of email threads Publications from the FTM “Dossier SHELL papers” https://www.ftm.nl/dossier/shell-papers suggest that timing of events is critical in the interactions between actors. It would therefore be useful if we could visualise the mail exchanges in […]

Read more

A script that helps you understand why your E-Mail ended up in Spam

Whether you are trying to understand why a specific e-mail ended up in SPAM/Junk for your daily Administrative duties or for your Red-Team Phishing simulation purposes, this script is there for you to help! Idea arose while delivering a commercial Phishing Simulation exercises against MS Office365 E5 estate, equipped with MS Defender for Office365. As one can imagine, pretty tough security stack to work with from a phishing-simulation perspective.After digging manually through all these Office365 SMTP headers and trying to […]

Read more

Python library for sending emails

Python library for sending emails. Installation git clone https://github.com/SunPodder/Mail-py Usage Import module and create instance: from Mail import * mail = Mail(“[email protected]”, “password”) Set receiver’s email address and subject: mail.receiver = “[email protected]” #Receiver’s email address mail.subject = “Demo Mail” #email subject Send a simple email: mail.addText(“Hello world!nThis    

Read more
1 2