You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

279 lines
16 KiB

  1. # dns based ad/abuse domain blocking
  2. ## Description
  3. A lot of people already use adblocker plugins within their desktop browsers, but what if you are using your (smart) phone, tablet, watch or any other wlan gadget...getting rid of annoying ads, trackers and other abuse sites (like facebook ;-) is simple: block them with your router. When the dns server on your router receives dns requests, you will sort out queries that ask for the resource records of ad servers and return a simple 'NXDOMAIN'. This is nothing but **N**on-e**X**istent Internet or Intranet domain name, if domain name is unable to resolved using the dns server, a condition called the 'NXDOMAIN' occurred.
  4. ## Main Features
  5. * support of the following domain block list sources (free for private usage, for commercial use please check their individual licenses):
  6. * [adaway](https://adaway.org)
  7. * => infrequent updates, approx. 400 entries (enabled by default)
  8. * [adguard](https://adguard.com)
  9. * => numerous updates on the same day, approx. 12.000 entries
  10. * [blacklist]()
  11. * => static local blacklist, located by default in '/etc/adblock/adblock.blacklist'
  12. * [disconnect](https://disconnect.me)
  13. * => numerous updates on the same day, approx. 6.500 entries (enabled by default)
  14. * [dshield](http://dshield.org)
  15. * => daily updates, approx. 4.500 entries
  16. * [feodotracker](https://feodotracker.abuse.ch)
  17. * => daily updates, approx. 0-10 entries
  18. * [hphosts](https://hosts-file.net)
  19. * => monthly updates, approx. 50.000 entries
  20. * [malwaredomains](http://malwaredomains.com)
  21. * => daily updates, approx. 16.000 entries
  22. * [malwaredomainlist](http://www.malwaredomainlist.com)
  23. * => daily updates, approx. 1.500 entries
  24. * [openphish](https://openphish.com)
  25. * => numerous updates on the same day, approx. 1.800 entries
  26. * [palevo tracker](https://palevotracker.abuse.ch)
  27. * => daily updates, approx. 15 entries
  28. * [ransomware tracker](https://ransomwaretracker.abuse.ch)
  29. * => daily updates, approx. 150 entries
  30. * [reg_ch](https://easylist-downloads.adblockplus.org/easylistchina+easylist.txt)
  31. * => regional blocklist for China, daily updates, approx. 1.600 entries
  32. * [reg_pl](http://adblocklist.org)
  33. * => regional blocklist for Poland, daily updates, approx. 50 entries
  34. * [reg_ro](https://easylist-downloads.adblockplus.org/rolist+easylist.txt)
  35. * => regional blocklist for Romania, weekly updates, approx. 600 entries
  36. * [reg_ru](https://code.google.com/p/ruadlist)
  37. * => regional blocklist for Russia, weekly updates, approx. 2.000 entries
  38. * [securemecca](http://www.securemecca.com)
  39. * => infrequent updates, approx. 25.000 entries
  40. * [shallalist](http://www.shallalist.de) (categories "adv" "costtraps" "spyware" "tracker" "warez" enabled by default)
  41. * => daily updates, approx. 32.000 entries (a short description of all shallalist categories can be found [online](http://www.shallalist.de/categories.html))
  42. * [spam404](http://www.spam404.com)
  43. * => infrequent updates, approx. 5.000 entries
  44. * [sysctl/cameleon](http://sysctl.org/cameleon)
  45. * => weekly updates, approx. 21.000 entries
  46. * [whocares](http://someonewhocares.org)
  47. * => weekly updates, approx. 12.000 entries
  48. * [winhelp](http://winhelp2002.mvps.org)
  49. * => infrequent updates, approx. 15.000 entries
  50. * [winspy](https://github.com/crazy-max/WindowsSpyBlocker)
  51. * => infrequent updates, approx. 120 entries
  52. * [yoyo](http://pgl.yoyo.org/adservers)
  53. * => weekly updates, approx. 2.500 entries (enabled by default)
  54. * [zeus tracker](https://zeustracker.abuse.ch)
  55. * => daily updates, approx. 440 entries
  56. * zero-conf like automatic installation & setup, usually no manual changes needed
  57. * simple but yet powerful adblock engine: adblock does not use error prone external iptables rulesets, http pixel server instances and things like that
  58. * automatically selects dnsmasq or unbound as dns backend
  59. * automatically selects uclient-fetch or wget as download utility (other tools like curl or aria2c are supported as well)
  60. * automatically supports a wide range of router modes, even AP modes are supported
  61. * full IPv4 and IPv6 support
  62. * supports tld compression (top level domain compression), this feature removes thousands of needless host entries from the block lists and lowers the memory footprint for the dns backends
  63. * each block list source will be updated and processed separately
  64. * block list source parsing by fast & flexible regex rulesets
  65. * overall duplicate removal in separate block lists
  66. * additional whitelist for manual overrides, located by default in /etc/adblock/adblock.whitelist
  67. * quality checks during block list update to ensure a reliable dns backend service
  68. * minimal status & error logging to syslog, enable debug logging to receive more output
  69. * procd based init system support (start/stop/restart/reload/suspend/resume/query)
  70. * procd based hotplug support, the adblock start will be solely triggered by network interface triggers
  71. * suspend & resume adblock actions temporarily without block list reloading
  72. * runtime information via ubus service call
  73. * query function to quickly identify blocked (sub-)domains, e.g. for whitelisting
  74. * optional: automatic block list backup & restore, backups will be (de-)compressed and restored on the fly in case of any runtime error
  75. * optional: add new adblock sources on your own via uci config
  76. ## Prerequisites
  77. * [LEDE project](https://www.lede-project.org), tested with latest stable release (LEDE 17.01) and with current LEDE snapshot
  78. * a usual setup with an enabled dns backend at minimum - dump AP modes without a working dns backend are _not_ supported
  79. * a download utility: full versions (with ssl support) of 'wget', 'uclient-fetch', 'aria2c' or 'curl' are supported
  80. * LEDE 17.01 or LEDE snapshot: use built-in 'uclient-fetch' or download & install the external 'wget' package
  81. * for more configuration options see examples below
  82. ## OpenWrt / LEDE trunk Installation & Usage
  83. * install 'adblock' (_opkg install adblock_) and that's it - the adblock start will be automatically triggered by procd interface triggers
  84. * start/stop/restart/reload/suspend/resume the adblock service manually with _/etc/init.d/adblock_
  85. * enable/disable your favored block list sources in _/etc/config/adblock_ - 'adaway', 'disconnect' and 'yoyo' are enabled by default
  86. ## LuCI adblock companion package
  87. * for easy management of the various block list sources and all other adblock options you can also use a nice & efficient LuCI frontend
  88. * install 'luci-app-adblock' (_opkg install luci-app-adblock_)
  89. * the application is located in LuCI under 'Services' menu
  90. * _Thanks to Hannu Nyman for this great adblock LuCI frontend!_
  91. ## Tweaks
  92. * **runtime information:** the adblock status is available via ubus service call (see example below)
  93. * **debug logging:** for script debugging please set the config option 'adb\_debug' to '1' and check the runtime output with _logread -e "adblock"_
  94. * **storage expansion:** to process and store all block list sources at once it might helpful to enlarge your temp directory with a swap partition => see [openwrt wiki](https://wiki.openwrt.org/doc/uci/fstab) for further details
  95. * **add white- / blacklist entries:** add domain white- or blacklist entries to always-allow or -deny certain (sub) domains, by default both lists are empty and located in _/etc/adblock_. Please add one domain per line - ip addresses, wildcards & regex are _not_ allowed (see example below)
  96. * **backup & restore block lists:** enable this feature, to restore automatically the latest compressed backup of your block lists in case of any processing error (e.g. a single block list source is not available during update). Please use an (external) solid partition and _not_ your volatile router temp directory for this
  97. * **scheduled list updates:** for a scheduled call of the adblock service add an appropriate crontab entry (see example below)
  98. * **restrict procd interface trigger:** restrict the procd interface trigger to a (list of) certain interface(s) (default: wan). To disable it at all, remove all entries
  99. * **suspend & resume adblocking:** to quickly switch the adblock service 'on' or 'off', simply use _/etc/init.d/adblock [suspend|resume]_
  100. * **domain query:** to query the active block lists for a specific domain, please run _/etc/init.d/adblock query `<DOMAIN>`_ (see example below)
  101. * **divert dns requests:** to force dns requests to your local dns resolver add an appropriate firewall rule (see example below)
  102. * **add new list sources:** you could add new block list sources on your own via uci config, all you need is a source url and an awk one-liner (see example below)
  103. * **disable active dns probing in windows 10:** to prevent a yellow exclamation mark on your internet connection icon (which wrongly means connected, but no internet), please change the following registry key/value from "1" to "0" _HKLM\SYSTEM\CurrentControlSet\Services\NlaSvc\Parameters\Internet\EnableActiveProbing_
  104. ## Further adblock config options
  105. * usually the pre-configured adblock setup works quite well and no manual config overrides are needed, all listed options apply to the 'global' config section:
  106. * adb\_enabled => main switch to enable/disable adblock service (default: '1', enabled)
  107. * adb\_debug => enable/disable adblock debug output (default: '0', disabled)
  108. * adb\_iface => set the procd interface trigger to a (list of) lan / wan interface(s) (default: 'wan')
  109. * adb\_fetch => full path to a different download utility, see example below (default: not set, use wget)
  110. * adb\_fetchparm => options for the download utility, see example below (default: not set, use wget options)
  111. ## Examples
  112. **change default dns backend to 'unbound':**
  113. <pre><code>
  114. Adblock detects the presence of an active unbound dns backend and the block lists will be automatically pulled in by unbound.
  115. The adblock script deposits the sorted and filtered block lists in '/var/lib/unbound' where unbound can find them in its jail.
  116. If you use manual configuration for unbound, then just include the following line in your 'server:' clause:
  117. include: "/var/lib/unbound/adb_list.*"
  118. </code></pre>
  119. **configuration for different download utilities:**
  120. <pre><code>
  121. wget (default):
  122. option adb_fetch="/usr/bin/wget"
  123. option adb_fetchparm="--no-config --quiet --no-cache --no-cookies --max-redirect=0 --timeout=10 --no-check-certificate -O"
  124. aria2c:
  125. option adb_fetch '/usr/bin/aria2c'
  126. option adb_fetchparm '-q --timeout=10 --allow-overwrite=true --auto-file-renaming=false --check-certificate=false -o'
  127. uclient-fetch:
  128. option adb_fetch '/bin/uclient-fetch'
  129. option adb_fetchparm '-q --timeout=10 --no-check-certificate -O'
  130. curl:
  131. option adb_fetch '/usr/bin/curl'
  132. option adb_fetchparm '-s --connect-timeout 10 --insecure -o'
  133. </code></pre>
  134. **receive adblock runtime information via ubus:**
  135. <pre><code>
  136. ubus call service get_data '{"name":"adblock"}
  137. This will output the active block lists and other runtime information as JSON, e.g.:
  138. {
  139. "adblock": {
  140. "adblock": {
  141. "active_lists": [
  142. {
  143. "reg_pl": "45",
  144. "blacklist": "144",
  145. "winspy": "138",
  146. "adaway": "379",
  147. "zeus": "399",
  148. "reg_ro": "656",
  149. "reg_ch": "1631",
  150. "yoyo": "2320",
  151. "reg_ru": "2397",
  152. "ransomware": "1681",
  153. "disconnect": "5157",
  154. "adguard": "12799"
  155. }
  156. ],
  157. "adblock_version": "2.5.1",
  158. "blocked_domains": "27746",
  159. "dns_backend": "dnsmasq",
  160. "last_rundate": "04.04.2017 11:02:40",
  161. "system": "LEDE Reboot SNAPSHOT r3904-c3778f2647"
  162. }
  163. }
  164. }
  165. </code></pre>
  166. **cronjob for a regular block list update (/etc/crontabs/root):**
  167. <pre><code>
  168. 0 06 * * * /etc/init.d/adblock start
  169. </code></pre>
  170. **blacklist entry (/etc/adblock/adblock.blacklist):**
  171. <pre><code>
  172. ads.example.com
  173. This entry blocks the following (sub)domains:
  174. http://ads.example.com/foo.gif
  175. http://server1.ads.example.com/foo.gif
  176. https://ads.example.com:8000/
  177. This entry does not block:
  178. http://ads.example.com.ua/foo.gif
  179. http://example.com/
  180. </code></pre>
  181. **whitelist entry (/etc/adblock/adblock.whitelist):**
  182. <pre><code>
  183. here.com
  184. This entry removes the following (sub)domains from the block lists:
  185. maps.here.com
  186. here.com
  187. This entry does not remove:
  188. where.com
  189. www.adwhere.com
  190. </code></pre>
  191. **query active block lists for a certain (sub-)domain, e.g. for whitelisting:**
  192. <pre><code>
  193. /etc/init.d/adblock query example.www.doubleclick.net
  194. ::: distinct results for domain 'example.www.doubleclick.net'
  195. no match
  196. ::: distinct results for domain 'www.doubleclick.net'
  197. adb_list.sysctl : www.doubleclick.net
  198. ::: distinct results for domain 'doubleclick.net'
  199. adb_list.adaway : ad-g.doubleclick.net
  200. adb_list.securemecca : 1168945.fls.doubleclick.net
  201. adb_list.sysctl : 1435575.fls.doubleclick.net
  202. adb_list.whocares : 3ad.doubleclick.net
  203. The query function checks against the submitted (sub-)domain and recurses automatically to the upper top level domain(s).
  204. For every domain it returns the overall count plus a distinct list of active block lists with the first relevant result.
  205. In the example above whitelist "www.doubleclick.net" to free the submitted domain.
  206. </code></pre>
  207. **divert dns requests to local dns resolver in /etc/config/firewall:**
  208. <pre><code>
  209. config redirect
  210. option name 'Divert DNS'
  211. option src 'lan'
  212. option proto 'tcp udp'
  213. option src_dport '53'
  214. option dest_port '53'
  215. option target 'DNAT'
  216. </code></pre>
  217. **add a new block list source:**
  218. <pre><code>
  219. 1. the easy way ...
  220. example: https://easylist-downloads.adblockplus.org/rolist+easylist.txt
  221. adblock already supports an easylist source, called 'ruadlist'. To add the additional local easylist
  222. as a new source, copy the existing config source 'ruadlist' section and change only
  223. the source name, the url and the description - that's all!
  224. config source 'rolist'
  225. option enabled '0'
  226. option adb_src 'https://easylist-downloads.adblockplus.org/rolist+easylist.txt'
  227. option adb_src_rset '{FS=\"[|^]\"} \$0 ~/^\|\|([A-Za-z0-9_-]+\.){1,}[A-Za-z]+\^$/{print tolower(\$3)}'
  228. option adb_src_desc 'focus on romanian ad related domains plus generic easylist additions, weekly updates, approx. 600 entries'
  229. 2. a bit harder ...
  230. to add a really new source with different domain/host format you have to write a suitable
  231. awk one-liner on your own, so basic awk skills are needed. As a starting point check the already
  232. existing awk strings (adb_src_rset) in adblock config, maybe you need only small changes for your individual list.
  233. Download the desired list and test your new awk string locally with:
  234. cat new.list | awk 'fs__individual search__search core__result'
  235. 'fs' => field separator (optional)
  236. 'individual search' => individual search part to filter out needless list information
  237. 'search core' => always '([A-Za-z0-9_-]+\.){1,}[A-Za-z]+', this is part of all list sources and should be unchanged
  238. 'result' => always '{print tolower(\$n)}', only the output column 'n' may vary
  239. the output result should be a sequential list with one domain/host per line - nothing more.
  240. If your awk one-liner works quite well, add a new source section in adblock config and test your new source
  241. </code></pre>
  242. ## Support
  243. Please join the adblock discussion in this [forum thread](https://forum.lede-project.org/t/adblock-2-x-support-thread/507) or contact me by mail <dev@brenken.org>
  244. ## Removal
  245. * stop all adblock related services with _/etc/init.d/adblock stop_
  246. * optional: remove the adblock package (_opkg remove adblock_)
  247. Have fun!
  248. Dirk