Register    Login    Forum    FAQ

Board index » Hack The Planet » Tutorials, Links, Hack Vids, Papers




Post new topic Reply to topic  [ 2 posts ] 
Author Message
 Post subject: How to send a anonymous mail!!
 Post Posted: 26 Nov 2009, 22:13 
Offline
5BB Member
5BB Member
User avatar

Joined: 11 Nov 2008, 12:30
Posts: 184
Location: NYC
In this document, we:
shall use Telnet to connect to the SMTP server.
shall give commands to the server, then type our e-mail, and finally tell the server, 'Okay, the e-mail is done. Send it.
can then send more mails, or disconnect from the server.
The steps are quite similar to what you do when you send an e-mail from - for instance - Outlook Express. We are going to use the SMTP server of monitortools.com with the ID 'webmaster'.


--------------------------------------------------------------------------------

Step 1

Connect to the Internet in case you are a dial-up user. Open an MS-DOS prompt, and enter this command:
C:\WINDOWS>telnet mail.monitortools.com 25
This will open a Telnet window, and within a short time, you will be connected to the SMTP server, and the server says:
220 PROTAGONISTNT Mailmax version 4. 8. 3. 0 ESMTP Mail Server Ready
This varies, but you should definitely see the '220' part. It is an indication that the server is ready to service your request.


--------------------------------------------------------------------------------

Step 2

Now the server expects you to identify yourself. If you are a dial-up user, you can enter the name of your computer (the one Windows asks you when you intall Windows) or anything else you want. If you have a domain-name, then you should enter the domain-name here. My computer's name is dell01, so I say:
helo dell01
Note that it is 'helo' and not 'hello'. The commands are not case-sensitive, so you can also say HeLo or HELO or hELo. The server replies:
250 HELO 217.120.215.201, How can I help you?
This is like a shake-hand. You tell the server your name, and it says its name! Computers are quite friendly, you see!


--------------------------------------------------------------------------------

Step 3

Next give the server your e-mail address. Note that most SMTP servers require that your e-mail address belong to the same domain as the server. For example, if you send mail from Yahoo! SMTP server, you should have a Yahoo! address. You cannot use it if you give it a Hotmail address. Let me give the SMTP server some e-mail address:
mail from: webmaster@monitortools.com
'mail from:' is a SMTP command. Note that there is a space between 'mail' and 'from', followed by a colon (. The server says:
250 Ok

--------------------------------------------------------------------------------

Step 4

Tell the server who you want to send the e-mail to. Le
t me send a mail to info@activexperts:
rcpt to: info@activexperts.com

There are no restrictions here. You can enter any e-mail address. If there is some problem with the recipient-address, your mail will bounce, but for now, the server doesn't complain. It will say:
250 Ok
t

--------------------------------------------------------------------------------

Step 5

You have told the server your e-mail address, and the recipient's e-mail address, so now you can go ahead and type the e-mail. You have to do that with the data command:
data
The server asks you to go ahead with your e-mail:
354 End data with .
Don't worry with the thing. It'll be explained later.


--------------------------------------------------------------------------------

Step 6

Now type in your e-mail, like this:
This is a test e-mail.
Remember to type it all right. Backspace key doesn't work in Windows
Telnet, though it does in Linux. If you make a mistake, try pressing
CTRL-h. If it works, well and good.
.
When you finish your e-mail, press [ENTER], then a '.', and again an [ENTER]. This tells the server that you have finished the e-mail, and it can send it. It will say:
250 Ok: queued as 6AB5150038
Your mail was sent!


--------------------------------------------------------------------------------

Step 7

Now you can either send another mail, or disconnect from the server. If you want to send another mail, you should repeat the 'rcpt to:' and 'data' commands. There is no need for 'helo' and 'mail from:', because the server already knows who you are. If you want to disconnect, just say 'quit':
quit
The server will reply:
221 Bye
and you will lose connection with the server. Hurray, you sent a mail direct from the server! Try this in front of your friends who may be used to only GUIs and icons. They will begin to call you up for technical support!


Top 
 Profile  
 
 Post subject: Re: How to send a anonymous mail!!
 Post Posted: 26 Nov 2009, 22:18 
Offline
5BB Member
5BB Member
User avatar

Joined: 11 Nov 2008, 12:30
Posts: 184
Location: NYC
Well another article regarding the same:

[quote:0dfc07bdc2]You can send a message without any mailer at all. Run telnet with two parameters - the name or ip of SMTP server you want to be connected to and 25 as the port number. Then print following commands pressing ENTER after each of them:

HELO anything
MAIL FROM: <from_name@from_domain>
RCPT TO: <to_name@to_domain>
DATA

Now you can print the message data. Start with headers (like From, To and Subject), then skip one line and put all the text there. To let the server know you're finished the letter, just press ENTER once, then put a single dot in the start of new line and press ENTER again. Now print QUIT followed by ENTER and disconnect. Note that your IP will be put into "Received:" headers. But these headers can be overwritten by the very long HELO string if the server is sendmail 8.9.0, Qmail 1.02 or MS Exchange Internet Mail Service 5.5.

The same telnet can help you to get rid of very big messages if your mailer fails to get them from the server. Run "telnet pop3_server 110" and enter following commands:

USER your_login
PASS your_password
LIST

You'll see the list of messages in your mailbox. Enter DELE message_number and then QUIT.


Top 
 Profile  
 
Display posts from previous:  Sort by  
 
Post new topic Reply to topic  [ 2 posts ] 

Board index » Hack The Planet » Tutorials, Links, Hack Vids, Papers


Who is online

Users browsing this forum: No registered users and 1 guest

 
 

 
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Jump to:  
cron