POP3 - 110

POP3 - 110

NMAP

ls /usr/share/nmap/scripts/ | grep POP3

Brute force

hydra -l <USER> -P <PASSWORDS_LIST> -f <IP> pop3 -V
hydra -S -v -l <USER> -P <PASSWORDS_LIST> -s 995 -f <IP> pop3 -V

Read mail

telnet <IP> 110

USER <USER>
PASS <PASSWORD>
LIST
RETR <MAIL_NUMBER>
QUIT
telnet INSERTIPADDRESS 110

#To login
USER [username]
PASS [password]

#To list messages
LIST

#Retrieve message
RETR [message number]

#quits
QUIT

Last updated

Was this helpful?