SMTP
Simple Mail Transfer Protocol
Check if sender could be forged with an domain user:
$ telnet mail.example.com 25
HELO example.com
MAIL FROM: <forged@example.com>
RCPT TO: <exists@example.com>
RCPT TO: <exists@gmail.com>Check if sender could be forged with a non-domain user:
$ telnet mail.example.com 25
HELO example.com
MAIL FROM: <forged@gmail.com>
RCPT TO: <exists@example.com>
RCPT TO: <exists@gmail.com>Check if domain users could be enumerated with VRFY and EXPN:
$ telnet mail.example.com 25
HELO example.com
VRFY exists@example.com
EXPN exists@example.comCheck if users could be enumerated with RCPT TO:
$ telnet mail.example.com 25
HELO example.com
MAIL FROM: <...>
RCPT TO: <exists@example.com>
DATA
From: <...>
To: <exists@example.com>
Subject: Job offer
Hello, I would like to offer you a great job!
.
QUITRCPT
smtp-enum
smtp-user-enum
SPF/DKIM/DMARC
Tools
swaks
Last updated