Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jankais3r authored Mar 24, 2019
1 parent e3fc910 commit b8818a6
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,19 @@
# DNoiSe
DNS noise generator that looks at your network activity and blends in. Requires pi-hole.
DNS noise generator that looks at your network activity and blends in. Requires [pi-hole](https://pi-hole.net) to run.

## Why bother?
1. Does your DNS provider log your queries? If it does, you should change your DNS provider. But if you can't, this will make it harder for them to profile you based on your DNS requests. Not impossible, but harder.
2. Plausible deniability.

## Dependencies
```
pip install pandas (raspberry pi users should use 'sudo apt-get install python-pandas' instead)
pip install requests
pip install dnspython
```

## Recommended setup
1. Run this on the same machine that hosts your pi-hole instance.
2. Put this in your `crontab -e` to make it run after reboot
`@reboot /usr/bin/python /home/pi/DNoiSe.py`
3. That's all there is to it. The script will sample network activity every minute and add 10% extra DNS queries made randomly to Cisco's top 1M domain list.

0 comments on commit b8818a6

Please sign in to comment.