Cheatsheet
  • Documentation
  • Nmap
  • Ffuf
  • FTP
  • SMB
  • RPC
  • NFS
  • DNS
  • SMTP
  • IMAP / POP3
  • SNMP
  • SQL
  • Rsync
  • Certipy
  • CrackMapExec
  • Transferring Files
  • Windows Remote Management
  • Windows AV
  • Wordpress
  • Infrastructure Enumeration
  • Privilege Escalation
  • Docker Breakout
  • Shells
  • SSTI
  • XSS
  • Pivot
    • SSH Tunneling
    • Chisel
    • Ligolo-ng
    • Meterpreter
  • LDAP
  • Spray
  • Antivirus / EDR
  • Impacket
  • Bloodhound
  • Powershell
  • Kerberosting
  • Password Attacks
  • Command Injections
  • Sliver C2
  • Windows credentials
  • Windows persistance
  • VSCode Debug
Powered by GitBook
On this page

SMTP

Enumeration

cat /etc/postfix/main.cf | grep -v "#" | sed -r "/^\s*$/d"
AUTH PLAIN # AUTH is a service extension used to authenticate the client.
HELO # The client logs in with its computer name and thus starts the session.
MAIL FROM # The client names the email sender.
RCPT TO # The client names the email recipient.
DATA # The client initiates the transmission of the email.
RSET # The client aborts the initiated transmission but keeps the connection between client and server.
VRFY # The client checks if a mailbox is available for message transfer.
EXPN # The client also checks if a mailbox is available for messaging with this command.
NOOP # The client requests a response from the server to prevent disconnection due to time-out.
QUIT # The client terminates the session.
telnet 10.10.10.10 25
VRFY root

smtp-user-enum -m VRFY -U names.txt "10.10.10.10" 25
PreviousDNSNextIMAP / POP3

Last updated 2 years ago