POP 110-995
Banner Grabbing with Netcat
nc -vn 10.11.1.72 110Commands for Interaction:
USER user
EXPN user2. Using Nmap for POP Enumeration
Default Scripts:
nmap --script "pop3-capabilities or pop3-ntlm-info" -sV -p 110 10.10.10.10
nmap --script "pop3-*" 10.11.1.72Locate POP3 Scripts:
ls -lh /usr/share/nmap/scripts/pop3. Banner Grabbing with Telnet
telnet 10.10.10.10 110Example Commands for Authentication:
USER redcliff@10.11.1.111
PASS password123or:
USER redcliff
PASS password1234. Basic Email Interaction Commands
List All Emails:
listRetrieve Email by Number (e.g., email 5):
retr 5Last updated