You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

809 B

ProtonID

I recently had a need to identify a large number of emails/domains to see if they had protonmail accounts. I checked this by seeing if they had proton's MX records set up. image

image

image

Usage

python3 protonID.py -e me@grahamhelton.com
python3 protonID.py -l list.txt
python3 protonID.py -l /path/to/list.txt

# Return just emails with some commandline kung-fu
./protonID.py -l emails.txt | grep "has proton mail MX records" | awk {'print $3'} | sort | uniq