INFORMATICS

The Best

Przełącznik języka

BUY COFFEE

If you like the website and want to support the project!

Postaw mi kawę na buycoffee.to

This Site

CMS

Hardware

Uncategorised

useful sites

Databases

Emulators

Powershell

Storage Array

DNS

FORTINET

Antivirus program

Licznik

2.png8.png9.png2.png6.png1.png4.png
Today873
Yesterday762
This week4708
This month12739
Total2892614

Visitor Info

  • IP: 18.224.149.242
  • Browser: Unknown
  • Browser Version:
  • Operating System: Unknown

Who Is Online

8
Online

Friday, 19 April 2024 20:19

Send mail via telnet / test for open relay

Star InactiveStar InactiveStar InactiveStar InactiveStar Inactive
 

Behind the scenes, the commands sent to mail servers are simple text commands. These commands can be to sent to an email server manually via telnet. This is a quick way to test an email server to determine if it is an open relay.


First, determine the MX for the domain in question:

nslookup
set type=mx
mydom.com

should return something like:Server: ns2.mydom.com
Address: 192.168.1.10
mydom.com preference = 10, mail exchanger = mx.mydom.com
mydom.com nameserver = ns.mydom.com
mx.mydom.com.com internet address = 1.1.1.1
mx2.mydom.com internet address = 1.1.1.2

The last two lines tell you about the mail server (MX = Mail Exchange). In this case, 1.1.1.1 and 1.1.1.2.

So, armed with this knowledge,

telnet 1.1.1.1 25

Server responds with: 220 mx.mydom.com SMTP
HELO

Server responds with: 250 OK
MAIL FROM:This email address is being protected from spambots. You need JavaScript enabled to view it.

Server responds with: 250 Address Ok.
RCPT TO:This email address is being protected from spambots. You need JavaScript enabled to view it.

Server responds with: 250 This email address is being protected from spambots. You need JavaScript enabled to view it. OK
DATA

Server Responds (or may not): 354 Enter Mail
Enter message, then on a new line,
.

exit

The message should now be sent. By modifying the MAIL FROM and RCPT TO lines, you can test for open relay.

Search