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

# Nessus Netzwerk- und Systemscanning

## **Mit Nessus scannen:**

{% hint style="info" %}
Nessus ist ein leistungsstarkes Tool zum Scannen von Schwachstellen, das eingehende Scans durchführt, um Sicherheitslücken innerhalb eines Netzwerks oder einer IT-Infrastruktur zu erkennen.
{% endhint %}

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

* **Lauschport**: Der Nessus-Scan wird auf `127.0.0.1:8834`.

<figure><img src="/files/26f7bacbe816413ad2e879b88c7c43491e690770" alt=""><figcaption></figcaption></figure>

* **Scan-Optionen:**

Nessus bietet eine breite Palette konfigurierbarer Scan-Optionen, mit denen Sie gezielt nach Schwachstellen auf Hosts, Diensten, Anwendungen oder sogar Betriebssystemen suchen können. Diese Optionen können je nach den Anforderungen des Penetrationstests oder Sicherheitsaudits angepasst werden.

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

<figure><img src="/files/76a9345282c0693259d897e0acf549d03edb645a" alt=""><figcaption></figcaption></figure>

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

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

### Ergebnisse nach Metasploit exportieren

Sobald der Nessus-Scan abgeschlossen ist, können die Ergebnisse zur Analyse und Ausnutzung in Metasploit exportiert werden, einem beliebten Framework zum Ausnutzen von Schwachstellen.

<figure><img src="/files/59e7ab4eadad46c6d5eac696c1f63e7c4185d95e" alt=""><figcaption></figcaption></figure>

Um den Nessus-Scan nach Metasploit zu exportieren, befolgen Sie diese Schritte:

* **Scan exportieren:** Speichern Sie die Nessus-Scan-Ergebnisdatei (üblicherweise im `.nessus` Format).
* **In Metasploit importieren:** Verwenden Sie den folgenden Befehl, um die Nessus-Datei in die Metasploit-Datenbank zu importieren:

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

**Host-Informationen anzeigen:** Sobald die Ergebnisse importiert wurden, können Sie mit dem folgenden Befehl Informationen zu den gescannten Hosts abrufen:

```
host 
```

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

**Erkannte Dienste auflisten:** Um anfällige Dienste auf Hosts anzuzeigen, verwenden Sie den Befehl:

```
services
```

<figure><img src="/files/9a018cdf969fb1255985268c1ef195b9f4348d85" alt=""><figcaption></figcaption></figure>

**Schwachstellen anzeigen:** Sie können alle gefundenen Schwachstellen mit dem Befehl auflisten:

```
vulnerabilities
```

<figure><img src="/files/31cde86eaaa2a3ed445cb6b0472bbb7705ab3257" alt=""><figcaption></figcaption></figure>

**Schwachstellen nach bestimmtem Port filtern:** Um nach Schwachstellen auf einem bestimmten Port zu suchen (zum Beispiel Port 445 für SMB), verwenden Sie den Befehl:

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

<figure><img src="/files/2adc6696cf468fc1e4eec74cddc1a47f72a23ead" 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/de/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.
