POP Pentesting
POP (Post Office Protocol) Pentesting
Enumeration
nmap --script "pop3-capabilities or pop3-ntlm-info" -p 110 <target-ip>Connect
nc <target-ip> 110
# or
telnet <target-ip> 110Commands
# Login
USER <username>
PASS <password>
# Number and total size of all messages
STAT
# List messages and size
LIST
# Retrieve the message of given number
RETR <number>
# Delete the message of given number
DELE <number>
# Reset the mailbox
RSET
# Exit the mail server
QUITLast updated