> 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/active-directory/credentials/logon-session-observation.md).

# Anmeldesitzungen beobachten

#### LogonSessions-Tool

Um die auf dem Rechner vorhandenen Verbindungs-Sitzungen zu sehen, verwenden wir das Tool:

```bash
./logonsessions.exe
```

Dieses Tool ermöglicht es Ihnen, die verschiedenen aktiven Sitzungen auf dem System zu beobachten.

Wir können zum Beispiel sehen:

* eine Standardbenutzersitzung;
* eine Administratorsitzung;
* eine Netzwerksitzung;
* eine Dienstsitzung.

<figure><img src="/files/04a8749b83cd9896e7ee46dc92737f8a54a92b76" alt=""><figcaption></figcaption></figure>

#### Zugehörige Prozesse anzeigen

Um Prozesse anzuzeigen, die mit Anmeldesitzungen verknüpft sind:

```bash
./logonsessions.exe -p
```

Das `-p` Die Option ermöglicht es Ihnen, Prozesse mit Anmeldesitzungen zu verknüpfen.

Dies hilft zu verstehen, welche Prozesse welchen Sicherheitskontext verwenden.

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

#### Beispielbeobachtung

Im Labor, wenn sich ein Domänenadministrator mit einer Remote-Freigabe verbindet:

```bash
cd //WS01/c$
```

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

Wir können eine Sitzung des Typs beobachten:

```bash
Anmeldetyp : Netzwerk
Authentifizierungspaket : Kerberos
```

Dies zeigt, dass der Netzwerkzugriff über Kerberos erreicht wurde.

<figure><img src="/files/94c1efb5c6634e908c89028564a5f78a020a5ed8" 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/active-directory/credentials/logon-session-observation.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.
