mirror of
https://github.com/HackTricks-wiki/hacktricks.git
synced 2025-10-10 18:36:50 +00:00
170 lines
5.7 KiB
Markdown
170 lines
5.7 KiB
Markdown
# 143,993 - Pentesting IMAP
|
||
|
||
{{#include ../banners/hacktricks-training.md}}
|
||
|
||
## Internet Message Access Protocol
|
||
|
||
**互联网邮件访问协议 (IMAP)** 的设计目的是使用户能够**从任何位置访问他们的电子邮件消息**,主要通过互联网连接。实际上,电子邮件**保留在服务器上**,而不是下载并存储在个人设备上。这意味着当访问或阅读电子邮件时,是**直接从服务器**进行的。这种能力允许从**多个设备**方便地检查电子邮件,确保无论使用何种设备都不会错过任何消息。
|
||
|
||
默认情况下,IMAP 协议在两个端口上工作:
|
||
|
||
- **端口 143** - 这是默认的 IMAP 非加密端口
|
||
- **端口 993** - 如果您想安全地使用 IMAP 连接,则需要使用此端口
|
||
```
|
||
PORT STATE SERVICE REASON
|
||
143/tcp open imap syn-ack
|
||
```
|
||
## 横幅抓取
|
||
```bash
|
||
nc -nv <IP> 143
|
||
openssl s_client -connect <IP>:993 -quiet
|
||
```
|
||
### NTLM Auth - 信息泄露
|
||
|
||
如果服务器支持 NTLM 认证(Windows),您可以获取敏感信息(版本):
|
||
```
|
||
root@kali: telnet example.com 143
|
||
* OK The Microsoft Exchange IMAP4 service is ready.
|
||
>> a1 AUTHENTICATE NTLM
|
||
+
|
||
>> TlRMTVNTUAABAAAAB4IIAAAAAAAAAAAAAAAAAAAAAAA=
|
||
+ TlRMTVNTUAACAAAACgAKADgAAAAFgooCBqqVKFrKPCMAAAAAAAAAAEgASABCAAAABgOAJQAAAA9JAEkAUwAwADEAAgAKAEkASQBTADAAMQABAAoASQBJAFMAMAAxAAQACgBJAEkAUwAwADEAAwAKAEkASQBTADAAMQAHAAgAHwMI0VPy1QEAAAAA
|
||
```
|
||
或**自动化**此操作,使用**nmap**插件`imap-ntlm-info.nse`
|
||
|
||
### [IMAP暴力破解](../generic-hacking/brute-force.md#imap)
|
||
|
||
## 语法
|
||
|
||
IMAP命令示例来自[这里](https://donsutherland.org/crib/imap):
|
||
```
|
||
Login
|
||
A1 LOGIN username password
|
||
Values can be quoted to enclose spaces and special characters. A " must then be escape with a \
|
||
A1 LOGIN "username" "password"
|
||
|
||
List Folders/Mailboxes
|
||
A1 LIST "" *
|
||
A1 LIST INBOX *
|
||
A1 LIST "Archive" *
|
||
|
||
Create new Folder/Mailbox
|
||
A1 CREATE INBOX.Archive.2012
|
||
A1 CREATE "To Read"
|
||
|
||
Delete Folder/Mailbox
|
||
A1 DELETE INBOX.Archive.2012
|
||
A1 DELETE "To Read"
|
||
|
||
Rename Folder/Mailbox
|
||
A1 RENAME "INBOX.One" "INBOX.Two"
|
||
|
||
List Subscribed Mailboxes
|
||
A1 LSUB "" *
|
||
|
||
Status of Mailbox (There are more flags than the ones listed)
|
||
A1 STATUS INBOX (MESSAGES UNSEEN RECENT)
|
||
|
||
Select a mailbox
|
||
A1 SELECT INBOX
|
||
|
||
List messages
|
||
A1 FETCH 1:* (FLAGS)
|
||
A1 UID FETCH 1:* (FLAGS)
|
||
|
||
Retrieve Message Content
|
||
A1 FETCH 2 body[text]
|
||
A1 FETCH 2 all
|
||
A1 UID FETCH 102 (UID RFC822.SIZE BODY.PEEK[])
|
||
|
||
Close Mailbox
|
||
A1 CLOSE
|
||
|
||
Logout
|
||
A1 LOGOUT
|
||
```
|
||
### 演变
|
||
```
|
||
apt install evolution
|
||
```
|
||
.png>)
|
||
|
||
### CURL
|
||
|
||
基本导航可以使用 [CURL](https://ec.haxx.se/usingcurl/usingcurl-reademail#imap) 实现,但文档细节较少,因此建议查看 [source](https://github.com/curl/curl/blob/master/lib/imap.c) 以获取准确的细节。
|
||
|
||
1. 列出邮箱 (imap 命令 `LIST "" "*"`)
|
||
```bash
|
||
curl -k 'imaps://1.2.3.4/' --user user:pass
|
||
```
|
||
2. 列出邮箱中的消息(imap 命令 `SELECT INBOX` 然后 `SEARCH ALL`)
|
||
```bash
|
||
curl -k 'imaps://1.2.3.4/INBOX?ALL' --user user:pass
|
||
```
|
||
此搜索的结果是消息索引的列表。
|
||
|
||
还可以提供更复杂的搜索条件。例如,搜索邮件正文中包含密码的草稿:
|
||
```bash
|
||
curl -k 'imaps://1.2.3.4/Drafts?TEXT password' --user user:pass
|
||
```
|
||
一个关于可能的搜索词的不错概述位于 [here](https://www.atmail.com/blog/imap-commands/)。
|
||
|
||
3. 下载一条消息(imap 命令 `SELECT Drafts` 然后 `FETCH 1 BODY[]`)
|
||
```bash
|
||
curl -k 'imaps://1.2.3.4/Drafts;MAILINDEX=1' --user user:pass
|
||
```
|
||
邮件索引将与搜索操作返回的索引相同。
|
||
|
||
也可以使用 `UID`(唯一标识符)来访问消息,但这不太方便,因为搜索命令需要手动格式化。例如。
|
||
```bash
|
||
curl -k 'imaps://1.2.3.4/INBOX' -X 'UID SEARCH ALL' --user user:pass
|
||
curl -k 'imaps://1.2.3.4/INBOX;UID=1' --user user:pass
|
||
```
|
||
也可以仅下载消息的部分内容,例如前5条消息的主题和发件人(需要使用 `-v` 才能查看主题和发件人):
|
||
```bash
|
||
$ curl -k 'imaps://1.2.3.4/INBOX' -X 'FETCH 1:5 BODY[HEADER.FIELDS (SUBJECT FROM)]' --user user:pass -v 2>&1 | grep '^<'
|
||
```
|
||
虽然,写一个小的 for 循环可能更简洁:
|
||
```bash
|
||
for m in {1..5}; do
|
||
echo $m
|
||
curl "imap://1.2.3.4/INBOX;MAILINDEX=$m;SECTION=HEADER.FIELDS%20(SUBJECT%20FROM)" --user user:pass
|
||
done
|
||
```
|
||
## Shodan
|
||
|
||
- `port:143 CAPABILITY`
|
||
- `port:993 CAPABILITY`
|
||
|
||
## HackTricks 自动命令
|
||
```
|
||
Protocol_Name: IMAP #Protocol Abbreviation if there is one.
|
||
Port_Number: 143,993 #Comma separated if there is more than one.
|
||
Protocol_Description: Internet Message Access Protocol #Protocol Abbreviation Spelled out
|
||
|
||
Entry_1:
|
||
Name: Notes
|
||
Description: Notes for WHOIS
|
||
Note: |
|
||
The Internet Message Access Protocol (IMAP) is designed for the purpose of enabling users to access their email messages from any location, primarily through an Internet connection. In essence, emails are retained on a server rather than being downloaded and stored on an individual's personal device. This means that when an email is accessed or read, it is done directly from the server. This capability allows for the convenience of checking emails from multiple devices, ensuring that no messages are missed regardless of the device used.
|
||
|
||
https://book.hacktricks.wiki/en/network-services-pentesting/pentesting-imap.html
|
||
|
||
Entry_2:
|
||
Name: Banner Grab
|
||
Description: Banner Grab 143
|
||
Command: nc -nv {IP} 143
|
||
|
||
Entry_3:
|
||
Name: Secure Banner Grab
|
||
Description: Banner Grab 993
|
||
Command: openssl s_client -connect {IP}:993 -quiet
|
||
|
||
Entry_4:
|
||
Name: consolesless mfs enumeration
|
||
Description: IMAP enumeration without the need to run msfconsole
|
||
Note: sourced from https://github.com/carlospolop/legion
|
||
Command: msfconsole -q -x 'use auxiliary/scanner/imap/imap_version; set RHOSTS {IP}; set RPORT 143; run; exit'
|
||
```
|
||
{{#include ../banners/hacktricks-training.md}}
|