Advertisement
floofer

megaposty

Nov 6th, 2017
1,391
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.74 KB | None | 0 0
  1. This is my first post on hackforums so I would appreciate any feedback. I know that email spoofing is pretty common knowledge but in case someone out there is looking for a tutorial here it is. First of all you need to have kali linux and a gmail or smtp2go account.
  2. SPOOFING VIA GMAIL:
  3. Spoofing via gmail is very easy when using kali linux. It only takes one command in terminal to spoof the email. Here is the command:
  4.  
  5. sendemail -f $sourceemail -t $recipient -u $subject -m $body -s smtp.gmail.com:587 -xu $yourgmail -xp $yourgmailpassword
  6.  
  7. You would replace $soureemail with the email you want send from, replace $recipient with the email of who you want to recieve the spoof, replace $subject with the subject of your email, replace $body with the body of your email, replace $yourgmail with your actual gmail account, and replace $yourgmailpassword with your actual gmail password.
  8.  
  9. Let's say you wanted to spoof an email from Jimmy@gmail.com to Tammy@gmail.com and your gmail account is NBAthotboi@gmail.com and your password is Iwishihadfriends02 your command would be as follows:
  10.  
  11. sendemail -f Jimmy@gmail.com -t Tammy@gmail.com -u This is the subject -m This is the body -s smtp.gmail.com:587 -xu NBAthotboi@gmail.com -xp Iwishihadfriends02
  12.  
  13.  
  14. SPOOFING VIA SMTP2GO:
  15. Spoofing via smtp2go is very similar to spoofing via gmail. First of all you need to make a free account on smtp2go.com. After signing in go navigate to the panel on the left that has settings on the bottom. Go to Settings then Users. Then click on the email you used to sign up on the website that should be under Username. Then click on show beside the password section to show your smtp server password and copy it or change it to what you would like. Then type the following command into your terminal:
  16.  
  17. sendemail -f $sourceemail -t $recipient -u $subject -m $body -s mail.smtp2go.com:2525 -xu $smtp2gousername -xp $smtpserverpassword
  18.  
  19. You would replace $soureemail with the email you want send from, replace $recipient with the email of who you want to recieve the spoof, replace $subject with the subject of your email, replace $body with the body of your email, replace $smtp2gousername with the email you used to make an account, and replace $smtpserverpassword with the server password I referred to earlier (not account password used to sign in).
  20.  
  21. Let's say you wanted to spoof an email from Jimmy@gmail.com to Tammy@gmail.com and your smtp2go.com account username is NBAthotboi@gmail.com and your smtp server password is Damniwantodie04 your command would be as follows:
  22.  
  23. sendemail -f Jimmy@gmail.com -t Tammy@gmail.com -u This is the subject -m This is the body -s mail.smtp2go.com:2525 -xu NBAthotboi@gmail.com -xp Damniwantodie04
  24.  
  25. I know this isn't this best tutorial but I hope you enjoyed.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement