mirror of
https://github.com/ookangzheng/blahdns.git
synced 2025-12-17 06:35:38 +07:00
Compare commits
21 Commits
3a133f2f4d
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dc36c72ebe | ||
|
|
4c0a7ff163 | ||
|
|
e896c480f5 | ||
|
|
92831e8bd6 | ||
|
|
960732a401 | ||
|
|
4c68bac571 | ||
|
|
c7bf5e8dd0 | ||
|
|
7f1af0839a | ||
|
|
6000ed7af4 | ||
|
|
6ff63fcdf3 | ||
|
|
b7bf4fcbdf | ||
|
|
c0c8897e39 | ||
|
|
1df04181b1 | ||
|
|
7f69cd8417 | ||
|
|
fd41b7a68c | ||
|
|
bbd3d89ff6 | ||
|
|
4c4726157e | ||
|
|
7fce019b00 | ||
|
|
89ba826a9d | ||
|
|
9623364d87 | ||
|
|
0e42aa343e |
@@ -6,6 +6,8 @@
|
|||||||
|
|
||||||
## Announcements
|
## Announcements
|
||||||
|
|
||||||
|
* Our DNS service has been blocked due to Taiwan RPZ policy
|
||||||
|
* We had migrated SSL CA from Buypass GO to Google CA. (2025/09/27)
|
||||||
* We had migrated DNS Stack to Knot-resolver + dnsdist
|
* We had migrated DNS Stack to Knot-resolver + dnsdist
|
||||||
* Beta support `alfis.name` tld. `.anon, .btn, .conf, .index, .merch, .mirror, .mob, .screen, .srv, .ygg`
|
* Beta support `alfis.name` tld. `.anon, .btn, .conf, .index, .merch, .mirror, .mob, .screen, .srv, .ygg`
|
||||||
* For more old announcements, go [here](https://github.com/zoonderkins/blahdns/issues/36)
|
* For more old announcements, go [here](https://github.com/zoonderkins/blahdns/issues/36)
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
## Android DoT / DoH config
|
## Android DoT / DoH config
|
||||||
|
|
||||||
Go [HERE](https://github.com/ookangzheng/blahdns/blob/master/client-conf/DoT-or-DoH-Android.md)
|
Go [HERE](https://github.com/zoonderkins/blahdns/blob/master/client-conf/DoT-or-DoH-Android.md)
|
||||||
|
|
||||||
## Dnscrypt-proxy
|
## Dnscrypt-proxy
|
||||||
|
|
||||||
Go [HERE](https://github.com/ookangzheng/blahdns/tree/master/client-conf/dnscrypt)
|
Go [HERE](https://github.com/zoonderkins/blahdns/tree/master/client-conf/dnscrypt)
|
||||||
|
|
||||||
## Knot-resolver
|
## Knot-resolver
|
||||||
|
|
||||||
@@ -21,7 +21,7 @@ net.listen({'::1', '127.0.0.1'}, 53)
|
|||||||
cache.size = 100 * MB
|
cache.size = 100 * MB
|
||||||
|
|
||||||
-- Forward queries to Blahdns
|
-- Forward queries to Blahdns
|
||||||
policy.add(policy.all(policy.TLS_FORWARD({{'139.162.112.47@853', hostname='dot-jp.blahdns.com', ca_file='/etc/ssl/certs/ca-certificates.crt'}})))
|
policy.add(policy.all(policy.TLS_FORWARD({{'78.46.244.143@853', hostname='dot-de.blahdns.com', ca_file='/etc/ssl/certs/ca-certificates.crt'}})))
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -31,23 +31,23 @@ Go [HERE](https://github.com/zoonderkins/blahdns/blob/master/client-conf/unbound
|
|||||||
|
|
||||||
## Stubby
|
## Stubby
|
||||||
|
|
||||||
Go [HERE](https://github.com/ookangzheng/blahdns/tree/master/client-conf/stubby)
|
Go [HERE](https://github.com/zoonderkins/blahdns/tree/master/client-conf/stubby)
|
||||||
|
|
||||||
|
|
||||||
## Windows
|
## Windows
|
||||||
Simplednscrypt -> https://simplednscrypt.org/ and install
|
Simplednscrypt -> https://simplednscrypt.org/ and install
|
||||||
|
|
||||||

|

|
||||||

|

|
||||||
|
|
||||||
## Kdig
|
## Kdig
|
||||||
```bash
|
```bash
|
||||||
kdig google.com @dot-jp.blahdns.com +tls
|
kdig google.com @dot-de.blahdns.com +tls
|
||||||
```
|
```
|
||||||
## getdns
|
## getdns
|
||||||
```bash
|
```bash
|
||||||
sudo apt install getdns-utils
|
sudo apt install getdns-utils
|
||||||
getdns_query @139.162.112.47 -s -L -A www.google.com
|
getdns_query @78.46.244.143 -s -L -A www.google.com
|
||||||
```
|
```
|
||||||
|
|
||||||
## Curl
|
## Curl
|
||||||
@@ -59,21 +59,21 @@ curl -H 'accept: application/dns-json' 'https://doh-jp.blahdns.com/dns-query?nam
|
|||||||
```bash
|
```bash
|
||||||
sudo apt install python3-pip python3-setuptools python3-wheel
|
sudo apt install python3-pip python3-setuptools python3-wheel
|
||||||
sudo -H pip3 install doh-proxy
|
sudo -H pip3 install doh-proxy
|
||||||
doh-client --domain doh-jp.blahdns.com --qname google.com --qtype A
|
doh-client --domain doh-de.blahdns.com --qname google.com --qtype A
|
||||||
```
|
```
|
||||||
|
|
||||||
## Linux-systemd
|
## Linux-systemd
|
||||||
```bash
|
```bash
|
||||||
nano /etc/systemd/resolved.conf
|
nano /etc/systemd/resolved.conf
|
||||||
|
|
||||||
DNS=4139.162.112.47
|
DNS=478.46.244.143
|
||||||
DNSOverTLS=opportunistic
|
DNSOverTLS=opportunistic
|
||||||
|
|
||||||
// Save and restart service
|
// Save and restart service
|
||||||
sudo systemctl restart systemd-resolved
|
sudo systemctl restart systemd-resolved
|
||||||
// Check settings
|
// Check settings
|
||||||
resolvectl status
|
resolvectl status
|
||||||
resolvectl query dot-jp.blahdns.com -t A
|
resolvectl query dot-de.blahdns.com -t A
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
## Blocklist use on BlahDNS
|
## Blocklist use on BlahDNS
|
||||||
|
|
||||||
* [Block list sources](https://github.com/ookangzheng/blahdns/raw/master/hosts/source.txt)
|
* [Block list sources](https://github.com/zoonderkins/blahdns/raw/master/hosts/source.txt)
|
||||||
|
|
||||||
* [xiaomi-list](https://gist.github.com/232057d3562bffc31daa7739dfdb4469)
|
* [xiaomi-list](https://gist.github.com/232057d3562bffc31daa7739dfdb4469)
|
||||||
|
|
||||||
@@ -24,11 +24,6 @@
|
|||||||
|
|
||||||
* [lite domain](https://oooo.b-cdn.net/blahdns/lite_domain.txt)
|
* [lite domain](https://oooo.b-cdn.net/blahdns/lite_domain.txt)
|
||||||
|
|
||||||
* Mobile Adblock clients: [Adhell](https://play.google.com/store/apps/details?id=com.getadhell.androidapp&hl=en_US) | [Blokada](https://github.com/blokadaorg/blokada) | [DNSCloak(ios)](https://apps.apple.com/us/app/dnscloak-secure-dns-client/id1452162351) | [DNS66](https://github.com/julian-klode/dns66) | [pDNSf](https://zenz-solutions.de/personaldnsfilter) | [Nebulo](https://github.com/Ch4t4r/Nebulo) | [RethinkDNS + Firewall](https://github.com/celzero/rethink-app)
|
|
||||||
|
|
||||||
**Allow list**
|
|
||||||
|
|
||||||
* [Blockconvert allowlist](https://raw.githubusercontent.com/mkb2091/blockconvert/master/output/whitelist_domains.txt)
|
|
||||||
|
|
||||||
## Useful blocklist (not included)
|
## Useful blocklist (not included)
|
||||||
1. [blocklistproject/Lists](https://github.com/blocklistproject/Lists)
|
1. [blocklistproject/Lists](https://github.com/blocklistproject/Lists)
|
||||||
@@ -38,14 +33,41 @@
|
|||||||
5. [nickspaargaren/no-google](https://raw.githubusercontent.com/nickspaargaren/no-google/master/pihole-google.txt)
|
5. [nickspaargaren/no-google](https://raw.githubusercontent.com/nickspaargaren/no-google/master/pihole-google.txt)
|
||||||
6. [Loyalsoldier/v2ray-rules-dat](https://github.com/Loyalsoldier/v2ray-rules-dat/): [Full adblock list](https://raw.githubusercontent.com/Loyalsoldier/v2ray-rules-dat/release/reject-list.txt) | [Windows spyware / tracker list](https://raw.githubusercontent.com/Loyalsoldier/v2ray-rules-dat/release/win-spy.txt) | [Windows spyware extra list](https://raw.githubusercontent.com/Loyalsoldier/v2ray-rules-dat/release/win-extra.txt)
|
6. [Loyalsoldier/v2ray-rules-dat](https://github.com/Loyalsoldier/v2ray-rules-dat/): [Full adblock list](https://raw.githubusercontent.com/Loyalsoldier/v2ray-rules-dat/release/reject-list.txt) | [Windows spyware / tracker list](https://raw.githubusercontent.com/Loyalsoldier/v2ray-rules-dat/release/win-spy.txt) | [Windows spyware extra list](https://raw.githubusercontent.com/Loyalsoldier/v2ray-rules-dat/release/win-extra.txt)
|
||||||
|
|
||||||
|
## AirVPN blocklist
|
||||||
|
|
||||||
```
|
```
|
||||||
https://airvpn.org/api/dns_lists/?code=air_malware&block=0.0.0.0&style=domains
|
https://airvpn.org/api/dns_lists/?code=air_malware&block=0.0.0.0&style=domains
|
||||||
https://airvpn.org/api/dns_lists/?code=air_cryptojacking&block=0.0.0.0&style=domains
|
https://airvpn.org/api/dns_lists/?code=air_cryptojacking&block=0.0.0.0&style=domains
|
||||||
https://airvpn.org/api/dns_lists/?code=air_ads&block=0.0.0.0&style=domains
|
https://airvpn.org/api/dns_lists/?code=air_ads&block=0.0.0.0&style=domains
|
||||||
|
```
|
||||||
|
|
||||||
|
## Personal
|
||||||
|
```
|
||||||
|
# Web browser ABP style, uBlock Origin
|
||||||
|
https://raw.githubusercontent.com/217heidai/adblockfilters/main/rules/adblockfilters.txt # Recommend
|
||||||
|
https://raw.githubusercontent.com/Cats-Team/AdRules/main/adblock.txt
|
||||||
|
https://raw.githubusercontent.com/Cats-Team/AdRules/main/adblock_plus.txt
|
||||||
|
|
||||||
|
# ABP for Adguard, Adguard home
|
||||||
|
https://raw.githubusercontent.com/217heidai/adblockfilters/main/rules/adblockdnslite.txt # Lite
|
||||||
|
https://raw.githubusercontent.com/217heidai/adblockfilters/main/rules/adblockdns.txt # Recommend
|
||||||
|
https://raw.githubusercontent.com/Cats-Team/AdRules/refs/heads/main/dns.txt # Host style
|
||||||
|
|
||||||
|
# Pihole | Hosts
|
||||||
|
https://raw.githubusercontent.com/217heidai/adblockfilters/main/rules/adblockhosts.txt # Recommend
|
||||||
|
https://raw.githubusercontent.com/217heidai/adblockfilters/main/rules/adblockhostslite.txt
|
||||||
|
|
||||||
|
# Mobile + Browser (ios adguard, android adguard)
|
||||||
|
https://cdn.jsdelivr.net/gh/hagezi/dns-blocklists@latest/adblock/pro.mini.txt # Recommend
|
||||||
|
https://cdn.jsdelivr.net/gh/hagezi/dns-blocklists@latest/wildcard/pro.mini-onlydomains.txt # Host style
|
||||||
|
https://cdn.jsdelivr.net/gh/hagezi/dns-blocklists@latest/adblock/pro.plus.mini.txt
|
||||||
|
https://cdn.jsdelivr.net/gh/hagezi/dns-blocklists@latest/wildcard/pro.plus.mini-onlydomains.txt # Host style
|
||||||
|
|
||||||
|
# Adguard home (others)
|
||||||
|
https://cdn.jsdelivr.net/gh/hagezi/dns-blocklists@latest/adblock/fake.txt # Recommend
|
||||||
|
https://cdn.jsdelivr.net/gh/hagezi/dns-blocklists@latest/adblock/tif.mini.txt # Recommend
|
||||||
|
https://cdn.jsdelivr.net/gh/hagezi/dns-blocklists@latest/wildcard/tif.mini-onlydomains.txt # Hosts style
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
```
|
|
||||||
Thanks a lot as well to everyone creating the original lists I am compiling together.
|
|
||||||
Origin source: https://github.com/ookangzheng/blahdns/raw/master/hosts/source.txt
|
|
||||||
```
|
|
||||||
|
|||||||
@@ -1,11 +1,39 @@
|
|||||||
## This blacklist maintaince by @ookangzheng
|
|
||||||
## Attribution-NonCommercial 4.0 International (CC BY-NC-SA 4.0)
|
# scam invesment in chinese, taiwan
|
||||||
|
## agw-ms 投資
|
||||||
|
app.agw77.com
|
||||||
|
agw77.com
|
||||||
|
ascend-code.com
|
||||||
|
6g93jh.com
|
||||||
|
|
||||||
|
|
||||||
|
smooch.io
|
||||||
|
api.smooch.io
|
||||||
|
cf-main.smooch.io
|
||||||
|
|
||||||
# Apex One Security Agent
|
# Apex One Security Agent
|
||||||
|
|
||||||
|
api-us1.xbc.trendmicro.com
|
||||||
|
api-us2.xbc.trendmicro.com
|
||||||
|
xlogr-ue1.xdr.trendmicro.com
|
||||||
|
upload.xdr.trendmicro.com
|
||||||
|
endpointpolicy-cdn-us1.xbc.trendmicro.com
|
||||||
|
mcs.trendmicro.com
|
||||||
|
xbc.trendmicro.com
|
||||||
icrc.trendmicro.com
|
icrc.trendmicro.com
|
||||||
url.trendmicro.com
|
url.trendmicro.com
|
||||||
|
sqppct.manage.trendmicro.com
|
||||||
|
tmsm350-en.fbs25.trendmicro.com
|
||||||
tmsm35.icrc.trendmicro.com
|
tmsm35.icrc.trendmicro.com
|
||||||
tmsm3-5-en.url.trendmicro.com
|
tmsm3-5-en.url.trendmicro.com
|
||||||
|
a1bz7u2flvp09t-ats.iot.us-east-1.amazonaws.com
|
||||||
|
support-connector-service.manage.trendmicro.com
|
||||||
|
# Python trendmicro
|
||||||
|
edc2munki02.trendmicro.com
|
||||||
|
# Nudge trendmicro
|
||||||
|
edc2mdmdep01.trendmicro.com
|
||||||
|
# CET Agent trendmicro
|
||||||
|
tgw-us1.mgcp.trendmicro.com
|
||||||
|
|
||||||
# AirAsia app
|
# AirAsia app
|
||||||
airasia.gw-dv.vip
|
airasia.gw-dv.vip
|
||||||
|
|||||||
@@ -1,34 +1,34 @@
|
|||||||
|
# Last update 2025-10-07
|
||||||
|
|
||||||
|
# Allowlist
|
||||||
|
https://raw.githubusercontent.com/217heidai/adblockfilters/refs/heads/main/rules/white.txt
|
||||||
|
https://raw.githubusercontent.com/hl2guide/Filterlist-for-AdGuard/master/filter_whitelist.txt
|
||||||
|
|
||||||
|
# Blocklist
|
||||||
|
## General
|
||||||
|
https://abp.oisd.nl
|
||||||
https://raw.githubusercontent.com/AssoEchap/stalkerware-indicators/master/generated/quad9_blocklist.txt
|
https://raw.githubusercontent.com/AssoEchap/stalkerware-indicators/master/generated/quad9_blocklist.txt
|
||||||
https://raw.githubusercontent.com/VeleSila/yhosts/master/hosts
|
|
||||||
https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/hosts/spy.txt
|
https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/hosts/spy.txt
|
||||||
https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/android-tracking.txt
|
https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/android-tracking.txt
|
||||||
https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/SmartTV.txt
|
https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/SmartTV.txt
|
||||||
https://raw.githubusercontent.com/anudeepND/blacklist/master/adservers.txt
|
|
||||||
https://raw.githubusercontent.com/Yhonay/antipopads/master/hosts
|
|
||||||
https://raw.githubusercontent.com/cchevy/macedonian-pi-hole-blocklist/master/hosts.txt
|
|
||||||
https://raw.githubusercontent.com/scafroglia93/blocklists/master/blocklists-main.txt
|
|
||||||
https://raw.githubusercontent.com/cchevy/macedonian-pi-hole-blocklist/master/hosts.txt
|
|
||||||
https://raw.githubusercontent.com/hoshsadiq/adblock-nocoin-list/master/hosts.txt
|
|
||||||
https://raw.githubusercontent.com/ilpl/ad-hosts/master/hosts
|
|
||||||
https://raw.githubusercontent.com/jdlingyu/ad-wars/master/hosts
|
https://raw.githubusercontent.com/jdlingyu/ad-wars/master/hosts
|
||||||
https://raw.githubusercontent.com/hoshsadiq/adblock-nocoin-list/master/hosts.txt
|
|
||||||
https://raw.githubusercontent.com/ilpl/ad-hosts/master/hosts
|
|
||||||
https://raw.githubusercontent.com/joeylane/hosts/master/hosts
|
|
||||||
https://raw.githubusercontent.com/jerryn70/GoodbyeAds/master/Hosts/GoodbyeAds.txt
|
https://raw.githubusercontent.com/jerryn70/GoodbyeAds/master/Hosts/GoodbyeAds.txt
|
||||||
https://raw.githubusercontent.com/jerryn70/GoodbyeAds/master/Extension/GoodbyeAds-LeEco-Extension.txt
|
https://raw.githubusercontent.com/jerryn70/GoodbyeAds/master/Extension/GoodbyeAds-LeEco-Extension.txt
|
||||||
https://raw.githubusercontent.com/jerryn70/GoodbyeAds/master/Extension/GoodbyeAds-Spotify-AdBlock.txt
|
https://raw.githubusercontent.com/jerryn70/GoodbyeAds/master/Extension/GoodbyeAds-Spotify-AdBlock.txt
|
||||||
https://raw.githubusercontent.com/r-a-y/mobile-hosts/master/AdguardMobileSpyware.txt
|
https://raw.githubusercontent.com/r-a-y/mobile-hosts/master/AdguardMobileSpyware.txt
|
||||||
https://raw.githubusercontent.com/Cats-Team/AdRules/main/hosts.txt
|
https://raw.githubusercontent.com/Cats-Team/AdRules/refs/heads/main/dns.txt
|
||||||
|
https://cdn.jsdelivr.net/gh/hagezi/dns-blocklists@latest/hosts/pro.txt
|
||||||
https://hostfiles.frogeye.fr/multiparty-only-trackers.txt
|
https://hostfiles.frogeye.fr/multiparty-only-trackers.txt
|
||||||
https://badmojr.github.io/1Hosts/Lite/adblock.txt
|
https://badmojr.github.io/1Hosts/Lite/adblock.txt
|
||||||
https://rescure.fruxlabs.com/rescure_domain_blacklist.txt
|
|
||||||
http://npc.0am.jp/hosts.php?dl=1
|
http://npc.0am.jp/hosts.php?dl=1
|
||||||
https://abp.oisd.nl
|
|
||||||
https://gitee.com/bigdataleaveme/dontcollectme/raw/master/dontcollectme.txt
|
|
||||||
https://warui.intaa.net/adhosts/hosts.txt
|
https://warui.intaa.net/adhosts/hosts.txt
|
||||||
https://raw.githubusercontent.com/stamparm/blackbook/master/blackbook.txt
|
https://raw.githubusercontent.com/stamparm/blackbook/master/blackbook.txt
|
||||||
|
|
||||||
|
# Scam
|
||||||
|
https://cdn.jsdelivr.net/gh/hagezi/dns-blocklists@latest/adblock/fake.txt
|
||||||
|
https://cdn.jsdelivr.net/gh/hagezi/dns-blocklists@latest/hosts/tif-compressed.txt
|
||||||
|
https://cdn.jsdelivr.net/gh/hagezi/dns-blocklists@latest/adblock/gambling.mini.txt
|
||||||
|
|
||||||
# CNAME cloaking
|
# CNAME cloaking
|
||||||
https://raw.githubusercontent.com/r-a-y/mobile-hosts/master/AdguardCNAME.txt
|
https://raw.githubusercontent.com/r-a-y/mobile-hosts/master/AdguardCNAME.txt
|
||||||
https://raw.githubusercontent.com/r-a-y/mobile-hosts/master/EasyPrivacyCNAME.txt
|
https://raw.githubusercontent.com/r-a-y/mobile-hosts/master/EasyPrivacyCNAME.txt
|
||||||
|
|||||||
@@ -2,6 +2,15 @@
|
|||||||
## Attribution-NonCommercial 4.0 International (CC BY-NC-SA 4.0)
|
## Attribution-NonCommercial 4.0 International (CC BY-NC-SA 4.0)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# apple.com
|
||||||
|
## ios app store
|
||||||
|
tr.iadsdk.apple.com
|
||||||
|
iadsdk.apple.com
|
||||||
|
|
||||||
|
# youtube
|
||||||
|
jnn-pa.googleapis.com
|
||||||
|
|
||||||
## digicert
|
## digicert
|
||||||
ocsp.digicert.com
|
ocsp.digicert.com
|
||||||
|
|
||||||
@@ -20,6 +29,7 @@ ws.metro.taipei
|
|||||||
slackb.com
|
slackb.com
|
||||||
|
|
||||||
# Line
|
# Line
|
||||||
|
api.line.me
|
||||||
# Line Taxi voucher redeem
|
# Line Taxi voucher redeem
|
||||||
app.data-di.com
|
app.data-di.com
|
||||||
# Report ads website not loading
|
# Report ads website not loading
|
||||||
@@ -184,8 +194,13 @@ qq-web.cdn-go.cn
|
|||||||
appcfg.v.qq.com
|
appcfg.v.qq.com
|
||||||
tangram-config.gdt.qq.com
|
tangram-config.gdt.qq.com
|
||||||
|
|
||||||
# QQ
|
# QQ messenger
|
||||||
static-res.qq.com
|
static-res.qq.com
|
||||||
|
d3g.qq.com
|
||||||
|
v.gdt.qq.com
|
||||||
|
rpt.gdt.qq.com
|
||||||
|
tangram-config.gdt.qq.com
|
||||||
|
vv.video.qq.com
|
||||||
|
|
||||||
# Wechat
|
# Wechat
|
||||||
shminorshort.weixin.qq.com
|
shminorshort.weixin.qq.com
|
||||||
@@ -284,6 +299,7 @@ opera.software
|
|||||||
op-cdn.net
|
op-cdn.net
|
||||||
|
|
||||||
# Microsoft
|
# Microsoft
|
||||||
|
substrate.office.com # Teams internal search webpage
|
||||||
activity.windows.com # brake Authenticator backup function
|
activity.windows.com # brake Authenticator backup function
|
||||||
continuum.dds.microsoft.com # Connect your phone to Microsoft windows
|
continuum.dds.microsoft.com # Connect your phone to Microsoft windows
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user