Let's say there's a mail server accessible on the internet, example: mail3.domain.com
Is it possible to query that address and find out what mail software they are using? Like lotus notes, Exchange, or a linux mailserver software, etc..
Let's say there's a mail server accessible on the internet, example: mail3.domain.com
Is it possible to query that address and find out what mail software they are using? Like lotus notes, Exchange, or a linux mailserver software, etc..
You can run a command like:
telnet mail.domain.com 25
In the response you'll see something like:
Trying 122.33.44.555...
Connected to mail.domain.com
Escape character is '^]'.
220-mail.domain.com ESMTP Exim 4.87 #1 Fri, 31 Mar 2017 20:53:59 +0000
220-We do not authorize the use of this system to transport unsolicited,
220 and/or bulk e-mail.
From that you can learn something about the software being run on the server.