TCP 110, 995: POP3(S)
In computing, the Post Office Protocol is an application-layer Internet standard protocol used by e-mail clients to retrieve e-mail from a mail server. POP version 3 is the version in common use.
-- Wikipedia
Related
General
Connect
nc -nv <ip> 110or
telnet <ip> 110USER user@<ip>
PASS passwordList all emails
listRetrieve email number 5, for example
retr 5Guess users
nmap -sV --script=pop3-brute <ip>nmap -p 110 --script pop3-brute --script-args userdb=<usernames-file>,passdb=<passwords-file> <ip>Nmap scripts
pop3-brute.nse
pop3-capabilities.nse
pop3-ntlm-info.nse
Last updated