đ¨IMAP
(TCP 143, 993)
âšī¸ Introduction
Like POP, IMAP is used for email retrieval (client side protocol).
port TCP 143 for no encryption
port TCP 993 for SSL/TLS
âī¸ Checklist
Enumeration
Login Brute Force
Capture IMAP Authentication
IMAP - NTLM Auth
If the server supports NTLM auth (Windows) you can obtain sensitive info (versions):
Manual
Automated
Navigation with CURL
Listing mailboxes (imap command LIST "" "*"
)
Listing messages in a mailbox (imap command SELECT INBOX
and then SEARCH ALL
)
The result of this search is a list of message indicies.
Its also possible to provide more complex search terms. e.g. searching for drafts with password in mail body:
Downloading a message (imap command SELECT Drafts
and then FETCH 1 BODY[]
)
Last updated