> 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/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/f961f12246b92ec8621bf03dfcfa9afb281333a9" alt=""><figcaption></figcaption></figure>

* **Параметры сканирования:**

Nessus предлагает широкий набор настраиваемых параметров сканирования, позволяя вам целенаправленно выявлять уязвимости на хостах, сервисах, приложениях или даже операционных системах. Эти параметры можно настроить в соответствии с потребностями теста на проникновение или аудита безопасности.

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

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

<figure><img src="/files/35882e6ce341668092a1b9ebefff1625df4a13f5" alt=""><figcaption></figcaption></figure>

<figure><img src="/files/7072541f1a3291c8dcb8215b68c55c22aeec4d9e" alt=""><figcaption></figcaption></figure>

### Экспорт результатов в Metasploit

После завершения сканирования Nessus можно экспортировать результаты для анализа и эксплуатации в Metasploit — популярном фреймворке для эксплуатации уязвимостей.

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

Чтобы экспортировать сканирование Nessus в Metasploit, выполните следующие шаги:

* **Экспортировать сканирование:** Сохраните файл результатов сканирования Nessus (обычно в `.nessus` формате).
* **Импортировать в Metasploit:** Используйте следующую команду, чтобы импортировать файл Nessus в базу данных Metasploit:

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

**Просмотреть информацию об узле:** После импорта результатов вы можете получить информацию о просканированных хостах с помощью следующей команды:

```
host 
```

<figure><img src="/files/01cc9dfb548f1191bb7b274e224a4b9dcb6dc20c" alt=""><figcaption></figcaption></figure>

**Список обнаруженных сервисов:** Чтобы просмотреть уязвимые сервисы, найденные на хостах, используйте команду:

```
services
```

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

**Просмотреть уязвимости:** Вы можете перечислить все обнаруженные уязвимости, используя команду:

```
vulnerabilities
```

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