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

# Windows-Aufzählung

### Metasploit-Windows-Aufzählung

Um Exploits zur Privilegieneskalation auf Basis von Kernel-Schwachstellen zu finden, können wir **multi/recon/local/\_exploit/\_suggester** in Metasploit, ein Modul, das die Kernel-Version analysiert, um potenzielle Exploits zu identifizieren.

```bash
verwende multi/recon/local_exploit_suggester 
```

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

### Manuelle Windows-Aufzählung

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

Beginnen Sie mit dem Auflisten der Systeminformationen mit dem `systeminfo` Befehl:

```bash
systeminfo
```

* Kopieren Sie alle Ergebnisse in eine Datei namens **win.txt**.

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

Verwenden Sie das **windows-exploit-suggester** Skript, um Exploits zu finden, die zur Systemversion passen:

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

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

<figure><img src="/files/04880c5be253d9bad22d1a614f4340fa22c3bcbd" alt=""><figcaption></figcaption></figure>

* Dies erstellt eine Liste potenzieller Exploits für die Zielmaschine.

### PowerShell-Skript-Aufzählung

> JAWS ist ein PowerShell-Skript, das Penetrationstestern (und CTF-Teilnehmern) dabei helfen soll, potenzielle Privilegieneskalationsvektoren auf Windows-Systemen schnell zu identifizieren. Es ist in PowerShell 2.0 geschrieben und sollte daher auf allen Windows-Versionen seit Windows 7 funktionieren.

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

Reihenfolge:

{% 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/de/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.
