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

# WMAP Web-Schwachstellenscanning

{% hint style="info" %}
WMAP ist ein Metasploit-Plugin, das für Penetrationstests an Webanwendungen entwickelt wurde, insbesondere um websitespezifische Schwachstellen aufzudecken. Es ermöglicht Ihnen, automatisierte Sicherheits-Scans auf Web-Zielen durchzuführen.
{% endhint %}

**Verbindung zu Metasploit:** Im Gegensatz zu anderen Tools benötigt WMAP keine spezielle Verbindung zu Metasploit; es integriert sich direkt in das Metasploit-Framework, um zu funktionieren.

#### Einen WMAP-Scan ausführen

1. **Das WMAP-Modul laden:** Zunächst muss das WMAP-Modul in Metasploit mit dem folgenden Befehl geladen werden:

```
load wmap
```

2. **Eine Zielwebsite erstellen:** Sie müssen die IP-Adresse oder die Domain der zu testenden Website mit dem folgenden Befehl angeben:

```
wmap_sites -a 10.10.10.10 
```

3. **Ziel festlegen:** Um die URL der Zielwebsite festzulegen, verwenden Sie den folgenden Befehl, der die URL für den Scan konfiguriert:

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

4. **Mit dem Scannen aller Module beginnen:** Um einen vollständigen Scan mit allen aktivierten WMAP-Modulen auszuführen, verwenden Sie den Befehl:

```bash
wmap_run -t
```

* Dieser Befehl startet den Scan unter Verwendung aller verfügbaren Module, um die Ziel-Webanwendung auf Schwachstellen zu überprüfen.

```bash
wmap_run -e
```

<figure><img src="/files/fa86425765d6d0b6d1fcfb44e271031e310b7e3c" 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/de/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.
