How To Send Fake E-Mails Fully Anonymous Through Terminal

In this method we will use telnet service to send emails.
*This tutorial is ony for educational purposes.

Sending email with this tutorial is completely different from sending it through normal gmail or yahoo. Normally gmail and other mail services use encryptions to send mails whereas in telnet mails send are unencrypted.

1. Open the terminal or command prompt. and run the telnet command to connect to the mail server.telnet mail.domain.com 25  or  telnet 192.168.x.x 25here the service is telnet and is trying to connect to mail server of the domain on port 25.
if you do not know the mail server adderss you can search it via nslookup and setting type=MX

 2. After get reply message from the mail server, we can start define the email sender and email recipient.MAIL FROM: hacking-tutorial@domain.com

3. The next step is create the recipient.RCPT TO: me@otherdonain.com

4. If email sender and email recipient already OK, we can compose our message. Type DATA and press enter.

5.Then create the subject of our email  by typing SUBJECT: hello

6. To end the message, put the only dot (.) in a single line and press <enter>, it mean that we already finish composing the message and ready to send it.

7. To quit the telnet, just type QUIT.

No comments:

Post a Comment