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

# Analyse web des vulnérabilités WMAP

{% hint style="info" %}
WMAP est un plugin Metasploit conçu pour effectuer des tests d'intrusion sur des applications web, en particulier pour découvrir des vulnérabilités spécifiques aux sites web. Il vous permet d'effectuer des analyses de sécurité automatisées sur des cibles web.
{% endhint %}

**Connexion à Metasploit :** Contrairement à d'autres outils, WMAP ne nécessite pas de connexion spécifique à Metasploit ; il s'intègre directement au framework Metasploit pour fonctionner.

#### Lancer une analyse WMAP

1. **Charger le module WMAP :** Pour commencer, il est nécessaire de charger le module WMAP dans Metasploit avec la commande suivante :

```
load wmap
```

2. **Créer un site cible :** Vous devez spécifier l'adresse IP ou le domaine du site à tester à l'aide de la commande suivante :

```
wmap_sites -a 10.10.10.10 
```

3. **Pointer vers la cible :** Pour définir l'URL du site cible, utilisez la commande suivante, qui configure l'URL pour l'analyse :

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

4. **Démarrer l'analyse de tous les modules :** Pour lancer une analyse complète avec tous les modules WMAP activés, utilisez la commande :

```bash
wmap_run -t
```

* Cette commande démarre l'analyse en utilisant tous les modules disponibles afin d'examiner l'application web cible à la recherche de vulnérabilités.

```bash
wmap_run -e
```

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