> 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/windows/windows-enumeration.md).

# Enumeración de Windows

### Enumeración de Windows con Metasploit

Para encontrar exploits de escalada de privilegios basados en vulnerabilidades del kernel, podemos usar **multi/recon/local/\_exploit/\_suggester** en Metasploit, un módulo que analiza la versión del kernel para identificar posibles exploits.

```bash
use multi/recon/local_exploit_suggester 
```

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

### Enumeración manual de Windows

{% embed url="<https://github.com/gr33nm0nk2802/Windows-Exploit-Suggester>" %}

Comience por listar la información del sistema con el `systeminfo` comando:

```bash
systeminfo
```

* Copie todos los resultados en un archivo llamado **win.txt**.

<figure><img src="/files/3d1c576f667277dd5ac1e6c3060386a53310ca08" alt=""><figcaption></figcaption></figure>

Use el **windows-exploit-suggester** script para encontrar exploits que coincidan con la versión del sistema:

```bash
./windows-exploit-suggester.py --update 
```

```bash
./windows-exploit-suggester.py --database 2025-03-29-mssb.xls  --systeminfo win.txt 
```

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

* Esto generará una lista de posibles exploits para la máquina objetivo.

### Enumeración con script de PowerShell

> JAWS es un script de PowerShell diseñado para ayudar a los evaluadores de penetración (y a los participantes de CTF) a identificar rápidamente posibles vectores de escalada de privilegios en sistemas Windows. Está escrito en PowerShell 2.0 y, por lo tanto, debería funcionar en todas las versiones de Windows desde Windows 7.

{% embed url="<https://github.com/411Hall/JAWS>" %}

Orden:

{% code overflow="wrap" %}

```
CMD C:/temp> powershell.exe -ExecutionPolicy Bypass -File ./jaws-enum.ps1 -OutputFilename JAWS-Enum.txt
```

{% endcode %}


---

# 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/windows/windows-enumeration.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.
