├── .gitignore ├── LICENSE ├── README.md ├── allow.list ├── create_blocklist_porn.pl ├── install.sh ├── lists ├── pi_blocklist_porn_all.list └── pi_blocklist_porn_top1m.list ├── requirements.txt ├── test └── check_domains.sh └── tools ├── add_domains.sh └── lists ├── black.list └── white.list /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmayfield/my-pihole-blocklists/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmayfield/my-pihole-blocklists/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmayfield/my-pihole-blocklists/HEAD/README.md -------------------------------------------------------------------------------- /allow.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmayfield/my-pihole-blocklists/HEAD/allow.list -------------------------------------------------------------------------------- /create_blocklist_porn.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmayfield/my-pihole-blocklists/HEAD/create_blocklist_porn.pl -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmayfield/my-pihole-blocklists/HEAD/install.sh -------------------------------------------------------------------------------- /lists/pi_blocklist_porn_all.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmayfield/my-pihole-blocklists/HEAD/lists/pi_blocklist_porn_all.list -------------------------------------------------------------------------------- /lists/pi_blocklist_porn_top1m.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmayfield/my-pihole-blocklists/HEAD/lists/pi_blocklist_porn_top1m.list -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | perl 2 | -------------------------------------------------------------------------------- /test/check_domains.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmayfield/my-pihole-blocklists/HEAD/test/check_domains.sh -------------------------------------------------------------------------------- /tools/add_domains.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmayfield/my-pihole-blocklists/HEAD/tools/add_domains.sh -------------------------------------------------------------------------------- /tools/lists/black.list: -------------------------------------------------------------------------------- 1 | # nothing here yet 2 | -------------------------------------------------------------------------------- /tools/lists/white.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmayfield/my-pihole-blocklists/HEAD/tools/lists/white.list --------------------------------------------------------------------------------