/usr/sbin/dbab-chk-list is in dbab 1.3.2-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #!/bin/sh
##-----------------------------------------------------------------------
## Porgram: dbab-get-list
## Purpose: Check if our own list is already covered by pgl.yoyo.org
## Authors: Tong Sun (c) 2013
## License: BSD license
##-----------------------------------------------------------------------
dbab_list=/etc/dbab/dbab.list+
block_list=/etc/dnsmasq.d/dbab.adblock.conf
# Check if our trash-sites list is already covered
grep -Ff $dbab_list $block_list
|