Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mrlew1s/BrokenSMTP
Small python script to look for common vulnerabilities on SMTP server.
https://github.com/mrlew1s/BrokenSMTP
bugbounty pentest pentest-scripts pentest-tool pentesting python python3 security security-tools smtp spoofing userenumeration vulnerabilities vulnerability
Last synced: 3 months ago
JSON representation
Small python script to look for common vulnerabilities on SMTP server.
- Host: GitHub
- URL: https://github.com/mrlew1s/BrokenSMTP
- Owner: mrlew1s
- Created: 2021-07-23T17:18:37.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-12-17T23:52:09.000Z (11 months ago)
- Last Synced: 2024-06-06T22:48:13.291Z (5 months ago)
- Topics: bugbounty, pentest, pentest-scripts, pentest-tool, pentesting, python, python3, security, security-tools, smtp, spoofing, userenumeration, vulnerabilities, vulnerability
- Language: Python
- Homepage:
- Size: 530 KB
- Stars: 46
- Watchers: 1
- Forks: 15
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-hacking-lists - mrlew1s/BrokenSMTP - Small python script to look for common vulnerabilities on SMTP server. (Python)
README
# BrokenSMTP
BrokenSMTP is a python3 BugBounty/Pentesting tool to look for common vulnerabilities on SMTP server.![image](broken_smtp.PNG)
Supported Vulnerability :
* Feature Enumeration - Enumerate available features on the SMTP Server.* Spoofing - The ability to send an email by impersonating another user.
* User Enumeration - Looking for the possibility to enumerate users with SMTP VFRY command.## Installation :
```
pip install -r requirments.txt
```## Usage :
```
python3 BrokenSMTP.py -t SMTPServer -p Port(s)-h, --help show this help message and exit
--targets TARGETS, -t TARGETS
SMTP target server address or file containing SMTP servers list
--port PORT, -p PORT SMTP Targert port or list of port SMTP servers list. Use * for all SMTP Ports.```