> 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/kerberos/kerberos-observation-with-wireshark.md).

# Kerberos mit Wireshark beobachten

### Beobachtung einer Authentifizierung

Wir öffnen Wireshark und verbinden uns dann mit einem Benutzer, zum Beispiel:

```
user1
```

In Wireshark können Sie den Kerberos-Verkehr mit folgendem Filter eingrenzen:

```
kerberos
```

Dann beobachten wir die Austauschvorgänge:

```bash
AS-REQ
AS-REP
TGS-REQ
TGS-REP
```

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

### Beispiel mit Zugriff auf eine Freigabe ohne Berechtigungen

Von `user2`, versuchen wir, auf eine administrative Freigabe zuzugreifen:

```
cd //WS01/C$
```

In Wireshark können wir beobachten:

```
TGS-REQ
TGS-REP
SMB-Zugriff verweigert
```

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

Das bedeutet, dass:

1. der Benutzer ein Service-Ticket anfordert;
2. der KDC das Ticket ausstellt;
3. das Ticket dem Server vorgelegt wird;
4. der Server den Zugriff aufgrund von SMB- oder NTFS-Berechtigungen verweigert.

### Ticket und Authentifikator

Beim Zugriff auf einen Dienst sendet der Client im Allgemeinen:

* ein Service-Ticket;
* einen Authentifikator.

Das Ticket beweist, dass der KDC den Zugriff auf den Dienst autorisiert hat.

Der Authentifikator beweist, dass der Client tatsächlich derjenige ist, der das Ticket verwendet.

<figure><img src="/files/49dd3a28eedb110ac9ef80ee23c918543dca90e5" 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/kerberos/kerberos-observation-with-wireshark.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.
