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

# Varredura de vulnerabilidades web WMAP

{% hint style="info" %}
WMAP é um plugin do Metasploit projetado para realizar testes de penetração em aplicações web, especialmente para descobrir vulnerabilidades específicas de sites. Ele permite que você execute varreduras de segurança automatizadas em alvos web.
{% endhint %}

**Conexão com o Metasploit:** Ao contrário de outras ferramentas, o WMAP não requer uma conexão específica com o Metasploit; ele se integra diretamente ao framework Metasploit para funcionar.

#### Executar uma varredura do WMAP

1. **Carregar o módulo WMAP:** Para começar, é necessário carregar o módulo WMAP no Metasploit com o seguinte comando:

```
load wmap
```

2. **Criar um site-alvo:** Você deve especificar o endereço IP ou o domínio do site a ser testado usando o seguinte comando:

```
wmap_sites -a 10.10.10.10 
```

3. **Apontar para o alvo:** Para definir a URL do site-alvo, use o seguinte comando, que configura a URL para a varredura:

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

4. **Iniciar a varredura de todos os módulos:** Para executar uma varredura completa com todos os módulos do WMAP habilitados, use o comando:

```bash
wmap_run -t
```

* Este comando inicia a varredura usando todos os módulos disponíveis para examinar a aplicação web-alvo em busca de vulnerabilidades.

```bash
wmap_run -e
```

<figure><img src="/files/8982ea4aa11907e2d8f21de898708a07acbb8fc4" 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/pt-br/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.
