Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/9p9/email-spammers
Robust pentesting tool for testing email spam filters. Simulate email floods to evaluate and strengthen anti-spam defenses against spammers and flooders.
https://github.com/9p9/email-spammers
email-flood email-flooder email-sender email-spammer email-spamming spamming-tool
Last synced: about 1 month ago
JSON representation
Robust pentesting tool for testing email spam filters. Simulate email floods to evaluate and strengthen anti-spam defenses against spammers and flooders.
- Host: GitHub
- URL: https://github.com/9p9/email-spammers
- Owner: 9P9
- License: mit
- Created: 2024-05-05T20:58:07.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-05-05T21:06:06.000Z (8 months ago)
- Last Synced: 2024-05-06T21:44:35.136Z (8 months ago)
- Topics: email-flood, email-flooder, email-sender, email-spammer, email-spamming, spamming-tool
- Language: JavaScript
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Email Spammer
This Node.js application serves as a pentesting tool designed to help test and evaluate the effectiveness of email spam filters. It uses the Floodmail API to send controlled email floods, allowing users to assess how well their email systems detect and manage unsolicited emails.
## Prerequisites
Ensure you have the following installed:
- Node.js
- npmNode.js and npm can be downloaded from [nodejs.org](https://nodejs.org/).
## Installation
Clone this repository and install its dependencies:
```bash
git clone https://github.com/9P9/email-spammer.git
cd email-spammer
npm install axios
```## Configuration
Before running the application, you must obtain an API key from [Floodmail.net](https://floodmail.net). This key will allow you to interact with the Floodmail API responsibly.
### Set API Key and Username
Open the application code and set your Floodmail username and API key:
```javascript
let floodMailKey = "YOUR_API_KEY_HERE"; // Replace with your Floodmail API key
let floodMailUser = "YOUR_USERNAME_HERE"; // Replace with your Floodmail username
```## Usage
To use the tool to test an email's spam filter, simply run the script with Node.js:
```bash
node index.js
```This will execute a predefined email flood test against the email address specified in the script.
### Modify Test Parameters
You can modify the target email and other parameters directly in the script:
```javascript
let email = "[email protected]"; // Target email address
sendFlood(email);
```
![Email Flood Testing GIF](https://cdn.discordapp.com/attachments/838974791716962304/1236784985357422652/uRM7rHe-1-ezgif.com-video-to-gif-converter.gif?ex=66394546&is=6637f3c6&hm=bf604298fa3d0bdcce8652ec39ae81dd5dbf2a0e6bd60808c95386e22961ce77)## Responsible Use
**This tool is intended for security testing and educational purposes only.** Use this tool only on systems you have permission to test. Unauthorized use of this tool against third-party email addresses without consent is illegal and unethical.
## Support
For support, please open an issue on the GitHub repository.