> 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/dirty-cow-kernel-exploit-linux-privilege-escalation.md).

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

## ما هو

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

## الاستكشاف

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

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

## أمثلة

## مثال على استغلال نواة Dirty COW

استخدم **lsb\_release -a** لتحديد إصدار نظام التشغيل.

<figure><img src="/files/18322e0668521d1a35c2c18569677de87350563b" alt=""><figcaption></figcaption></figure>

إذا استخدمت **أمر search exploit** فسترى العديد من ثغرات النواة المرتبطة بهذا الإصدار من أوبونتو.

<figure><img src="/files/413f4ddce596fe0df93e0728846dffafd2b86303" alt=""><figcaption></figcaption></figure>

في هذه الحالة، نحن مهتمون بـ:

<figure><img src="/files/1fc8dd89936c7c5f8a9a3c06e2d372f5f686527e" alt=""><figcaption></figcaption></figure>

شغّل **البرنامج النصي** وأدخل كلمة مرور للمستخدم dirty:

<figure><img src="/files/89384233d726d4274a1a7d36a7286ef065f30407" alt=""><figcaption></figcaption></figure>

تمكّنا من **تغيير كلمة المرور** في /etc/passwd للمستخدم firefart:

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

نحن ننتمي إلى **root** المجموعة:

<figure><img src="/files/2e12adcfa5a9ec209f9b44e0cd80b62cc0dc9df1" 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/dirty-cow-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.
