> 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/active-directory/enumeration/bloodhound-installation.md).

# BloodHound 安装

{% embed url="<https://github.com/SpecterOps/BloodHound-Legacy>" %}

### 目标

**BloodHound** 是一款基于图的 Active Directory 分析工具。

它可以可视化：

* 用户、组和计算机之间的关系；
* 权限路径；
* 会话；
* 本地管理权限；
* 通往高价值账户的路径；
* 不良的 Active Directory 配置。

它是快速理解 AD 域中安全关系的最佳工具之一。

### 使用 Docker 安装 Neo4j

BloodHound 使用 Neo4j 作为其图数据库。

Docker 命令：

<pre class="language-bash" data-overflow="wrap"><code class="lang-bash"><strong>sudo docker run /
</strong>    --name neo4j-bloodhound /
    -p 7474:7474 -p 7687:7687 /
    -d /
    -v ~/neo4j/data:/data /
    -v ~/neo4j/logs:/logs /
    --env NEO4J_AUTH=neo4j/jordanmacia/
    --env NEO4J_dbms_connector_bolt_tls_level=DISABLED /
    neo4j:4.4
</code></pre>

重要提示：

| 端口     | 实用工具                   |
| ------ | ---------------------- |
| `7474` | Neo4j Web 界面           |
| `7687` | BloodHound 使用的 Bolt 连接 |

示例中的 Neo4j 凭据：

```bash
neo4j / jordanmacia
```

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

### 启动 BloodHound

{% code overflow="wrap" %}

```bash
bloodhound --no-sandbox &
```

{% endcode %}

<figure><img src="/files/dd6253de88bb2cdc74f977666e65946c4bed151d" 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/active-directory/enumeration/bloodhound-installation.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.
