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

# Escaneo de red y sistemas con Nessus

## **Escanear con Nessus:**

{% hint style="info" %}
Nessus es una potente herramienta de análisis de vulnerabilidades que realiza análisis profundos para detectar vulnerabilidades de seguridad dentro de una red o infraestructura de TI.
{% endhint %}

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

* **Puerto de escucha**: El escaneo de Nessus se almacenará en `127.0.0.1:8834`.

<figure><img src="/files/7973344827588ea7affdd3683229ede45941d409" alt=""><figcaption></figcaption></figure>

* **Opciones de escaneo:**

Nessus ofrece una amplia gama de opciones de escaneo configurables, lo que le permite dirigirse específicamente a vulnerabilidades presentes en hosts, servicios, aplicaciones o incluso sistemas operativos. Estas opciones pueden ajustarse según las necesidades de la prueba de penetración o de la auditoría de seguridad.

<figure><img src="/files/0cbee15cb7dbddf33687c2e439de2a1b4f38d147" alt=""><figcaption></figcaption></figure>

<figure><img src="/files/260f23ec1498ee15883db448bd740d1c73c80484" alt=""><figcaption></figcaption></figure>

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

<figure><img src="/files/6156036480931cd06035f8efb5a38b68eacd38e0" alt=""><figcaption></figcaption></figure>

### Exportar resultados a Metasploit

Una vez completado el escaneo de Nessus, es posible exportar los resultados para su análisis y explotación en Metasploit, un framework popular para explotar vulnerabilidades.

<figure><img src="/files/4b7b12fd3c8969236c84e1d93c887e057a06aa41" alt=""><figcaption></figcaption></figure>

Para exportar el escaneo de Nessus a Metasploit, siga estos pasos:

* **Exportar escaneo:** Guarde el archivo de resultados del escaneo de Nessus (normalmente en `.nessus` formato).
* **Importar en Metasploit:** Use el siguiente comando para importar el archivo de Nessus en la base de datos de Metasploit:

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

**Ver información del host:** Una vez importados los resultados, puede obtener información sobre los hosts analizados con el siguiente comando:

```
host 
```

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

**Listar servicios detectados:** Para ver los servicios vulnerables encontrados en los hosts, use el comando:

```
services
```

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

**Ver vulnerabilidades:** Puede listar todas las vulnerabilidades descubiertas usando el comando:

```
vulnerabilities
```

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

**Filtrar vulnerabilidades por puerto específico:** Para buscar vulnerabilidades en un puerto concreto (por ejemplo, el puerto 445 para SMB), use el comando:

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

<figure><img src="/files/7993f1e392c42342b7a0cb0e53bee10f7af1e8d6" 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/es/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.
