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

# WMAP Escaneo de vulnerabilidades web

{% hint style="info" %}
WMAP es un complemento de Metasploit diseñado para realizar pruebas de penetración en aplicaciones web, en particular para descubrir vulnerabilidades específicas de sitios web. Permite realizar escaneos de seguridad automatizados en objetivos web.
{% endhint %}

**Conexión con Metasploit:** A diferencia de otras herramientas, WMAP no requiere una conexión específica a Metasploit; se integra directamente en el framework de Metasploit para funcionar.

#### Ejecutar un escaneo WMAP

1. **Cargar el módulo WMAP:** Para comenzar, es necesario cargar el módulo WMAP en Metasploit con el siguiente comando:

```
load wmap
```

2. **Crear un sitio de destino:** Debe especificar la dirección IP o el dominio del sitio a probar usando el siguiente comando:

```
wmap_sites -a 10.10.10.10 
```

3. **Apuntar al destino:** Para establecer la URL del sitio de destino, use el siguiente comando, que configura la URL para el escaneo:

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

4. **Iniciar el escaneo de todos los módulos:** Para ejecutar un análisis completo con todos los módulos WMAP habilitados, use el comando:

```bash
wmap_run -t
```

* Este comando inicia el escaneo utilizando todos los módulos disponibles para analizar la aplicación web objetivo en busca de vulnerabilidades.

```bash
wmap_run -e
```

<figure><img src="/files/9aa740df4976b8b192c77067b11e14fe857fb6c1" 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/es/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.
