]> git.saurik.com Git - apple/network_cmds.git/blob - unbound/contrib/create_unbound_ad_servers.cmd
network_cmds-596.100.2.tar.gz
[apple/network_cmds.git] / unbound / contrib / create_unbound_ad_servers.cmd
1 @Echo off
2 rem Convert the Yoyo.org anti-ad server listing
3 rem into an unbound dns spoof redirection list.
4 rem Written by Y.Voinov (c) 2014
5
6 rem Note: Wget required!
7
8 rem Variables
9 set prefix="C:\Program Files (x86)"
10 set dst_dir=%prefix%\Unbound
11 set work_dir=%TEMP%
12 set list_addr="http://pgl.yoyo.org/adservers/serverlist.php?hostformat=nohtml&showintro=1&startdate%5Bday%5D=&startdate%5Bmonth%5D=&startdate%5Byear%5D="
13
14 rem Check Wget installed
15 for /f "delims=" %%a in ('where wget') do @set wget=%%a
16 if /I "%wget%"=="" echo Wget not found. If installed, add path to PATH environment variable. & exit 1
17 echo Wget found: %wget%
18
19 "%wget%" -O %work_dir%\yoyo_ad_servers %list_addr%
20
21 del /Q /F /S %dst_dir%\unbound_ad_servers
22
23 for /F "eol=; tokens=*" %%a in (%work_dir%\yoyo_ad_servers) do (
24 echo local-zone: %%a redirect>>%dst_dir%\unbound_ad_servers
25 echo local-data: "%%a A 127.0.0.1">>%dst_dir%\unbound_ad_servers
26 )
27
28 echo Done.
29 rem then add an include line to your unbound.conf pointing to the full path of
30 rem the unbound_ad_servers file:
31 rem
32 rem include: $dst_dir/unbound_ad_servers
33 rem