hacktricks/windows-hardening/active-directory-methodology/bloodhound.md

171 lines
9.6 KiB
Markdown
Raw Normal View History

2023-08-03 19:12:22 +00:00
# BloodHound和其他AD枚举工具
2022-04-28 16:01:33 +00:00
<details>
2023-08-03 19:12:22 +00:00
<summary><a href="https://cloud.hacktricks.xyz/pentesting-cloud/pentesting-cloud-methodology"><strong>☁️ HackTricks云 ☁️</strong></a> -<a href="https://twitter.com/hacktricks_live"><strong>🐦 Twitter 🐦</strong></a> - <a href="https://www.twitch.tv/hacktricks_live/schedule"><strong>🎙️ Twitch 🎙️</strong></a> - <a href="https://www.youtube.com/@hacktricks_LIVE"><strong>🎥 Youtube 🎥</strong></a></summary>
2022-04-28 16:01:33 +00:00
2023-08-03 19:12:22 +00:00
* 你在一家**网络安全公司**工作吗你想在HackTricks中看到你的**公司广告**吗?或者你想获得**PEASS的最新版本或下载HackTricks的PDF**吗?请查看[**订阅计划**](https://github.com/sponsors/carlospolop)
* 发现我们的独家[**NFTs**](https://opensea.io/collection/the-peass-family)收藏品[**The PEASS Family**](https://opensea.io/collection/the-peass-family)
* 获取[**官方PEASS和HackTricks周边产品**](https://peass.creator-spring.com)
* **加入**[**💬**](https://emojipedia.org/speech-balloon/) [**Discord群组**](https://discord.gg/hRep4RUj7f)或[**电报群组**](https://t.me/peass)或**关注**我在**Twitter**上的[**🐦**](https://github.com/carlospolop/hacktricks/tree/7af18b62b3bdc423e11444677a6a73d4043511e9/\[https:/emojipedia.org/bird/README.md)[**@carlospolopm**](https://twitter.com/hacktricks_live)**。**
* **通过向[hacktricks repo](https://github.com/carlospolop/hacktricks)和[hacktricks-cloud repo](https://github.com/carlospolop/hacktricks-cloud)提交PR来分享你的黑客技巧**。
2022-04-28 16:01:33 +00:00
2022-10-06 23:16:43 +00:00
</details>
2022-04-28 16:01:33 +00:00
2022-10-06 23:16:43 +00:00
## AD Explorer
2022-04-28 16:01:33 +00:00
2023-08-03 19:12:22 +00:00
[AD Explorer](https://docs.microsoft.com/en-us/sysinternals/downloads/adexplorer)来自Sysinternal Suite
2022-04-28 16:01:33 +00:00
2023-08-03 19:12:22 +00:00
> 一个高级的Active DirectoryAD查看器和编辑器。您可以使用AD Explorer轻松浏览AD数据库定义喜欢的位置查看对象属性和属性而无需打开对话框编辑权限查看对象的模式并执行可以保存和重新执行的复杂搜索。
2022-04-28 16:01:33 +00:00
2023-08-03 19:12:22 +00:00
### 快照
2022-10-06 23:16:43 +00:00
2023-08-03 19:12:22 +00:00
AD Explorer可以创建AD的快照以便您可以离线检查它。\
它可以用于离线发现漏洞或者比较AD数据库在不同时间点的不同状态。
2022-10-06 23:16:43 +00:00
2023-08-03 19:12:22 +00:00
您需要提供用户名、密码和连接方向需要任何AD用户
2022-10-06 23:16:43 +00:00
2023-08-03 19:12:22 +00:00
要对AD进行快照请转到`File` --> `Create Snapshot`并输入快照的名称。
2022-10-06 23:16:43 +00:00
## ADRecon
2023-08-03 19:12:22 +00:00
****[**ADRecon**](https://github.com/adrecon/ADRecon)是一个从AD环境中提取和组合各种工件的工具。信息可以以**特殊格式**的Microsoft Excel **报告**呈现其中包括摘要视图和指标以便于分析并提供目标AD环境的整体情况。
2022-10-06 23:16:43 +00:00
```bash
# Run it
.\ADRecon.ps1
```
## BloodHound
2023-08-03 19:12:22 +00:00
> BloodHound是一个基于[Linkurious](http://linkurio.us)构建的单页Javascript Web应用程序使用[Electron](http://electron.atom.io)编译由PowerShell摄取器提供数据给[Neo4j](https://neo4j.com)数据库。
>
2023-08-03 19:12:22 +00:00
> BloodHound使用图论来揭示Active Directory环境中隐藏且常常无意的关系。攻击者可以使用BloodHound轻松识别高度复杂的攻击路径否则很难快速识别。防御者可以使用BloodHound识别和消除这些攻击路径。蓝队和红队都可以使用BloodHound轻松获得对Active Directory环境中特权关系的更深入理解。
>
2023-08-03 19:12:22 +00:00
> BloodHound由[@_wald0](https://www.twitter.com/_wald0)[@CptJesus](https://twitter.com/CptJesus)和[@harmj0y](https://twitter.com/harmj0y)开发。
>
2023-08-03 19:12:22 +00:00
> 来自[https://github.com/BloodHoundAD/BloodHound](https://github.com/BloodHoundAD/BloodHound)
2023-08-03 19:12:22 +00:00
所以,[BloodHound](https://github.com/BloodHoundAD/BloodHound)是一个令人惊叹的工具,可以自动枚举域,保存所有信息,找到可能的特权升级路径,并使用图形显示所有信息。
2023-08-03 19:12:22 +00:00
BloodHound由两个主要部分组成**摄取器**和**可视化应用程序**。
2022-02-24 21:08:46 +00:00
2023-08-03 19:12:22 +00:00
**摄取器**用于**枚举域并提取所有信息**,以一种可被可视化应用程序理解的格式。
2022-02-24 21:08:46 +00:00
2023-08-03 19:12:22 +00:00
**可视化应用程序使用neo4j**来展示所有信息的关联性,并展示在域中升级特权的不同方式。
2023-08-03 19:12:22 +00:00
### 安装
2023-08-03 19:12:22 +00:00
1. BloodHound
2023-08-03 19:12:22 +00:00
要安装可视化应用程序,您需要安装**neo4j**和**bloodhound应用程序**。\
最简单的方法就是执行以下操作:
```
apt-get install bloodhound
```
2023-08-03 19:12:22 +00:00
你可以从[这里](https://neo4j.com/download-center/#community)下载neo4j的社区版本。
2022-07-28 09:46:19 +00:00
1. Ingestors
2022-02-24 21:08:46 +00:00
2023-08-03 19:12:22 +00:00
你可以从以下链接下载Ingestors
2022-02-24 21:08:46 +00:00
2022-07-28 09:46:19 +00:00
* https://github.com/BloodHoundAD/SharpHound/releases
* https://github.com/BloodHoundAD/BloodHound/releases
* https://github.com/fox-it/BloodHound.py
2023-08-03 19:12:22 +00:00
1. 从图中学习路径
2022-02-24 21:08:46 +00:00
2023-08-03 19:12:22 +00:00
Bloodhound提供了各种查询来突出显示敏感的入侵路径。你可以添加自定义查询来增强搜索和对象之间的关联等功能
2022-02-24 21:08:46 +00:00
2023-08-03 19:12:22 +00:00
这个仓库有一个很好的查询集合https://github.com/CompassSecurity/BloodHoundQueries
2022-07-28 09:46:19 +00:00
2023-08-03 19:12:22 +00:00
安装过程:
2022-07-28 09:46:19 +00:00
```
$ curl -o "~/.config/bloodhound/customqueries.json" "https://raw.githubusercontent.com/CompassSecurity/BloodHoundQueries/master/BloodHound_Custom_Queries/customqueries.json"
2022-02-24 21:08:46 +00:00
```
2023-08-03 19:12:22 +00:00
### 可视化应用程序执行
2023-08-03 19:12:22 +00:00
在下载/安装所需的应用程序之后,让我们开始它们。\
首先,您需要**启动neo4j数据库**
```bash
./bin/neo4j start
#or
service neo4j start
```
2023-08-03 19:12:22 +00:00
第一次启动此数据库时,您需要访问[http://localhost:7474/browser/](http://localhost:7474/browser/)。您将被要求使用默认凭据neo4j:neo4j并且您将被**要求更改密码**,请更改密码并确保记住它。
2023-08-03 19:12:22 +00:00
现在,启动**bloodhound应用程序**
```bash
./BloodHound-linux-x64
#or
bloodhound
```
2023-08-03 19:12:22 +00:00
您将被提示输入数据库凭据:**neo4j:\<您的新密码>**
2023-08-03 19:12:22 +00:00
然后BloodHound将准备好接收数据。
2022-07-28 09:46:19 +00:00
![](<../../.gitbook/assets/image (171) (1).png>)
2022-09-05 08:45:47 +00:00
### SharpHound
2020-11-28 16:06:00 +00:00
2023-08-03 19:12:22 +00:00
他们有几个选项但如果您想从加入域的计算机上运行SharpHound并使用当前用户提取所有信息可以执行以下操作
```
2023-02-26 21:44:57 +00:00
./SharpHound.exe --CollectionMethods All
Invoke-BloodHound -CollectionMethod All
```
2023-08-03 19:12:22 +00:00
> 您可以在此处阅读有关**CollectionMethod**和循环会话的更多信息 [here](https://bloodhound.readthedocs.io/en/latest/data-collection/sharphound-all-flags.html)
2023-08-03 19:12:22 +00:00
如果您希望使用不同的凭据执行SharpHound可以创建一个CMD netonly会话并从那里运行SharpHound
```
runas /netonly /user:domain\user "powershell.exe -exec bypass"
```
2023-08-03 19:12:22 +00:00
[**了解更多关于Bloodhound的信息请访问ired.team。**](https://ired.team/offensive-security-experiments/active-directory-kerberos-abuse/abusing-active-directory-with-bloodhound-on-kali-linux)
2022-09-05 08:45:47 +00:00
**Windows Silent**
### **Python bloodhound**
2020-11-28 16:06:00 +00:00
2023-08-03 19:12:22 +00:00
如果您拥有域凭据,您可以在任何平台上运行**python bloodhound摄取器**因此您不需要依赖于Windows。\
从[https://github.com/fox-it/BloodHound.py](https://github.com/fox-it/BloodHound.py)下载它,或者执行`pip3 install bloodhound`。
2020-11-28 16:06:00 +00:00
```bash
bloodhound-python -u support -p '#00^BlackKnight' -ns 10.10.10.192 -d blackfield.local -c all
```
2023-08-03 19:12:22 +00:00
如果你正在通过proxychains运行它请添加`--dns-tcp`以使DNS解析通过代理工作。
2022-05-15 15:22:36 +00:00
```bash
proxychains bloodhound-python -u support -p '#00^BlackKnight' -ns 10.10.10.192 -d blackfield.local -c all --dns-tcp
```
2022-09-05 08:45:47 +00:00
### Python SilentHound
2023-08-03 19:12:22 +00:00
这个脚本将通过LDAP**静默地枚举Active Directory域**,解析用户、管理员、组等。
2022-09-05 08:45:47 +00:00
2023-08-03 19:12:22 +00:00
在[**SilentHound github**](https://github.com/layer8secure/SilentHound)上查看。
2022-09-05 08:45:47 +00:00
2022-10-17 08:47:51 +00:00
### RustHound
2023-08-03 19:12:22 +00:00
Rust中的BloodHound[**在这里查看**](https://github.com/OPENCYBER-FR/RustHound)。
2022-10-17 08:47:51 +00:00
2022-10-06 23:16:43 +00:00
## Group3r
2022-04-28 16:01:33 +00:00
2023-08-03 19:12:22 +00:00
[**Group3r**](https://github.com/Group3r/Group3r) 是一个用于查找Active Directory关联的**组策略**中的**漏洞**的工具。\
您需要使用**任何域用户**从域内的主机上**运行group3r**。
2022-10-06 23:16:43 +00:00
```bash
2023-08-03 19:12:22 +00:00
group3r.exe -f <filepath-name.log>
2022-10-06 23:16:43 +00:00
# -s sends results to stdin
# -f send results to file
```
## PingCastle
2022-04-28 16:01:33 +00:00
2023-08-03 19:12:22 +00:00
****[**PingCastle**](https://www.pingcastle.com/documentation/) **评估AD环境的安全状况**,并提供了一个带有图表的漂亮**报告**。
2022-04-28 16:01:33 +00:00
2023-08-03 19:12:22 +00:00
要运行它,可以执行二进制文件`PingCastle.exe`,它将启动一个**交互式会话**,呈现一个选项菜单。默认选项是使用**`healthcheck`**,它将建立一个**域**的基线**概述**,并查找**配置错误**和**漏洞**。&#x20;
2022-10-06 23:16:43 +00:00
<details>
2023-04-25 18:35:28 +00:00
<summary><a href="https://cloud.hacktricks.xyz/pentesting-cloud/pentesting-cloud-methodology"><strong>☁️ HackTricks Cloud ☁️</strong></a> -<a href="https://twitter.com/hacktricks_live"><strong>🐦 Twitter 🐦</strong></a> - <a href="https://www.twitch.tv/hacktricks_live/schedule"><strong>🎙️ Twitch 🎙️</strong></a> - <a href="https://www.youtube.com/@hacktricks_LIVE"><strong>🎥 Youtube 🎥</strong></a></summary>
2022-04-28 16:01:33 +00:00
2023-08-03 19:12:22 +00:00
* 你在一家**网络安全公司**工作吗想要在HackTricks中看到你的**公司广告**吗?或者你想要访问**PEASS的最新版本或下载PDF格式的HackTricks**吗?请查看[**订阅计划**](https://github.com/sponsors/carlospolop)
* 发现我们的独家[NFTs](https://opensea.io/collection/the-peass-family)收藏品[**The PEASS Family**](https://opensea.io/collection/the-peass-family)
* 获取[**官方PEASS和HackTricks的衣物**](https://peass.creator-spring.com)
* **加入**[**💬**](https://emojipedia.org/speech-balloon/) [**Discord群组**](https://discord.gg/hRep4RUj7f)或[**电报群组**](https://t.me/peass),或在**Twitter**上**关注**我[**🐦**](https://github.com/carlospolop/hacktricks/tree/7af18b62b3bdc423e11444677a6a73d4043511e9/\[https:/emojipedia.org/bird/README.md)[**@carlospolopm**](https://twitter.com/hacktricks_live)**。**
* **通过向[hacktricks repo](https://github.com/carlospolop/hacktricks)和[hacktricks-cloud repo](https://github.com/carlospolop/hacktricks-cloud)提交PR来分享你的黑客技巧**。
2022-04-28 16:01:33 +00:00
</details>