Cheatsheet
  • Documentation
  • Nmap
  • Ffuf
  • FTP
  • SMB
  • RPC
  • NFS
  • DNS
  • SMTP
  • IMAP / POP3
  • SNMP
  • SQL
  • Rsync
  • Certipy
  • CrackMapExec
  • Transferring Files
  • Windows Remote Management
  • Windows AV
  • Wordpress
  • Infrastructure Enumeration
  • Privilege Escalation
  • Docker Breakout
  • Shells
  • SSTI
  • XSS
  • Pivot
    • SSH Tunneling
    • Chisel
    • Ligolo-ng
    • Meterpreter
  • LDAP
  • Spray
  • Antivirus / EDR
  • Impacket
  • Bloodhound
  • Powershell
  • Kerberosting
  • Password Attacks
  • Command Injections
  • Sliver C2
  • Windows credentials
  • Windows persistance
  • VSCode Debug
Powered by GitBook
On this page
  • Enumeration
  • References

IMAP / POP3

Enumeration

curl -k 'imaps://10.10.10.10' --user qu35t:qu35t
openssl s_client -connect 10.10.10.10:pop3s

openssl s_client -connect 10.10.10.10:imaps

Displays email UIDs.

curl -nk 'imaps://10.10.10.10/DEV.QU35T.PW' -X 'UID SEARCH ALL' --user qu35t:qu35t

Read an email.

curl -nk 'imaps://10.10.10.10/DEV.QU35T.PW;UID=1' --user qu35t:qu35t

References

  • imapcli

PreviousSMTPNextSNMP

Last updated 2 years ago