Bulk email access checker tool, searches through a list of email accounts for specific keywords.
- Multi-threaded email checking
- Customizable search criteria (subject, sender, body)
- Date filtering
- Random shuffling of input list
- Python 3.6+
- Required packages:
imaplib
,termcolor
-
Install required packages:
pip3 install termcolor
-
Prepare a combolist file with email:password pairs, one per line.
-
Optionally you can add email servers: Open the
config.json
file with email provider settings:[ { "Domains": ["example.com"], "Hostname": "imap.example.com", "Port": 993 } ]
python3 main.py combolist.txt --threads 20 --search-in subject --keyword "important" --since 01-Jan-2024
Arguments:
combolist
: Path to the combolist file--threads
: Number of threads (default: 20)--search-in
: Where to search (subject, from, body)--keyword
: Keyword to search for--since
: Minimum date (format: DD-Mon-YYYY)
Results are saved in found.txt
.
Ensure you have permission to access the email accounts. Use responsibly and ethically.