hacktricks/network-services-pentesting/pentesting-web/web-api-pentesting.md

239 lines
14 KiB
Markdown
Raw Normal View History

2023-08-03 19:12:22 +00:00
# Web API渗透测试
2022-04-28 16:01:33 +00:00
<details>
<summary><a href="https://cloud.hacktricks.xyz/pentesting-cloud/pentesting-cloud-methodology"><strong>☁️ HackTricks云 ☁️</strong></a> -<a href="https://twitter.com/hacktricks_live"><strong>🐦 推特 🐦</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
* 你在一家**网络安全公司**工作吗想要在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)
2023-08-03 19:12:22 +00:00
* 获取[**官方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)**。**
2023-08-03 19:12:22 +00:00
* **通过向**[**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>
<figure><img src="../../.gitbook/assets/image (3) (1) (1).png" alt=""><figcaption></figcaption></figure>
2022-06-06 22:28:05 +00:00
使用[**Trickest**](https://trickest.com/?utm\_campaign=hacktrics\&utm\_medium=banner\&utm\_source=hacktricks)可以轻松构建和**自动化工作流程**,使用全球**最先进**的社区工具。\
2023-08-03 19:12:22 +00:00
立即获取访问权限:
2022-06-06 22:28:05 +00:00
2023-01-01 16:19:07 +00:00
{% embed url="https://trickest.com/?utm_campaign=hacktrics&utm_medium=banner&utm_source=hacktricks" %}
2022-06-06 22:28:05 +00:00
2023-08-03 19:12:22 +00:00
## 基本信息
2021-06-08 18:47:44 +00:00
2023-08-03 19:12:22 +00:00
主要内容:
2021-06-08 18:47:44 +00:00
2023-08-03 19:12:22 +00:00
* **Web服务SOAP/XML**
* 文档使用**WSDL**格式,通常保存在`?wsdl`路径中,例如`https://api.example.com/api/?wsdl`
* 可以在[http://www.dneonline.com/calculator.asmx](http://www.dneonline.com/calculator.asmx)WSDL文档在[http://www.dneonline.com/calculator.asmx?wsdl](http://www.dneonline.com/calculator.asmx?wsdl))找到此类文档的示例,并且可以在[http://www.dneonline.com/calculator.asmx?op=Add](http://www.dneonline.com/calculator.asmx?op=Add)中查看调用`Add`方法的示例请求
2023-08-03 19:12:22 +00:00
* 要解析这些文件并创建示例请求,可以使用工具**SOAPUI**或**WSDLer** Burp Suite扩展。
* **REST APIJSON**
* 标准文档是WADL文件。在此处找到一个示例[https://www.w3.org/Submission/wadl/](https://www.w3.org/Submission/wadl/)。但是还有其他更适合开发人员的API表示引擎例如[https://swagger.io/tools/swagger-ui/](https://swagger.io/tools/swagger-ui/)(在页面中检查演示)
2023-08-03 19:12:22 +00:00
* 要解析这些文件并创建示例请求,可以使用工具**Postman**
2022-04-05 22:24:52 +00:00
* [**GraphQL**](graphql.md)
2023-08-03 19:12:22 +00:00
## 实验室
2022-12-21 10:38:32 +00:00
2023-08-03 19:12:22 +00:00
* [**VAmPI**](https://github.com/erev0s/VAmPI)**** VAmPI是一个使用Flask创建的易受攻击的API其中包含OWASP十大API漏洞。
2022-12-21 10:38:32 +00:00
2023-08-03 19:12:22 +00:00
## 技巧
2022-05-16 08:29:00 +00:00
### SOAP/XML
这类API可能容易受到[**XXE漏洞**](../../pentesting-web/xxe-xee-xml-external-entity.md)的影响,但通常用户输入中**禁止使用DTD声明**。
您还可以尝试使用CDATA标签插入有效的负载只要XML有效
![](<../../.gitbook/assets/image (534).png>)
2023-08-03 19:12:22 +00:00
### 检查访问权限
2023-08-03 19:12:22 +00:00
通常某些API端点需要比其他端点更高的权限。始终尝试从权限较低未经授权的帐户访问更高权限的端点以查看是否可能。
2022-05-16 08:29:00 +00:00
### CORS
2023-08-03 19:12:22 +00:00
始终检查API的[**CORS**](../../pentesting-web/cors-bypass.md)配置,如果允许使用攻击者域的凭据结束请求,可以通过经过身份验证的受害者进行[**CSRF**](../../pentesting-web/csrf-cross-site-request-forgery.md)造成很大的损害。
2023-08-03 19:12:22 +00:00
### 模式
2023-08-03 19:12:22 +00:00
在API中搜索API模式并尝试使用它来发现更多内容。\
如果您找到了_/api/albums/**\<album\_id>**/photos/**\<photo\_id>**_这样的模式您还可以尝试_/api/**posts**/\<post\_id>/**comment**/_之类的内容。使用一些模糊测试工具来发现这些新的端点。
2023-08-03 19:12:22 +00:00
### 添加参数
类似以下示例可能会让您访问另一个用户的照片相册:\
2021-11-30 16:46:07 +00:00
_/api/MyPictureList → /api/MyPictureList?**user\_id=\<other\_user\_id>**_
2023-08-03 19:12:22 +00:00
### 替换参数
您可以尝试**模糊测试参数**或使用您在不同端点中看到的参数来尝试访问其他信息
例如如果您看到类似这样的内容_/api/albums?**album\_id=\<album id>**_
您可以**替换**`album_id`参数为完全不同的内容从而可能获取其他数据_/api/albums?**account\_id=\<account id>**_
2023-08-03 19:12:22 +00:00
### 参数污染
2023-08-03 19:12:22 +00:00
/api/account?**id=\<你的账户id>** → /api/account?**id=\<你的账户id>\&id=\<管理员的账户id>**
2023-08-03 19:12:22 +00:00
### 通配符参数
2021-03-04 11:50:43 +00:00
2023-08-03 19:12:22 +00:00
尝试使用以下符号作为通配符:**\***, **%**, **\_**, **.**
2021-03-04 11:50:43 +00:00
2022-04-05 22:24:52 +00:00
* /api/users/\*
2021-03-04 11:50:43 +00:00
* /api/users/%
* /api/users/\_
* /api/users/.
2023-08-03 19:12:22 +00:00
### HTTP请求方法更改
你可以尝试使用以下HTTP方法**GET, POST, PUT, DELETE, PATCH, INVENTED**以检查Web服务器是否以意外方式提供信息。
2023-08-03 19:12:22 +00:00
### 请求内容类型
2023-08-03 19:12:22 +00:00
尝试在以下内容类型之间进行切换相应地修改请求体以使Web服务器以意外方式行为
2021-11-30 16:46:07 +00:00
* **x-www-form-urlencoded** --> user=test
2022-05-16 08:29:00 +00:00
* **application/xml** --> \<user>test\</user>
* **application/json** --> {"user": "test"}
2023-08-03 19:12:22 +00:00
### 参数类型
2021-03-04 11:50:43 +00:00
2023-08-03 19:12:22 +00:00
如果**JSON**数据有效,请尝试发送意外的数据类型,例如:
2021-03-04 11:50:43 +00:00
* {"username": "John"}
* {"username": true}
2021-03-05 12:03:56 +00:00
* {"username": null}
2021-03-04 11:50:43 +00:00
* {"username": 1}
* {"username": \[true]}
* {"username": \["John", true]}
2022-05-16 08:29:00 +00:00
* {"username": {"$neq": "lalala"\}}
* 任何你能想象到的其他组合
2021-03-04 11:50:43 +00:00
如果你可以发送**XML**数据,请检查[XXE注入](../../pentesting-web/xxe-xee-xml-external-entity.md)。
2021-03-04 11:50:43 +00:00
如果你发送常规的POST数据请尝试发送数组和字典
2021-03-04 11:50:43 +00:00
* username\[]=John
* username\[$neq]=lalala
2021-03-04 11:50:43 +00:00
2023-08-03 19:12:22 +00:00
### 路由玩法
2023-08-03 19:12:22 +00:00
`/files/..%2f..%2f + 受害者ID + %2f + 受害者文件名`
2023-08-03 19:12:22 +00:00
### 检查可能的版本
旧版本可能仍在使用,并且比最新的端点更容易受到攻击。
* `/api/v1/login`
2022-05-16 08:29:00 +00:00
* `/api/v2/login`\\
2022-04-05 22:24:52 +00:00
* `/api/CharityEventFeb2020/user/pp/<ID>`
* `/api/CharityEventFeb2021/user/pp/<ID>`
2023-08-03 19:12:22 +00:00
### 检查可能的版本(自动化方法)
2022-09-30 10:27:15 +00:00
2023-08-03 19:12:22 +00:00
AutoRepeater Burp扩展添加替换规则
2022-09-30 10:27:15 +00:00
2023-08-03 19:12:22 +00:00
* `类型:请求字符串`
* `匹配v2较高版本`
* `替换v1较低版本`
2022-09-27 09:36:19 +00:00
2023-08-03 19:12:22 +00:00
## 🛡️ API安全帝国备忘单
2022-05-16 08:29:00 +00:00
\
2023-08-03 19:12:22 +00:00
备忘单作者:[Momen Eldawakhly (Cyber Guy)](https://www.linkedin.com/in/momen-eldawakhly-3b6250204)\
2022-05-16 08:29:00 +00:00
\
在这个存储库中你将找到思维导图、技巧、资源以及与API安全和API渗透测试相关的一切。我们的思维导图和资源基于OWASP TOP 10 API我们在渗透测试和其他资源方面的经验以提供最先进和准确的API安全和渗透测试资源
2022-05-08 16:39:22 +00:00
### 🚪 第一关:`{{侦察}}`
2022-05-08 16:39:22 +00:00
进入API安全帝国的第一关是了解如何收集有关API基础架构的信息以及如何对API进行强大的侦察以提取隐藏的入口从而使你能够威胁整个基础架构。因此我们提供了这个更新的API侦察思维导图其中包含最新的工具和方法论
2022-05-08 16:39:22 +00:00
2022-05-16 08:29:00 +00:00
\
![](https://github.com/Cyber-Guy1/API-SecurityEmpire/blob/main/assets/API%20Pentesting%20Mindmap.png)
2023-08-03 19:12:22 +00:00
[**PDF版本**](https://github.com/Cyber-Guy1/API-SecurityEmpire/blob/main/assets/API%20Pentesting%20Mindmap.pdf) **|** [**XMind版本**](https://github.com/Cyber-Guy1/API-SecurityEmpire/blob/main/assets/API%20Pentesting%20Mindmap.xmind)
2022-05-16 08:29:00 +00:00
#### ⚔️ 你将需要的武器:
2022-05-08 16:39:22 +00:00
2022-05-16 08:29:00 +00:00
* [BurpSuite](https://portswigger.net/burp/releases)
* [FFUF](https://github.com/ffuf/ffuf)
* [Arjun](https://github.com/InsiderPhD/Arjun)
* [Postman](https://www.postman.com/downloads/)
* [SecLists](https://github.com/danielmiessler/SecLists/tree/master/Discovery/Web-Content)
* [FuzzDB](https://github.com/fuzzdb-project/fuzzdb)
* [SoapUI](https://www.soapui.org/downloads/soapui/)
* [GraphQL Voyager](https://apis.guru/graphql-voyager/)
* [Kiterunner](https://github.com/assetnote/kiterunner)
* [unfurl](https://github.com/tomnomnom/unfurl)
2022-05-08 16:39:22 +00:00
#### 🏋️ 测试你的能力和武器:
2022-05-08 16:39:22 +00:00
2022-05-16 08:29:00 +00:00
* [vapi](https://github.com/roottusk/vapi)
* [Generic-University](https://github.com/InsiderPhD/Generic-University)
2022-05-08 16:39:22 +00:00
### 🚪 第二关:`{{攻击}}`
2022-05-08 16:39:22 +00:00
2023-08-03 19:12:22 +00:00
#### 攻击RESTful和SOAP
2022-05-16 08:29:00 +00:00
![](https://github.com/Cyber-Guy1/API-SecurityEmpire/blob/main/assets/API%20Pentesting%20Mindmap%20ATTACK.png)\
2023-08-03 19:12:22 +00:00
[**PDF版本**](https://github.com/Cyber-Guy1/API-SecurityEmpire/blob/main/assets/API%20Pentesting%20Mindmap%20ATTACK.pdf) **|** [**XMind版本**](https://github.com/Cyber-Guy1/API-SecurityEmpire/blob/main/assets/API%20Pentesting%20Mindmap%20ATTACK.xmind)\\
2022-05-16 08:29:00 +00:00
2023-08-03 19:12:22 +00:00
#### 攻击GraphQL
2022-05-08 16:39:22 +00:00
由于GraphQL中的攻击有限我们尝试生成所有可能的攻击基于我们在测试API方面的经验在即将发布的思维导图中
2022-05-08 16:39:22 +00:00
2022-05-16 08:29:00 +00:00
![](https://github.com/Cyber-Guy1/API-SecurityEmpire/blob/main/assets/API%20Pentesting%20Mindmap%20%7B%7BGraphQL%20Attacking%7D%7D.png)\
2023-08-03 19:12:22 +00:00
[**PDF版本**](https://github.com/Cyber-Guy1/API-SecurityEmpire/blob/main/assets/API%20Pentesting%20Mindmap%20%7B%7BGraphQL%20Attacking%7D%7D.pdf) **|** [**XMind版本**](https://github.com/Cyber-Guy1/API-SecurityEmpire/blob/main/assets/API%20Pentesting%20Mindmap%20%7B%7BGraphQL%20Attacking%7D%7D.xmind)\\
## Owasp API安全前10名
阅读此文档以了解如何**搜索**和**利用**Owasp Top 10 API漏洞[https://github.com/OWASP/API-Security/blob/master/2019/en/dist/owasp-api-security-top-10.pdf](https://github.com/OWASP/API-Security/blob/master/2019/en/dist/owasp-api-security-top-10.pdf)
2023-08-03 19:12:22 +00:00
## API安全检查清单
{% embed url="https://github.com/shieldfy/API-Security-Checklist" %}
## 用于寻找API漏洞的Logger++过滤器
2022-09-30 10:27:15 +00:00
2022-09-27 09:36:19 +00:00
[https://github.com/bnematzadeh/LoggerPlusPlus-API-Filters](https://github.com/bnematzadeh/LoggerPlusPlus-API-Filters)
2023-08-03 19:12:22 +00:00
## 可能的API端点列表
[https://gist.github.com/yassineaboukir/8e12adefbd505ef704674ad6ad48743d](https://gist.github.com/yassineaboukir/8e12adefbd505ef704674ad6ad48743d)
2023-08-03 19:12:22 +00:00
## 工具
2022-09-05 10:17:20 +00:00
* [**kiterunner**](https://github.com/assetnote/kiterunner): 用于**发现API端点**的强大工具
2022-09-05 10:17:20 +00:00
```bash
kr scan https://domain.com/api/ -w routes-large.kite -x 20 # Downloaded from kiterunner repo
kr scan https://domain.com/api/ -A=apiroutes-220828 -x 20
kr brute https://domain.com/api/ -A=raft-large-words -x 20 -d=0
kr brute https://domain.com/api/ -w /tmp/lang-english.txt -x 20 -d=0
```
* [**automatic-api-attack-tool**](https://github.com/imperva/automatic-api-attack-tool)Imperva的可定制API攻击工具以API规范作为输入生成并运行基于该规范的攻击。
2023-08-03 19:12:22 +00:00
* [**Astra**](https://github.com/flipkart-incubator/Astra)另一个用于API测试的工具用于查找多种不同的Web漏洞。
* [**Susanoo**](https://github.com/ant4g0nist/Susanoo)漏洞API扫描器。
* [**restler-fuzzer**](https://github.com/microsoft/restler-fuzzer)RESTler是第一个有状态的REST API模糊测试工具用于自动测试云服务的REST API并发现这些服务中的安全性和可靠性错误。对于具有OpenAPI/Swagger规范的给定云服务RESTler分析其整个规范然后生成并执行通过其REST API对服务进行测试的测试。
* [**TnT-Fuzzer**](https://github.com/Teebytes/TnT-Fuzzer)**:** TnT-Fuzzer是一个用Python编写的OpenAPIswagger模糊测试工具。
* [**APIFuzzer**](https://github.com/KissPeter/APIFuzzer)**:** APIFuzzer读取您的API描述并逐步模糊字段以验证应用程序是否能够处理模糊的参数。
2023-08-03 19:12:22 +00:00
* [**API-fuzzer**](https://github.com/Fuzzapi/API-fuzzer)API\_Fuzzer gem接受API请求作为输入并返回可能存在的API漏洞。
* [**race-the-web**](https://github.com/TheHackerDev/race-the-web)通过同时向目标URL或URL发送用户指定数量的请求测试Web应用程序中的竞争条件并比较服务器的响应以确定其唯一性。
2022-04-28 16:01:33 +00:00
<figure><img src="../../.gitbook/assets/image (3) (1) (1).png" alt=""><figcaption></figcaption></figure>
2022-06-06 22:28:05 +00:00
使用[**Trickest**](https://trickest.com/?utm\_campaign=hacktrics\&utm\_medium=banner\&utm\_source=hacktricks)轻松构建和自动化由全球最先进的社区工具提供支持的工作流程。\
2023-08-03 19:12:22 +00:00
立即获取访问权限:
2022-06-06 22:28:05 +00:00
2023-01-01 16:19:07 +00:00
{% embed url="https://trickest.com/?utm_campaign=hacktrics&utm_medium=banner&utm_source=hacktricks" %}
2022-06-06 22:28:05 +00:00
2022-04-28 16:01:33 +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
* 您在**网络安全公司**工作吗您想在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)
2023-08-03 19:12:22 +00:00
* 获取[**官方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)**。**
2023-08-03 19:12:22 +00:00
* **通过向**[**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>