> 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/token-observation-with-process-explorer.md).

# Tokens mit Process Explorer beobachten

#### Process Explorer starten

Wir starten Process Explorer in einer PowerShell-Sitzung mit Administratorrechten:

```powershell
./procexp64.exe
```

Dann öffnen wir außerdem ein `cmd` ohne Administratorrechte.

So können wir Folgendes vergleichen:

* Prozess mit erhöhten Rechten;
* ein Prozess ohne erhöhte Rechte;
* die zugehörigen Token;
* die verfügbaren Privilegien.

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

<figure><img src="/files/8a5e8685f2ef63e561956a1a0fb0a1f67ff966aa" alt=""><figcaption></figcaption></figure>

#### Das Token eines Prozesses überprüfen

In Process Explorer:

```bash
Prozess -> Eigenschaften -> Sicherheit
```

Auf dieser Registerkarte sehen Sie:

* den dem Prozess zugeordneten Benutzer;
* Gruppen;
* Privilegien;
* die Integritätsstufe;
* die Anmeldesitzung.

#### Beispiel im Labor

Beispiele beobachteter Anmeldesitzungen:

```bash
Administrator : Anmeldesitzung 9d72b1
user1          : Anmeldesitzung 955ec3
```

Dies zeigt, dass jede Sitzung ihren eigenen Sicherheitskontext hat.

<figure><img src="/files/1efec4a84a046d324068d317e2596d47a91dfece" 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/token-observation-with-process-explorer.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.
