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

# تجاوز التحكم في الوصول القائم على طريقة HTTP

### يمكن التحايل على التحكم في الوصول القائم على الطريقة

في هذا المختبر، تعتمد ضوابط الوصول جزئيًا على طريقة HTTP المستخدمة. بعد الاتصال باستخدام *administrator:admin* بيانات الاعتماد، يمكن استعراض لوحة الإدارة بحرية.

الهدف هو الاتصال باستخدام *wiener:peter* بيانات الاعتماد واستغلال التطبيق الخاطئ لآلية التحكم لتعيين دور المدير.

<figure><img src="/files/82227b0e075bf3b01b7242a5e7301fdd2d7fd764" alt=""><figcaption></figcaption></figure>

بعد الاتصال كمسؤول، نكتشف الواجهة لزيادة أو تقليل امتيازات المستخدم. / من خلال اعتراض الطلب المرسل أثناء التعديل:

```http
POST /admin-roles
username=carlos&action=upgrade
```

يتطلب هذا الإجراء صلاحيات إدارية عند إرساله باستخدام **طلب POST**.

ومع ذلك، عند محاولة إعادة إنتاج هذا الطلب باستخدام جلسة wiener، يعرض التطبيق رسالة رفض الوصول.

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

ومع ذلك، إذا استُبدلت طريقة POST بـ **GET**، تفشل آلية التحكم:

```http
GET /admin-roles?username=wiener&action=upgrade
```

يمر هذا الطلب ويعيد **200 OK**، مما يسمح بترقية امتيازات wiener إلى رتبة المدير.

<figure><img src="/files/0609380b7326a42d313fd1ec9565a35e7348b175" 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/bypassing-access-control-based-on-http-method.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.
