├── .gitignore ├── LICENSE ├── README.md ├── dns.conf.example ├── docker-compose.yml ├── example.com.soa ├── fakedns.py ├── tests ├── Dockerfile └── test.py └── whitelist.dns.conf /.gitignore: -------------------------------------------------------------------------------- 1 | venv/ 2 | __pycache__/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypt0s/FakeDns/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypt0s/FakeDns/HEAD/README.md -------------------------------------------------------------------------------- /dns.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypt0s/FakeDns/HEAD/dns.conf.example -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypt0s/FakeDns/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /example.com.soa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypt0s/FakeDns/HEAD/example.com.soa -------------------------------------------------------------------------------- /fakedns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypt0s/FakeDns/HEAD/fakedns.py -------------------------------------------------------------------------------- /tests/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypt0s/FakeDns/HEAD/tests/Dockerfile -------------------------------------------------------------------------------- /tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypt0s/FakeDns/HEAD/tests/test.py -------------------------------------------------------------------------------- /whitelist.dns.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypt0s/FakeDns/HEAD/whitelist.dns.conf --------------------------------------------------------------------------------