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

# sudo journalctl - تصعيد امتيازات لينكس

## ما هو

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

## الاستكشاف

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

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

## أمثلة

## استغلال journalctl

{% hint style="info" %}
وجدنا سكربتًا، `server-stats.sh`، في الـ `/bin` الدليل. هذا السكربت مُعدّ لتنفيذ `/usr/bin/journalctl` الأمر بامتيازات sudo. وهذا يعني أنه يمكننا استخدام هذا الأمر للحصول على امتيازات الجذر
{% endhint %}

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

**ابحث عن تقنية GTFOBins:**

* من خلال الرجوع إلى GTFOBins، نكتشف أن `journalctl` يمكن استخدامه لرفع الامتيازات عبر تشغيل أمر شِل.

{% embed url="<https://gtfobins.github.io/gtfobins/journalctl/>" %}

<figure><img src="/files/89ac9ea890cabb4aa6b553f2d5ca8d5273827bfd" alt=""><figcaption></figcaption></figure>

**شروط التنفيذ:**

لتفعيل هذه العملية، يجب تقليل حجم نافذة الطرفية لتمكين `less` وضع التصفح في `journalctl`. يتيح هذا الوضع تنفيذ أوامر الشِل عبر `!`.

```bash
/usr/bin/sudo /usr/bin/journalctl -n5 -unostromo.service
```

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

بمجرد الدخول إلى `less` الوضع، أدخل الأمر التالي للحصول على شِل بصلاحيات الجذر:

```bash
!/bin/sh
```

<figure><img src="/files/44cfdc178df602d37ab6bb15518ffa5cf9623b5b" 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/sudoers/sudo-journalctl-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.
