> 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/permissions/smart-enumeration-linux-privilege-escalation.md).

# الجرد الذكي - تصعيد امتيازات لينكس

## ما هو

يستغلّ التصعيد في الصلاحيات المعتمد على الأذونات الملفات القابلة للكتابة، أو ضعف الملكية، أو الأسرار المكشوفة، أو المسارات الحساسة التي يجب أن يتحكم بها الجذر فقط. يمكن أن تتحول أخطاء الأذونات الصغيرة إلى وصول مباشر كجذر عندما تؤثر في ملفات المصادقة أو مسارات التنفيذ ذات الامتيازات. تركز هذه الصفحة تحديدًا على **أداة التعداد الذكية** وتحافظ على سير الاستغلال بشكل عملي: حدّد الحالة، تحقّق منها بأمان، ثم شغّل أصغر حمولة لازمة لإثبات الأثر.

## الاستكشاف

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

```bash
find / -writable 2>/dev/null
ls -la /etc/passwd /etc/shadow 2>/dev/null
```

## أمثلة

{% embed url="<https://github.com/diego-treitos/linux-smart-enumeration>" %}

> تم تصميم LSE ليكون سهل الاستخدام ويوفر مخرجات واضحة ومقروءة لتسهيل تحديد المشكلات الأمنية. تستخدم الأداة أوامر لينكس القياسية وتعمل من خلال سطر الأوامر، ما يعني أنه لا يلزم وجود أي برامج إضافية. بالإضافة إلى ذلك، تعرض نطاقًا واسعًا من معلومات النظام، بما في ذلك المستخدمين والمجموعات والخدمات والمنافذ المفتوحة والمهام المجدولة وأذونات الملفات ومتغيرات البيئة وتكوينات جدار الحماية، وغيرها.

<figure><img src="/files/5c808041fb0a04d10352b15c834caa68a40e6bc8" alt=""><figcaption></figcaption></figure>

تكتشف أن هناك ثغرة محتملة عبر /etc/passwd:

<figure><img src="/files/a37b6faaeac725770dbf528311a0fa2384fd5043" 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/permissions/smart-enumeration-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.
