> 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/hacking-tools/web/wmap-scan-web-vulnerabilities.md).

# WMAP فحص ثغرات الويب

{% hint style="info" %}
WMAP هو مكوّن إضافي لـ Metasploit صُمِّم لإجراء اختبار الاختراق على تطبيقات الويب، وبالأخص لاكتشاف الثغرات الخاصة بالمواقع. يتيح لك إجراء عمليات فحص أمنية آلية لأهداف الويب.
{% endhint %}

**الاتصال بـ Metasploit:** على عكس الأدوات الأخرى، لا يتطلب WMAP اتصالًا محددًا بـ Metasploit، بل يندمج مباشرةً في إطار عمل Metasploit ليعمل.

#### تشغيل فحص WMAP

1. **تحميل وحدة WMAP:** للبدء، من الضروري تحميل وحدة WMAP في Metasploit باستخدام الأمر التالي:

```
load wmap
```

2. **إنشاء موقع مستهدف:** يجب تحديد عنوان IP أو نطاق الموقع المراد اختباره باستخدام الأمر التالي:

```
wmap_sites -a 10.10.10.10 
```

3. **تحديد الهدف:** لتعيين عنوان URL للموقع المستهدف، استخدم الأمر التالي، الذي يهيئ عنوان URL لعملية الفحص:

```bash
wmap_target -t http://10.10.10.10/
```

4. **بدء فحص جميع الوحدات:** لتشغيل فحص كامل مع تفعيل جميع وحدات WMAP، استخدم الأمر:

```bash
wmap_run -t
```

* يبدأ هذا الأمر الفحص باستخدام جميع الوحدات المتاحة لفحص تطبيق الويب المستهدف بحثًا عن الثغرات.

```bash
wmap_run -e
```

<figure><img src="/files/e7acdd2ce564becce31ecb5ae4a4b064007923d1" 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/hacking-tools/web/wmap-scan-web-vulnerabilities.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.
