> 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/hacking-tools/enumeration/nessus-scan-network-and-system.md).

# فحص الشبكة والنظام باستخدام Nessus

## **الفحص باستخدام Nessus:**

{% hint style="info" %}
Nessus هي أداة قوية لفحص الثغرات الأمنية تُجري عمليات فحص متعمقة لاكتشاف الثغرات الأمنية داخل الشبكة أو البنية التحتية لتقنية المعلومات.
{% endhint %}

{% embed url="<https://www.tenable.com/downloads/nessus?loginAttempted=true>" %}

* **منفذ الاستماع**: سيتم تخزين فحص Nessus على `127.0.0.1:8834`.

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

* **خيارات الفحص:**

يوفر Nessus مجموعة واسعة من خيارات الفحص القابلة للتخصيص، مما يتيح لك استهداف الثغرات الأمنية الموجودة بشكل محدد على المضيفين أو الخدمات أو التطبيقات أو حتى أنظمة التشغيل. ويمكن تعديل هذه الخيارات وفقًا لاحتياجات اختبار الاختراق أو التدقيق الأمني.

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

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

<figure><img src="/files/1d77c8e50c09270e403596f0e938eaccbb388182" alt=""><figcaption></figcaption></figure>

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

### تصدير النتائج إلى Metasploit

بمجرد اكتمال فحص Nessus، يمكن تصدير النتائج للتحليل والاستغلال في Metasploit، وهو إطار عمل شائع لاستغلال الثغرات الأمنية.

<figure><img src="/files/48dd7882a7193d571c6643b5b66db71f329db4fb" alt=""><figcaption></figcaption></figure>

لتصدير فحص Nessus إلى Metasploit، اتبع الخطوات التالية:

* **تصدير الفحص:** احفظ ملف نتائج فحص Nessus (عادةً بصيغة `.nessus` ).
* **الاستيراد إلى Metasploit:** استخدم الأمر التالي لاستيراد ملف Nessus إلى قاعدة بيانات Metasploit:

```bash
db_import /home/jordan/Desktop/scan.nessus
```

**عرض معلومات المضيف:** بمجرد استيراد النتائج، يمكنك الحصول على معلومات حول المضيفين الذين تم فحصهم باستخدام الأمر التالي:

```
host 
```

<figure><img src="/files/448560f2da0d06e07f129ddf192a6e89351af220" alt=""><figcaption></figcaption></figure>

**عرض الخدمات المكتشفة:** لعرض الخدمات الضعيفة التي تم العثور عليها على المضيفين، استخدم الأمر:

```
services
```

<figure><img src="/files/89219cde2f924b92d55901884bbbe64d35f6895e" alt=""><figcaption></figcaption></figure>

**عرض الثغرات الأمنية:** يمكنك عرض جميع الثغرات الأمنية المكتشفة باستخدام الأمر:

```
vulnerabilities
```

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

**تصفية الثغرات حسب منفذ محدد:** للبحث عن الثغرات على منفذ معين (على سبيل المثال، المنفذ 445 الخاص بـ SMB)، استخدم الأمر:

<pre class="language-bash"><code class="lang-bash"><strong>vulns -p 445
</strong></code></pre>

<figure><img src="/files/4c01e7d057975ff0796156765e64aed81bf40f25" 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/hacking-tools/enumeration/nessus-scan-network-and-system.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.
