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

435 lines
30 KiB
Markdown
Raw Normal View History

2023-08-03 19:12:22 +00:00
# 80,443 - 网络服务渗透测试方法论
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)
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) 或 [**telegram 群组**](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 仓库**](https://github.com/carlospolop/hacktricks) **和**[**hacktricks-cloud 仓库**](https://github.com/carlospolop/hacktricks-cloud) **提交 PR 来分享你的黑客技巧。**
2022-04-28 16:01:33 +00:00
</details>
2022-08-25 23:15:00 +00:00
<img src="../../.gitbook/assets/i3.png" alt="" data-size="original">
2022-04-28 16:01:33 +00:00
2023-08-03 19:12:22 +00:00
**赏金猎人提示****注册** Intigriti一个由黑客创建的高级**赏金猎人平台**!立即加入我们的[**https://go.intigriti.com/hacktricks**](https://go.intigriti.com/hacktricks),开始赚取高达**$100,000**的赏金!
2022-04-30 20:31:18 +00:00
{% embed url="https://go.intigriti.com/hacktricks" %}
2023-08-03 19:12:22 +00:00
## 基本信息
2023-08-03 19:12:22 +00:00
Web 服务是最**常见和广泛的服务**,存在许多**不同类型的漏洞**。
2023-08-03 19:12:22 +00:00
**默认端口:**80HTTP443HTTPS
```bash
PORT STATE SERVICE
80/tcp open http
443/tcp open ssl/https
```
```bash
nc -v domain.com 80 # GET / HTTP/1.0
openssl s_client -connect domain.com:443 # GET / HTTP/1.0
```
2023-08-03 19:12:22 +00:00
### Web API指南
2021-06-26 15:04:40 +00:00
{% content-ref url="web-api-pentesting.md" %}
[web-api-pentesting.md](web-api-pentesting.md)
{% endcontent-ref %}
2021-06-26 15:04:40 +00:00
2023-08-03 19:12:22 +00:00
## 方法概述
> 在这个方法中我们假设你要攻击一个域名或子域名只有这一个。因此你应该将这个方法应用到每个发现的域名、子域名或范围内未确定的Web服务器上。
* [ ] 首先,**识别**Web服务器使用的**技术**。寻找在测试的其余部分中要记住的**技巧**,如果你能成功识别出技术。
* [ ] 版本的**已知漏洞**有吗?
* [ ] 使用了任何**众所周知的技术**吗?有没有**有用的技巧**来提取更多信息?
* [ ] 有没有**专门的扫描工具**要运行如wpscan
* [ ] 启动**通用扫描工具**。你永远不知道它们是否会找到一些东西或者是否会找到一些有趣的信息。
2023-08-03 19:12:22 +00:00
* [ ] 从**初始检查**开始:**robots****sitemap****404**错误和**SSL/TLS扫描**如果是HTTPS
* [ ] 开始**爬取**网页:现在是时候**查找**所有可能的**文件、文件夹**和**正在使用的参数**了。还要检查**特殊发现**。
* [ ] _请注意每当在暴力破解或爬取过程中发现一个新目录都应该进行爬取。_
2023-08-03 19:12:22 +00:00
* [ ] **目录暴力破解**:尝试对所有发现的文件夹进行暴力破解,以寻找新的**文件**和**目录**。
* [ ] _请注意每当在暴力破解或爬取过程中发现一个新目录都应该进行暴力破解。_
* [ ] **备份检查**:测试是否可以找到附加了常见备份扩展名的**已发现文件**的**备份**。
2023-08-03 19:12:22 +00:00
* [ ] **暴力破解参数**:尝试**查找隐藏参数**。
* [ ] 一旦你**识别出**所有可能接受**用户输入**的**端点**,检查与之相关的所有**漏洞**。
* [ ] [按照这个清单进行操作](../../pentesting-web/web-vulnerabilities-methodology/)
2023-08-03 19:12:22 +00:00
## 服务器版本(存在漏洞吗?)
2023-08-03 19:12:22 +00:00
### 识别
检查正在运行的服务器**版本**是否有**已知漏洞**。\
2023-08-03 19:12:22 +00:00
**响应的HTTP头和Cookie**可能非常有用,可以用来**识别**正在使用的**技术**和/或**版本**。**Nmap扫描**可以识别服务器版本,但也可以使用工具[**whatweb**](https://github.com/urbanadventurer/WhatWeb)**、**[**webtech**](https://github.com/ShielderSec/webtech)**或**[**https://builtwith.com/**](https://builtwith.com)**
```bash
whatweb -a 1 <URL> #Stealthy
whatweb -a 3 <URL> #Aggresive
webtech -u <URL>
2022-05-19 12:02:10 +00:00
webanalyze -host https://google.com -crawl 2
```
2023-08-03 19:12:22 +00:00
搜索[Web应用程序版本的漏洞](../../generic-methodologies-and-resources/search-exploits.md)
### 检查是否有任何WAF
* [https://github.com/EnableSecurity/wafw00f](https://github.com/EnableSecurity/wafw00f)
* [https://github.com/Ekultek/WhatWaf.git](https://github.com/Ekultek/WhatWaf.git)
* [https://nmap.org/nsedoc/scripts/http-waf-detect.html](https://nmap.org/nsedoc/scripts/http-waf-detect.html)
### Web技术技巧
一些用于查找不同知名技术中的漏洞的技巧:
2023-08-03 19:12:22 +00:00
* [AEM - Adobe Experience Cloud](aem-adobe-experience-cloud.md)
* [Apache](apache.md)
* [Artifactory](artifactory-hacking-guide.md)
* [Buckets](buckets/)
* [CGI](cgi.md)
* [Drupal](drupal.md)
* [Flask](flask.md)
* [Git](git.md)
* [Golang](golang.md)
* [GraphQL](graphql.md)
* [H2 - Java SQL数据库](h2-java-sql-database.md)
* [IIS技巧](iis-internet-information-services.md)
* [JBOSS](jboss.md)
* [Jenkins](broken-reference/)
* [Jira](jira.md)
* [Joomla](joomla.md)
* [JSP](jsp.md)
* [Laravel](laravel.md)
* [Moodle](moodle.md)
* [Nginx](nginx.md)
* [PHPphp有很多有趣的技巧可以利用](php-tricks-esp/)
* [Python](python.md)
* [Spring Actuators](spring-actuators.md)
* [Symphony](symphony.md)
* [Tomcat](tomcat.md)
* [VMWare](vmware-esx-vcenter....md)
* [Web API Pentesting](web-api-pentesting.md)
* [WebDav](put-method-webdav.md)
* [Werkzeug](werkzeug.md)
* [Wordpress](wordpress.md)
* [Electron DesktopXSS到RCE](xss-to-rce-electron-desktop-apps/)
请注意,**同一域名**可以在不同**端口**、**文件夹**和**子域**中使用**不同的技术**。\
如果Web应用程序使用了之前列出的任何知名**技术/平台**或**其他任何技术**,不要忘记在互联网上搜索新的技巧(并让我知道!)。
2023-08-03 19:12:22 +00:00
### 源代码审查
如果应用程序的**源代码**在**github**上可用,除了自己对应用程序进行**白盒测试**之外,还有一些信息对当前的**黑盒测试**可能会有用:
* 是否有通过Web访问的**更改日志、自述文件或版本**文件或其他任何包含**版本信息**的文件?
2023-08-03 19:12:22 +00:00
* 凭据是如何保存的?是否有(可访问的)包含凭据(用户名或密码)的**文件**
* 密码是以**明文**、**加密**还是使用了哪种**哈希算法**
* 是否使用了任何**主密钥**来加密某些内容?使用了哪种**算法**
2023-08-03 19:12:22 +00:00
* 是否可以通过利用某些漏洞**访问这些文件**
* 在github的已解决和未解决的**问题**中是否有任何**有趣的信息**?或在**提交历史**中(也许在旧的提交中有一些**密码**
{% content-ref url="code-review-tools.md" %}
[code-review-tools.md](code-review-tools.md)
{% endcontent-ref %}
2023-08-03 19:12:22 +00:00
### 自动扫描工具
2023-08-03 19:12:22 +00:00
#### 通用自动扫描工具
```bash
nikto -h <URL>
whatweb -a 4 <URL>
wapiti -u <URL>
W3af
2021-06-27 13:15:35 +00:00
zaproxy #You can use an API
nuclei -ut && nuclei -target <URL>
# https://github.com/ignis-sec/puff (client side vulns fuzzer)
node puff.js -w ./wordlist-examples/xss.txt -u "http://www.xssgame.com/f/m4KKGHi2rVUN/?query=FUZZ"
```
#### CMS扫描工具
如果使用了CMS请不要忘记运行扫描工具也许会发现一些有趣的东西
2023-08-03 19:12:22 +00:00
[**Clusterd**](https://github.com/hatRiot/clusterd)****[**JBoss**](jboss.md)**ColdFusionWebLogic**[**Tomcat**](tomcat.md)**RailoAxis2Glassfish**\
[**CMSScan**](https://github.com/ajinabraham/CMSScan):对[**WordPress**](wordpress.md)**[**Drupal**](drupal.md)****Joomla****vBulletin**网站进行安全问题扫描(图形界面)\
2023-08-03 19:12:22 +00:00
[**VulnX**](https://github.com/anouarbensaad/vulnx)****对[**Joomla**](joomla.md)****[**Wordpress**](wordpress.md)****[**Drupal**](drupal.md)**PrestaShopOpencart进行扫描**\
**CMSMap**:对[**(W)ordpress**](wordpress.md)****[**(J)oomla**](joomla.md)****[**(D)rupal**](drupal.md)**或**[**(M)oodle**](moodle.md)**进行扫描**\
[**droopscan**](https://github.com/droope/droopescan)****对[**Drupal**](drupal.md)****[**Joomla**](joomla.md)****[**Moodle**](moodle.md)**Silverstripe**[**Wordpress**](wordpress.md)**进行扫描**
```bash
cmsmap [-f W] -F -d <URL>
wpscan --force update -e --url <URL>
joomscan --ec -u <URL>
joomlavs.rb #https://github.com/rastating/joomlavs
```
> 在这一点上您应该已经获得了客户端使用的Web服务器的一些信息如果提供了任何数据并记住了一些测试期间需要注意的技巧。如果您很幸运甚至可能已经找到了一个CMS并运行了一些扫描器。
2023-08-03 19:12:22 +00:00
## 逐步的Web应用程序发现
2023-08-03 19:12:22 +00:00
> 从这一点开始我们将开始与Web应用程序进行交互。
2023-08-03 19:12:22 +00:00
### 初始检查
2023-08-03 19:12:22 +00:00
**具有有趣信息的默认页面:**
* /robots.txt
* /sitemap.xml
2021-06-27 13:15:35 +00:00
* /crossdomain.xml
* /clientaccesspolicy.xml
* /.well-known/
2023-08-03 19:12:22 +00:00
* 还要检查主页面和次要页面中的注释。
2021-06-27 16:17:04 +00:00
2023-08-03 19:12:22 +00:00
**强制错误**
2021-06-27 16:17:04 +00:00
当向Web服务器发送奇怪的数据时它们可能会**表现出意外的行为**。这可能会导致**漏洞**或**泄露敏感信息**。
2021-06-27 16:17:04 +00:00
2023-08-03 19:12:22 +00:00
* 访问**伪造页面**,如/whatever\_fake.php.aspx.html.etc
* 在**cookie值**和**参数值**中添加"\[]", "]]"和"\[\["以创建错误
2023-08-03 19:12:22 +00:00
* 通过在**URL**的**末尾**给出输入为**`/~randomthing/%s`**来生成错误
* 尝试使用**不同的HTTP动词**如PATCH、DEBUG或错误的FAKE
2023-08-03 19:12:22 +00:00
#### **检查是否可以上传文件(**[**PUT动词WebDav**](put-method-webdav.md)****
如果发现**WebDav**已经**启用**,但您没有足够的权限在根文件夹中**上传文件**,请尝试:
2023-08-03 19:12:22 +00:00
* **暴力破解**凭据
* 通过WebDav将文件**上传**到Web页面中**找到的其他文件夹**。您可能有权限在其他文件夹中上传文件。
2023-08-03 19:12:22 +00:00
### **SSL/TLS漏洞**
2021-06-27 13:15:35 +00:00
2023-08-03 19:12:22 +00:00
* 如果应用程序在任何部分都**没有强制使用HTTPS**,那么它就**容易受到中间人攻击**
* 如果应用程序正在使用HTTP发送**敏感数据(密码)**。那么这是一个高风险漏洞。
2023-08-03 19:12:22 +00:00
使用[**testssl.sh**](https://github.com/drwetter/testssl.sh)检查**漏洞**在Bug Bounty计划中这类漏洞可能不会被接受并使用[**a2sv**](https://github.com/hahwul/a2sv)重新检查漏洞:
```bash
./testssl.sh [--htmlfile] 10.10.10.10:443
#Use the --htmlfile to save the output inside an htmlfile also
2022-05-01 12:49:36 +00:00
# You can also use other tools, by testssl.sh at this momment is the best one (I think)
sslscan <host:port>
sslyze --regular <ip:port>
```
2023-08-03 19:12:22 +00:00
关于SSL/TLS漏洞的信息
2022-03-17 15:33:23 +00:00
* [https://www.gracefulsecurity.com/tls-ssl-vulnerabilities/](https://www.gracefulsecurity.com/tls-ssl-vulnerabilities/)
* [https://www.acunetix.com/blog/articles/tls-vulnerabilities-attacks-final-part/](https://www.acunetix.com/blog/articles/tls-vulnerabilities-attacks-final-part/)
2023-08-03 19:12:22 +00:00
### 爬虫
在网络中启动某种类型的**爬虫**。爬虫的目标是从被测试应用程序中**找到尽可能多的路径**。因此,应使用网络爬行和外部来源来找到尽可能多的有效路径。
2023-08-03 19:12:22 +00:00
* [**gospider**](https://github.com/jaeles-project/gospider) (go)HTML爬虫JS文件和外部来源Archive.orgCommonCrawl.orgVirusTotal.comAlienVault.com中的LinkFinder。
* [**hakrawler**](https://github.com/hakluke/hakrawler) (go)HML爬虫带有JS文件的LinkFider和Archive.org作为外部来源。
* [**dirhunt**](https://github.com/Nekmo/dirhunt) (python)HTML爬虫还指示“juicy files”。
* [**evine** ](https://github.com/saeeddhqan/evine)(go)交互式CLI HTML爬虫。它还在Archive.org中搜索。
* [**meg**](https://github.com/tomnomnom/meg) (go)这个工具不是爬虫但它可能很有用。您只需指定一个包含主机和路径的文件meg将在每个主机上获取每个路径并保存响应。
2023-08-03 19:12:22 +00:00
* [**urlgrab**](https://github.com/IAmStoxe/urlgrab) (go)带有JS渲染功能的HTML爬虫。然而它看起来没有维护预编译版本过旧当前代码无法编译。
* [**gau**](https://github.com/lc/gau) (go)使用外部提供者waybackotxcommoncrawl的HTML爬虫。
* [**ParamSpider**](https://github.com/devanshbatham/ParamSpider)此脚本将查找带有参数的URL并列出它们。
* [**galer**](https://github.com/dwisiswant0/galer) (go)带有JS渲染功能的HTML爬虫。
* [**LinkFinder**](https://github.com/GerbenJavado/LinkFinder) (python)HTML爬虫具有JS美化功能能够在JS文件中搜索新路径。还值得一看的是[JSScanner](https://github.com/dark-warlord14/JSScanner)它是LinkFinder的包装器。
* [**goLinkFinder**](https://github.com/0xsha/GoLinkFinder) (go)用于提取HTML源代码和嵌入式javascript文件中的端点。对于漏洞猎人、红队人员和信息安全专家非常有用。
* [**JSParser**](https://github.com/nahamsec/JSParser) (python2.7)使用Tornado和JSBeautifier解析JavaScript文件中的相对URL的Python 2.7脚本。用于轻松发现AJAX请求。看起来没有维护。
2023-08-03 19:12:22 +00:00
* [**relative-url-extractor**](https://github.com/jobertabma/relative-url-extractor) (ruby)给定一个文件HTML它将使用巧妙的正则表达式从中提取URL以查找并提取丑陋压缩文件中的相对URL。
* [**JSFScan**](https://github.com/KathanP19/JSFScan.sh) (bash多个工具)使用多个工具从JS文件中收集有趣的信息。
* [**subjs**](https://github.com/lc/subjs) (go)查找JS文件。
* [**page-fetch**](https://github.com/detectify/page-fetch) (go)在无头浏览器中加载页面并打印出加载页面的所有URL。
2023-08-03 19:12:22 +00:00
* [**Feroxbuster**](https://github.com/epi052/feroxbuster) (rust):混合了前面工具的几个选项的内容发现工具。
* [**Javascript Parsing**](https://github.com/xnl-h4ck3r/burp-extensions)用于在JS文件中查找路径和参数的Burp扩展。
* [**Sourcemapper**](https://github.com/denandz/sourcemapper):给定.js.map URL将获取美化的JS代码。
* [**xnLinkFinder**](https://github.com/xnl-h4ck3r/xnLinkFinder):这是一个用于发现给定目标的端点的工具。
* [**waymore**](https://github.com/xnl-h4ck3r/waymore)**:** 从wayback机器中发现链接还下载wayback中的响应并查找更多链接
2023-08-03 19:12:22 +00:00
* [**HTTPLoot**](https://github.com/redhuntlabs/HTTPLoot) (go):爬行(甚至通过填写表单)并使用特定的正则表达式查找敏感信息。
* [**SpiderSuite**](https://github.com/3nock/SpiderSuite)Spider Suite是一个高级多功能GUI网络安全爬虫专为网络安全专业人员设计。
* [**jsluice**](https://github.com/BishopFox/jsluice) (go)它是一个用于从JavaScript源代码中提取URL、路径、秘密和其他有趣数据的Go包和命令行工具。
* [**ParaForge**](https://github.com/Anof-cyber/ParaForge)ParaForge是一个简单的Burp Suite扩展用于从请求中提取参数和端点以创建自定义的模糊和枚举字典。
### 暴力破解目录和文件
从根目录开始进行**暴力破解**,确保使用**此方法**和**爬虫**发现的所有**目录**进行**递归**暴力破解(可以在使用的字典的开头添加找到的目录的名称)。\
2023-08-03 19:12:22 +00:00
工具:
* **Dirb** / **Dirbuster** - 包含在Kali中**旧**(而且**慢**)但功能齐全。允许自签名证书和递归搜索。与其他选项相比速度较慢。
2023-08-03 19:12:22 +00:00
* [**Dirsearch**](https://github.com/maurosoria/dirsearch) (python)**:不允许自签名证书,但**允许递归搜索。
* [**Gobuster**](https://github.com/OJ/gobuster) (go):允许自签名证书,**不支持**递归搜索。
* [**Feroxbuster**](https://github.com/epi052/feroxbuster) **- 快速,支持递归搜索。**
2021-02-10 13:49:28 +00:00
* [**wfuzz**](https://github.com/xmendez/wfuzz) `wfuzz -w /usr/share/seclists/Discovery/Web-Content/raft-medium-directories.txt https://domain.com/api/FUZZ`
2023-08-03 19:12:22 +00:00
* [**ffuf** ](https://github.com/ffuf/ffuf)- 快速:`ffuf -c -w /usr/share/wordlists/dirb/big.txt -u http://10.10.10.10/FUZZ`
* [**uro**](https://github.com/s0md3v/uro) (python)这不是一个爬虫而是一个工具根据找到的URL列表删除“重复”URL。
* [**Scavenger**](https://github.com/0xDexter0us/Scavenger)Burp扩展用于从不同页面的burp历史记录中创建目录列表。
* [**TrashCompactor**](https://github.com/michael1026/trashcompactor)删除具有重复功能的URL基于js导入
2023-08-03 19:12:22 +00:00
* [**Chamaleon**](https://github.com/iustin24/chameleon)它使用wapalyzer检测使用的技术并选择要使用的字典。
**推荐字典:**
2022-03-17 15:33:23 +00:00
* [https://github.com/carlospolop/Auto\_Wordlists/blob/main/wordlists/bf\_directories.txt](https://github.com/carlospolop/Auto\_Wordlists/blob/main/wordlists/bf\_directories.txt)
2021-07-27 08:34:47 +00:00
* [**Dirsearch** included dictionary](https://github.com/maurosoria/dirsearch/blob/master/db/dicc.txt)
* [http://gist.github.com/jhaddix/b80ea67d85c13206125806f0828f4d10](http://gist.github.com/jhaddix/b80ea67d85c13206125806f0828f4d10)
* [Assetnote wordlists](https://wordlists.assetnote.io)
2021-06-27 14:11:13 +00:00
* [https://github.com/danielmiessler/SecLists/tree/master/Discovery/Web-Content](https://github.com/danielmiessler/SecLists/tree/master/Discovery/Web-Content)
2023-08-03 19:12:22 +00:00
* raft-large-directories-lowercase.txt
* directory-list-2.3-medium.txt
* RobotsDisallowed/top10000.txt
2021-06-27 14:11:13 +00:00
* [https://github.com/random-robbie/bruteforce-lists](https://github.com/random-robbie/bruteforce-lists)
* [https://github.com/google/fuzzing/tree/master/dictionaries](https://github.com/google/fuzzing/tree/master/dictionaries)
* [https://github.com/six2dez/OneListForAll](https://github.com/six2dez/OneListForAll)
2021-07-27 08:34:47 +00:00
* [https://github.com/random-robbie/bruteforce-lists](https://github.com/random-robbie/bruteforce-lists)
* _/usr/share/wordlists/dirb/common.txt_
* _/usr/share/wordlists/dirb/big.txt_
* _/usr/share/wordlists/dirbuster/directory-list-2.3-medium.txt_
2023-08-03 19:12:22 +00:00
请注意,每当在暴力破解或爬虫过程中发现新目录时,应进行暴力破解。
### 检查每个找到的文件时要注意的事项
2023-08-03 19:12:22 +00:00
* [**Broken link checker**](https://github.com/stevenvachon/broken-link-checker)查找HTML中的损坏链接可能容易被接管
* **文件备份**一旦找到所有文件查找所有可执行文件的备份“_.php_”“_.aspx_”等。备份的常见变体包括_file.ext\~#file.ext#\~file.extfile.ext.bakfile.ext.tmpfile.ext.oldfile.bakfile.tmp和file.old._ 您还可以使用工具[**bfac**](https://github.com/mazen160/bfac)。
* **发现新参数**:您可以使用工具如[**Arjun**](https://github.com/s0md3v/Arjun)****[**parameth**](https://github.com/maK-/parameth)****[**x8**](https://github.com/sh1yo/x8)**和**[**Param Miner**](https://github.com/PortSwigger/param-miner)**来发现隐藏的参数。如果可以的话您可以尝试在每个可执行的Web文件上搜索隐藏的参数。
* _Arjun所有默认字典_[https://github.com/s0md3v/Arjun/tree/master/arjun/db](https://github.com/s0md3v/Arjun/tree/master/arjun/db)
* _Param-miner“params”_[https://github.com/PortSwigger/param-miner/blob/master/resources/params](https://github.com/PortSwigger/param-miner/blob/master/resources/params)
* _Assetnote“parameters\_top\_1m”_[https://wordlists.assetnote.io/](https://wordlists.assetnote.io)
* _nullenc0de“params.txt”_[https://gist.github.com/nullenc0de/9cb36260207924f8e1787279a05eb773](https://gist.github.com/nullenc0de/9cb36260207924f8e1787279a05eb773)
2023-08-03 19:12:22 +00:00
* **注释**:检查所有文件的注释,您可以找到**凭据**或**隐藏功能**。
* 如果您正在进行**CTF**比赛,一个“常见”的技巧是在页面的**右侧**的**注释**中**隐藏****信息**(使用**大量**的**空格**,以便在使用浏览器打开源代码时无法看到数据)。另一种可能性是使用**多个新行**并在网页的**底部**的注释中**隐藏信息**。
2023-08-03 19:12:22 +00:00
* **API密钥**:如果您**找到任何API密钥**有一个指南说明如何使用不同平台的API密钥[**keyhacks**](https://github.com/streaak/keyhacks)****[**zile**](https://github.com/xyele/zile.git)****[**truffleHog**](https://github.com/trufflesecurity/truffleHog)****[**SecretFinder**](https://github.com/m4ll0k/SecretFinder)****[**RegHex**](https://github.com/l4yton/RegHex\)/)****[**DumpsterDive**](https://github.com/securing/DumpsterDiver)****[**EarlyBird**](https://github.com/americanexpress/earlybird)
* Google API密钥如果您找到任何类似**AIza**SyA-qLheq6xjDiEIRisP\_ujUseYLQCHUjik的API密钥可以使用项目[**gmapapiscanner**](https://github.com/ozguralp/gmapsapiscanner)检查密钥可以访问哪些API。
* **S3存储桶**在爬虫过程中查看是否有任何子域或任何链接与某个S3存储桶相关。在这种情况下[**检查存储桶的权限**](buckets/)。
### 特殊发现
在执行爬虫和暴力破解时,您可能会发现一些有趣的事情,需要注意。
2023-08-03 19:12:22 +00:00
**有趣的文件**
* 在**CSS**文件中查找到其他文件的链接。
* [如果找到一个名为_**.git**_的文件可以提取一些信息](git.md)。
* 如果找到一个名为_**.env**_的文件可能会发现诸如API密钥、数据库密码和其他信息。
* 如果找到**API端点**,您[也应该测试它们](web-api-pentesting.md)。这些不是文件,但可能会“看起来像”文件。
* **JS文件**在爬虫部分提到了几个可以从JS文件中提取路径的工具。此外监视每个找到的JS文件可能是有趣的因为在某些情况下更改可能表明代码中引入了潜在的漏洞。您可以使用例如[**JSMon**](https://github.com/robre/jsmon)**。**
2023-08-03 19:12:22 +00:00
* 您还应该使用[**RetireJS**](https://github.com/retirejs/retire.js/)或[**JSHole**](https://github.com/callforpapers-source/jshole)检查发现的JS文件是否存在漏洞。
* **Javascript反混淆和解包器**[https://lelinhtinh.github.io/de4js/](https://lelinhtinh.github.io/de4js/)[https://www.dcode.fr/javascript-unobfuscator](https://www.dcode.fr/javascript-unobfuscator)
* **Javascript美化器**[http://jsbeautifier.org/](https://beautifier.io)[http://jsnice.org/](http://jsnice.org)
2023-08-03 19:12:22 +00:00
* **JsFuck反混淆**(使用字符:“\[]!+”)[https://ooze.ninja/javascript/poisonjs/](https://ooze.ninja/javascript/poisonjs/)
* [**TrainFuck**](https://github.com/taco-c/trainfuck)**** `+72.+29.+7..+3.-67.-12.+55.+24.+3.-6.-8.-67.-23.`
* 在一些情况下,你需要**理解使用的正则表达式**,这个网站会很有用:[https://regex101.com/](https://regex101.com)
* 你还可以**监视检测到表单的文件**,因为参数的更改或新表单的出现可能表明存在潜在的新的易受攻击的功能。
2022-04-30 20:31:18 +00:00
**403 Forbidden/Basic Authentication/401 Unauthorized (bypass)**
{% content-ref url="403-and-401-bypasses.md" %}
[403-and-401-bypasses.md](403-and-401-bypasses.md)
{% endcontent-ref %}
2022-04-30 20:31:18 +00:00
**502 Proxy Error**
如果任何页面**响应**这个**状态码**,那么很可能是**代理配置错误**。**如果你发送一个类似这样的HTTP请求`GET https://google.com HTTP/1.1`**(包括主机头和其他常见头),**代理**将尝试**访问**_**google.com**_**,这样你就发现了**SSRF**。
2023-08-03 19:12:22 +00:00
**NTLM Authentication - 信息泄露**
如果运行的服务器要求身份验证是**Windows**,或者你找到一个要求你输入**凭据**(并要求输入**域名**)的登录页面,你可以引发**信息泄露**。\
发送**头部**`“Authorization: NTLM TlRMTVNTUAABAAAAB4IIAAAAAAAAAAAAAAAAAAAAAAA=”`,由于**NTLM身份验证的工作原理**服务器将在“WWW-Authenticate”头部中回复内部信息IIS版本、Windows版本等。\
你可以使用**nmap插件**“_http-ntlm-info.nse_”来**自动化**这个过程。
2023-08-03 19:12:22 +00:00
**HTTP重定向CTF**
可以在**重定向**中**放置内容**。这个内容**不会显示给用户**(因为浏览器会执行重定向),但是可能会**隐藏**一些东西。
2023-08-03 19:12:22 +00:00
### 检查Web漏洞
2021-06-26 12:28:58 +00:00
现在已经对Web应用程序进行了全面的枚举是时候检查可能的许多漏洞了。你可以在这里找到检查清单
2021-06-26 12:28:58 +00:00
2022-09-12 18:43:22 +00:00
{% content-ref url="../../pentesting-web/web-vulnerabilities-methodology/" %}
[web-vulnerabilities-methodology](../../pentesting-web/web-vulnerabilities-methodology/)
{% endcontent-ref %}
2021-06-26 12:28:58 +00:00
TODO: 使用[https://six2dez.gitbook.io/pentest-book/others/web-checklist](https://six2dez.gitbook.io/pentest-book/others/web-checklist)和[https://kennel209.gitbooks.io/owasp-testing-guide-v4/content/en/web\_application\_security\_testing/configuration\_and\_deployment\_management\_testing.html](https://kennel209.gitbooks.io/owasp-testing-guide-v4/content/en/web\_application\_security\_testing/configuration\_and\_deployment\_management\_testing.html)以及[https://owasp-skf.gitbook.io/asvs-write-ups/kbid-111-client-side-template-injection](https://owasp-skf.gitbook.io/asvs-write-ups/kbid-111-client-side-template-injection)来完善漏洞和技术列表。
2022-05-19 12:02:10 +00:00
### 监视页面变化
2022-05-19 12:02:10 +00:00
你可以使用工具如[https://github.com/dgtlmoon/changedetection.io](https://github.com/dgtlmoon/changedetection.io)来监视页面的修改,以便发现可能插入漏洞的变化。
2021-07-27 08:34:47 +00:00
2023-08-03 19:12:22 +00:00
### HackTricks自动命令
```
2021-08-12 13:52:57 +00:00
Protocol_Name: Web #Protocol Abbreviation if there is one.
Port_Number: 80,443 #Comma separated if there is more than one.
Protocol_Description: Web #Protocol Abbreviation Spelled out
2021-08-15 18:08:52 +00:00
Entry_1:
2023-08-03 19:12:22 +00:00
Name: Notes
Description: Notes for Web
Note: |
https://book.hacktricks.xyz/pentesting/pentesting-web
2021-08-15 18:08:52 +00:00
Entry_2:
2023-08-03 19:12:22 +00:00
Name: Quick Web Scan
Description: Nikto and GoBuster
Command: nikto -host {Web_Proto}://{IP}:{Web_Port} &&&& gobuster dir -w {Small_Dirlist} -u {Web_Proto}://{IP}:{Web_Port} && gobuster dir -w {Big_Dirlist} -u {Web_Proto}://{IP}:{Web_Port}
2021-08-15 18:08:52 +00:00
Entry_3:
2023-08-03 19:12:22 +00:00
Name: Nikto
Description: Basic Site Info via Nikto
Command: nikto -host {Web_Proto}://{IP}:{Web_Port}
2021-08-15 18:08:52 +00:00
Entry_4:
2023-08-03 19:12:22 +00:00
Name: WhatWeb
Description: General purpose auto scanner
Command: whatweb -a 4 {IP}
2021-08-15 18:08:52 +00:00
Entry_5:
2023-08-03 19:12:22 +00:00
Name: Directory Brute Force Non-Recursive
Description: Non-Recursive Directory Brute Force
Command: gobuster dir -w {Big_Dirlist} -u {Web_Proto}://{IP}:{Web_Port}
2021-08-15 18:08:52 +00:00
Entry_6:
2023-08-03 19:12:22 +00:00
Name: Directory Brute Force Recursive
Description: Recursive Directory Brute Force
Command: python3 {Tool_Dir}dirsearch/dirsearch.py -w {Small_Dirlist} -e php,exe,sh,py,html,pl -f -t 20 -u {Web_Proto}://{IP}:{Web_Port} -r 10
2021-08-15 18:08:52 +00:00
Entry_7:
2023-08-03 19:12:22 +00:00
Name: Directory Brute Force CGI
Description: Common Gateway Interface Brute Force
Command: gobuster dir -u {Web_Proto}://{IP}:{Web_Port}/ -w /usr/share/seclists/Discovery/Web-Content/CGIs.txt -s 200
2021-08-15 18:08:52 +00:00
Entry_8:
2023-08-03 19:12:22 +00:00
Name: Nmap Web Vuln Scan
Description: Tailored Nmap Scan for web Vulnerabilities
Command: nmap -vv --reason -Pn -sV -p {Web_Port} --script=`banner,(http* or ssl*) and not (brute or broadcast or dos or external or http-slowloris* or fuzzer)` {IP}
2021-08-15 18:08:52 +00:00
Entry_9:
2023-08-03 19:12:22 +00:00
Name: Drupal
Description: Drupal Enumeration Notes
Note: |
git clone https://github.com/immunIT/drupwn.git for low hanging fruit and git clone https://github.com/droope/droopescan.git for deeper enumeration
2021-08-15 18:08:52 +00:00
Entry_10:
2023-08-03 19:12:22 +00:00
Name: WordPress
Description: WordPress Enumeration with WPScan
Command: |
?What is the location of the wp-login.php? Example: /Yeet/cannon/wp-login.php
wpscan --url {Web_Proto}://{IP}{1} --enumerate ap,at,cb,dbe && wpscan --url {Web_Proto}://{IP}{1} --enumerate u,tt,t,vp --passwords {Big_Passwordlist} -e
2021-09-13 15:37:58 +00:00
Entry_11:
2023-08-03 19:12:22 +00:00
Name: WordPress Hydra Brute Force
Description: Need User (admin is default)
Command: hydra -l admin -P {Big_Passwordlist} {IP} -V http-form-post '/wp-login.php:log=^USER^&pwd=^PASS^&wp-submit=Log In&testcookie=1:S=Location'
Entry_12:
2023-08-03 19:12:22 +00:00
Name: Ffuf Vhost
Description: Simple Scan with Ffuf for discovering additional vhosts
Command: ffuf -w {Subdomain_List}:FUZZ -u {Web_Proto}://{Domain_Name} -H "Host:FUZZ.{Domain_Name}" -c -mc all {Ffuf_Filters}
2021-08-15 18:08:52 +00:00
```
2022-07-21 20:26:09 +00:00
<img src="../../.gitbook/assets/i3.png" alt="" data-size="original">\
**Bug赏金提示****注册**Intigriti一个由黑客创建的高级bug赏金平台立即加入我们访问[**https://go.intigriti.com/hacktricks**](https://go.intigriti.com/hacktricks),开始赚取高达**$100,000**的赏金!
2022-05-08 22:42:39 +00:00
{% embed url="https://go.intigriti.com/hacktricks" %}
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的最新版本或下载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)
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)**。**
* **通过向**[**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>