mirror of
https://github.com/asdlokj1qpi233/subconverter.git
synced 2025-10-27 20:03:01 +00:00
Enhancements
Fix compatibility with some non-standard ShadowsocksR subscription. Add local rulesets from ConnersHua, lhie1 and NobyDa. Add support for conversion of some nodes between Shadowsocks and ShadowsocksR format. Add some build scripts. Optimize default groups and rulesets. Optimize Gist uploader. Optimize codes and performance.
This commit is contained in:
@@ -34,5 +34,5 @@ g++ -Wall -std=c++17 -fexceptions -DCURL_STATICLIB -c webget.cpp -o obj\webget.o
|
||||
g++ -Wall -std=c++17 -fexceptions -DCURL_STATICLIB -c webserver_libevent.cpp -o obj\webserver_libevent.o
|
||||
g++ -o subconverter obj\logger.o obj\main.o obj\misc.o obj\nodemanip.o obj\rapidjson_extra.o obj\speedtestutil.o obj\subexport.o obj\webget.o obj\webserver_libevent.o -static -levent -lyaml-cpp -lcurl -lssl -lcrypto -lz -lbz2 -ldl -lpthread -O3 -s
|
||||
|
||||
chmod +rx subconverter pref.ini *.yml
|
||||
tar czf subconverter_linux64.tar.gz subconverter pref.ini *.yml
|
||||
chmod +rx subconverter pref.ini *.yml *.conf rules/*
|
||||
tar czf subconverter_linux64.tar.gz subconverter pref.ini *.yml *.conf rules/
|
||||
|
||||
17
build.clang.sh
Normal file
17
build.clang.sh
Normal file
@@ -0,0 +1,17 @@
|
||||
#!/bin/bash
|
||||
mkdir obj
|
||||
|
||||
set -xe
|
||||
|
||||
c++ -D_MACOS -Wall -fexceptions -c logger.cpp -o obj/logger.o
|
||||
c++ -D_MACOS -Wall -fexceptions -c main.cpp -o obj/main.o
|
||||
c++ -D_MACOS -Wall -fexceptions -c misc.cpp -o obj/misc.o
|
||||
c++ -D_MACOS -Wall -fexceptions -c nodemanip.cpp -o obj/nodemanip.o
|
||||
c++ -D_MACOS -Wall -fexceptions -c rapidjson_extra.cpp -o obj/rapidjson_extra.o
|
||||
c++ -D_MACOS -Wall -fexceptions -c speedtestutil.cpp -o obj/speedtestutil.o
|
||||
c++ -D_MACOS -Wall -fexceptions -c subexport.cpp -o obj/subexport.o
|
||||
c++ -D_MACOS -Wall -fexceptions -c webget.cpp -o obj/webget.o
|
||||
c++ -D_MACOS -Wall -fexceptions -c webserver_libevent.cpp -o obj/webserver_libevent.o
|
||||
c++ -o subconverter obj/logger.o obj/main.o obj/misc.o obj/nodemanip.o obj/rapidjson_extra.o obj/speedtestutil.o obj/subexport.o obj/webget.o obj/webserver_libevent.o -levent -lpthread -lyaml-cpp -lcurl -lssl -lcrypto -lz -O3 -s
|
||||
|
||||
chmod +x subconverter
|
||||
@@ -34,7 +34,7 @@ c++ -Wall -std=c++17 -fexceptions -DCURL_STATICLIB -D_MACOS -I/usr/local/include
|
||||
c++ -Wall -std=c++17 -fexceptions -DCURL_STATICLIB -D_MACOS -I/usr/local/include -I/usr/local/opt/openssl@1.1/include -I/usr/local/opt/curl/include -c webserver_libevent.cpp -o obj\webserver_libevent.o
|
||||
c++ -Xlinker -unexported_symbol -Xlinker "*" -o subconverter obj\logger.o obj\main.o obj\misc.o obj\nodemanip.o obj\rapidjson_extra.o obj\speedtestutil.o obj\subexport.o obj\webget.o obj\webserver_libevent.o libevent.a curl/lib/.libs/libcurl.a libz.a libssl.a libcrypto.a libyaml-cpp.a bzip2-1.0.6/libbz2.a -ldl -lpthread -O3 -s
|
||||
|
||||
chmod +rx subconverter pref.ini *.yml
|
||||
tar czf subconverter_darwin64.tar.gz subconverter pref.ini *.yml
|
||||
chmod +rx subconverter pref.ini *.yml *.conf rules/*
|
||||
tar czf subconverter_darwin64.tar.gz subconverter pref.ini *.yml *.conf rules/
|
||||
|
||||
set +xe
|
||||
|
||||
17
config.termux.sh
Normal file
17
config.termux.sh
Normal file
@@ -0,0 +1,17 @@
|
||||
#!/bin/bash
|
||||
set -xe
|
||||
|
||||
apt update
|
||||
apt install git cmake clang
|
||||
apt isntall libevent libcurl openssl
|
||||
|
||||
git clone https://github.com/jbeder/yaml-cpp
|
||||
cd yaml-cpp
|
||||
cmake -DCMAKE_INSTALL_PREFIX=/data/data/com.termux/files/usr .
|
||||
make install -j3
|
||||
cd ..
|
||||
|
||||
git clone https://github.com/tencent/rapidjson
|
||||
cd rapidjson
|
||||
cp -r include/* /data/data/com.termux/files/usr/include/
|
||||
cd ..
|
||||
@@ -718,7 +718,7 @@ public:
|
||||
content += "\n";
|
||||
}
|
||||
|
||||
return content;
|
||||
return content.substr(0, content.size() - 2);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
39
main.cpp
39
main.cpp
@@ -92,11 +92,11 @@ std::string refreshRulesets()
|
||||
std::cerr<<"Updating ruleset url '"<<rule_url<<"' with group '"<<rule_group<<"'."<<std::endl;
|
||||
if(fileExist(rule_url))
|
||||
{
|
||||
rc = {rule_group, fileGet(rule_url, false)};
|
||||
rc = {rule_group, rule_url, fileGet(rule_url, false)};
|
||||
}
|
||||
else
|
||||
{
|
||||
rc = {rule_group, webGet(rule_url, proxy)};
|
||||
rc = {rule_group, rule_url, webGet(rule_url, proxy)};
|
||||
}
|
||||
}
|
||||
if(rc.rule_content.size())
|
||||
@@ -192,13 +192,16 @@ void readConf()
|
||||
|
||||
std::string subconverter(RESPONSE_CALLBACK_ARGS)
|
||||
{
|
||||
if(!api_mode)
|
||||
readConf();
|
||||
std::string target = getUrlArg(argument, "target"), url = UrlDecode(getUrlArg(argument, "url")), include = UrlDecode(getUrlArg(argument, "regex"));
|
||||
std::string group = UrlDecode(getUrlArg(argument, "group")), upload = getUrlArg(argument, "upload"), version = getUrlArg(argument, "ver");
|
||||
std::string group = UrlDecode(getUrlArg(argument, "group")), upload = getUrlArg(argument, "upload"), upload_path = getUrlArg(argument, "upload_path"), version = getUrlArg(argument, "ver");
|
||||
std::string base_content, output_content;
|
||||
if(!url.size())
|
||||
url = default_url;
|
||||
if(!url.size() || !target.size())
|
||||
return "Invalid request!";
|
||||
if(!api_mode)
|
||||
readConf();
|
||||
|
||||
string_array urls = split(url, "|");
|
||||
std::vector<nodeInfo> nodes;
|
||||
int groupID = 0;
|
||||
@@ -215,8 +218,8 @@ std::string subconverter(RESPONSE_CALLBACK_ARGS)
|
||||
addNodes(x, nodes, groupID);
|
||||
groupID++;
|
||||
}
|
||||
if(!target.size())
|
||||
return std::string();
|
||||
if(!nodes.size())
|
||||
return "No nodes were found!";
|
||||
|
||||
std::cerr<<"Generate target: ";
|
||||
if(target == "clash" || target == "clashr")
|
||||
@@ -231,7 +234,7 @@ std::string subconverter(RESPONSE_CALLBACK_ARGS)
|
||||
refreshRulesets();
|
||||
output_content = netchToClash(nodes, base_content, ruleset_content_array, clash_extra_group, target == "clashr");
|
||||
if(upload == "true")
|
||||
uploadGist("clash", output_content, false);
|
||||
uploadGist("clash", upload_path, output_content, false);
|
||||
return output_content;
|
||||
}
|
||||
else if(target == "surge")
|
||||
@@ -243,9 +246,9 @@ std::string subconverter(RESPONSE_CALLBACK_ARGS)
|
||||
else
|
||||
base_content = webGet(surge_rule_base, getSystemProxy());
|
||||
|
||||
output_content = netchToSurge(nodes, base_content, rulesets, clash_extra_group, surge_ver);
|
||||
output_content = netchToSurge(nodes, base_content, ruleset_content_array, clash_extra_group, surge_ver);
|
||||
if(upload == "true")
|
||||
uploadGist("surge" + version, output_content, true);
|
||||
uploadGist("surge" + version, upload_path, output_content, true);
|
||||
|
||||
if(write_managed_config && managed_config_prefix.size())
|
||||
output_content = "#!MANAGED-CONFIG " + managed_config_prefix + "/sub?" + argument + "\n\n" + output_content;
|
||||
@@ -259,9 +262,9 @@ std::string subconverter(RESPONSE_CALLBACK_ARGS)
|
||||
else
|
||||
base_content = webGet(surfboard_rule_base, getSystemProxy());
|
||||
|
||||
output_content = netchToSurge(nodes, base_content, rulesets, clash_extra_group, 2);
|
||||
output_content = netchToSurge(nodes, base_content, ruleset_content_array, clash_extra_group, 2);
|
||||
if(upload == "true")
|
||||
uploadGist("surfboard", output_content, true);
|
||||
uploadGist("surfboard", upload_path, output_content, true);
|
||||
|
||||
if(write_managed_config && managed_config_prefix.size())
|
||||
output_content = "#!MANAGED-CONFIG " + managed_config_prefix + "/sub?" + argument + "\n\n" + output_content;
|
||||
@@ -272,7 +275,7 @@ std::string subconverter(RESPONSE_CALLBACK_ARGS)
|
||||
std::cerr<<"SS"<<std::endl;
|
||||
output_content = netchToSS(nodes);
|
||||
if(upload == "true")
|
||||
uploadGist("ss", output_content, false);
|
||||
uploadGist("ss", upload_path, output_content, false);
|
||||
return output_content;
|
||||
}
|
||||
else if(target == "ssr")
|
||||
@@ -280,7 +283,7 @@ std::string subconverter(RESPONSE_CALLBACK_ARGS)
|
||||
std::cerr<<"SSR"<<std::endl;
|
||||
output_content = netchToSSR(nodes);
|
||||
if(upload == "true")
|
||||
uploadGist("ssr", output_content, false);
|
||||
uploadGist("ssr", upload_path, output_content, false);
|
||||
return output_content;
|
||||
}
|
||||
else if(target == "v2ray")
|
||||
@@ -288,7 +291,7 @@ std::string subconverter(RESPONSE_CALLBACK_ARGS)
|
||||
std::cerr<<"v2rayN"<<std::endl;
|
||||
output_content = netchToVMess(nodes);
|
||||
if(upload == "true")
|
||||
uploadGist("v2ray", output_content, false);
|
||||
uploadGist("v2ray", upload_path, output_content, false);
|
||||
return output_content;
|
||||
}
|
||||
else if(target == "quan")
|
||||
@@ -296,7 +299,7 @@ std::string subconverter(RESPONSE_CALLBACK_ARGS)
|
||||
std::cerr<<"Quantumult"<<std::endl;
|
||||
output_content = netchToQuan(nodes);
|
||||
if(upload == "true")
|
||||
uploadGist("quan", output_content, false);
|
||||
uploadGist("quan", upload_path, output_content, false);
|
||||
return output_content;
|
||||
}
|
||||
else if(target == "quanx")
|
||||
@@ -304,7 +307,7 @@ std::string subconverter(RESPONSE_CALLBACK_ARGS)
|
||||
std::cerr<<"Quantumult X"<<std::endl;
|
||||
output_content = netchToQuanX(nodes);
|
||||
if(upload == "true")
|
||||
uploadGist("quanx", output_content, false);
|
||||
uploadGist("quanx", upload_path, output_content, false);
|
||||
return output_content;
|
||||
}
|
||||
else if(target == "ssd")
|
||||
@@ -312,7 +315,7 @@ std::string subconverter(RESPONSE_CALLBACK_ARGS)
|
||||
std::cerr<<"SSD"<<std::endl;
|
||||
output_content = netchToSSD(nodes, group);
|
||||
if(upload == "true")
|
||||
uploadGist("ssd", output_content, false);
|
||||
uploadGist("ssd", upload_path, output_content, false);
|
||||
return output_content;
|
||||
}
|
||||
else
|
||||
|
||||
55
pref.ini
55
pref.ini
@@ -77,7 +77,7 @@ rename_node=\(?((x|X)?(\d+)(\.?\d+)?)((\s?倍率?)|(x|X))\)?@$1x
|
||||
|
||||
[managed_config]
|
||||
;Append a '#!MANAGED-CONFIG' info to Surge configurations
|
||||
write_managed_config=false
|
||||
write_managed_config=true
|
||||
|
||||
;Address prefix for MANAGED-CONFIG info, without the trailing "/".
|
||||
managed_config_prefix=http://127.0.0.1:25500
|
||||
@@ -137,21 +137,33 @@ update_ruleset_on_request=false
|
||||
;Format: Group name,URL
|
||||
; Group name,[]Rule
|
||||
|
||||
surge_ruleset=DIRECT,https://raw.githubusercontent.com/ConnersHua/Profiles/master/Surge/Ruleset/Unbreak.list
|
||||
surge_ruleset=⛔️ 广告拦截,https://raw.githubusercontent.com/ConnersHua/Profiles/master/Surge/Ruleset/Advertising.list
|
||||
surge_ruleset=🚫 运营劫持,https://raw.githubusercontent.com/ConnersHua/Profiles/master/Surge/Ruleset/Hijacking.list
|
||||
surge_ruleset=🌌 YouTube,https://raw.githubusercontent.com/ConnersHua/Profiles/master/Surge/Ruleset/Media/YouTube.list
|
||||
surge_ruleset=🎥 NETFLIX,https://raw.githubusercontent.com/ConnersHua/Profiles/master/Surge/Ruleset/Media/Netflix.list
|
||||
;surge_ruleset=DIRECT,https://raw.githubusercontent.com/ConnersHua/Profiles/master/Surge/Ruleset/Unbreak.list
|
||||
;surge_ruleset=⛔️ 广告拦截,https://raw.githubusercontent.com/ConnersHua/Profiles/master/Surge/Ruleset/Advertising.list
|
||||
;surge_ruleset=🚫 运营劫持,https://raw.githubusercontent.com/ConnersHua/Profiles/master/Surge/Ruleset/Hijacking.list
|
||||
;surge_ruleset=🌌 YouTube,https://raw.githubusercontent.com/ConnersHua/Profiles/master/Surge/Ruleset/Media/YouTube.list
|
||||
;surge_ruleset=🎥 NETFLIX,https://raw.githubusercontent.com/ConnersHua/Profiles/master/Surge/Ruleset/Media/Netflix.list
|
||||
;surge_ruleset=HBO,https://raw.githubusercontent.com/ConnersHua/Profiles/master/Surge/Ruleset/Media/HBO.list
|
||||
;surge_ruleset=Fox,https://raw.githubusercontent.com/ConnersHua/Profiles/master/Surge/Ruleset/Media/Fox.list
|
||||
surge_ruleset=🌍 国外媒体,https://raw.githubusercontent.com/ConnersHua/Profiles/master/Surge/Ruleset/GlobalMedia.list
|
||||
surge_ruleset=🌏 港台媒体,https://raw.githubusercontent.com/ConnersHua/Profiles/master/Surge/Ruleset/HKMTMedia.list
|
||||
surge_ruleset=📲 电报信息,https://raw.githubusercontent.com/ConnersHua/Profiles/master/Surge/Ruleset/Telegram.list
|
||||
surge_ruleset=🔰 节点选择,https://raw.githubusercontent.com/ConnersHua/Profiles/master/Surge/Ruleset/Global.list
|
||||
surge_ruleset=🍎 苹果服务,https://raw.githubusercontent.com/ConnersHua/Profiles/master/Surge/Ruleset/Apple.list
|
||||
surge_ruleset=DIRECT,https://raw.githubusercontent.com/ConnersHua/Profiles/master/Surge/Ruleset/China.list
|
||||
surge_ruleset=DIRECT,[]GEOIP,CN
|
||||
surge_ruleset=💕 规则自选,[]MATCH
|
||||
;surge_ruleset=🌍 国外媒体,https://raw.githubusercontent.com/ConnersHua/Profiles/master/Surge/Ruleset/GlobalMedia.list
|
||||
;surge_ruleset=🌏 港台媒体,https://raw.githubusercontent.com/ConnersHua/Profiles/master/Surge/Ruleset/HKMTMedia.list
|
||||
;surge_ruleset=📲 电报信息,https://raw.githubusercontent.com/ConnersHua/Profiles/master/Surge/Ruleset/Telegram.list
|
||||
;surge_ruleset=🔰 节点选择,https://raw.githubusercontent.com/ConnersHua/Profiles/master/Surge/Ruleset/Global.list
|
||||
;surge_ruleset=🍎 苹果服务,https://raw.githubusercontent.com/ConnersHua/Profiles/master/Surge/Ruleset/Apple.list
|
||||
;surge_ruleset=DIRECT,https://raw.githubusercontent.com/ConnersHua/Profiles/master/Surge/Ruleset/China.list
|
||||
|
||||
surge_ruleset=🎯 全球直连,rules/ConnersHua/Surge/Ruleset/Unbreak.list
|
||||
surge_ruleset=🛑 全球拦截,rules/NobyDa/Surge/AdRule.list
|
||||
surge_ruleset=🛑 全球拦截,rules/ConnersHua/Surge/Ruleset/Hijacking.list
|
||||
surge_ruleset=🎥 NETFLIX,rules/ConnersHua/Surge/Ruleset/Media/Netflix.list
|
||||
surge_ruleset=🌍 国外媒体,rules/ConnersHua/Surge/Ruleset/GlobalMedia.list
|
||||
surge_ruleset=🌏 国内媒体,rules/lhie1/Surge3/Domestic.list
|
||||
surge_ruleset=📲 电报信息,rules/ConnersHua/Surge/Ruleset/Telegram.list
|
||||
surge_ruleset=🔰 节点选择,rules/ConnersHua/Surge/Ruleset/Global.list
|
||||
surge_ruleset=🍎 苹果服务,rules/ConnersHua/Surge/Ruleset/Apple.list
|
||||
surge_ruleset=🎯 全球直连,rules/ConnersHua/Surge/Ruleset/China.list
|
||||
surge_ruleset=🎯 全球直连,rules/NobyDa/Surge/Download.list
|
||||
surge_ruleset=🎯 全球直连,[]GEOIP,CN
|
||||
surge_ruleset=🐟 漏网之鱼,[]MATCH
|
||||
|
||||
[clash_proxy_group]
|
||||
;Generate Clash Proxy Group with the following patterns. Node filterting rule supports regular expression.
|
||||
@@ -183,20 +195,19 @@ surge_ruleset=💕 规则自选,[]MATCH
|
||||
;custom_proxy_group=UnblockNeteaseMusic`select`云音乐解锁`[]DIRECT
|
||||
;custom_proxy_group=Telegram`select`新加坡`[]Proxy
|
||||
|
||||
;for DivineEngine_Profiles
|
||||
;for Surge rulesets
|
||||
custom_proxy_group=🔰 节点选择`select`[]♻️ 自动选择`[]🎯 全球直连`.*
|
||||
custom_proxy_group=♻️ 自动选择`url-test`.*`http://www.gstatic.com/generate_204`300
|
||||
custom_proxy_group=🌌 YouTube`select`[]🔰 节点选择`[]♻️ 自动选择`[]🎯 全球直连`.*
|
||||
custom_proxy_group=🎥 NETFLIX`select`[]🔰 节点选择`[]♻️ 自动选择`[]🎯 全球直连`.*
|
||||
custom_proxy_group=⛔️ 广告拦截`select`[]🛑 全球拦截`[]🎯 全球直连`[]🔰 节点选择
|
||||
custom_proxy_group=🚫 运营劫持`select`[]🛑 全球拦截`[]🎯 全球直连`[]🔰 节点选择
|
||||
;custom_proxy_group=⛔️ 广告拦截`select`[]🛑 全球拦截`[]🎯 全球直连`[]🔰 节点选择
|
||||
;custom_proxy_group=🚫 运营劫持`select`[]🛑 全球拦截`[]🎯 全球直连`[]🔰 节点选择
|
||||
custom_proxy_group=🌍 国外媒体`select`[]♻️ 自动选择`[]🎯 全球直连`.*
|
||||
custom_proxy_group=🌏 港台媒体`select`(HGC|HKBN|PCCW|HKT|深台|彰化|新北|台|hk|香港|tw)`[]🔰 节点选择`[]DIRECT
|
||||
custom_proxy_group=📲 电报信息`select`[]🔰 节点选择`[]♻️ 自动选择`[]DIRECT`(美|新加坡|sg|us)`.*
|
||||
custom_proxy_group=🌏 国内媒体`select`[]🎯 全球直连`(HGC|HKBN|PCCW|HKT|深台|彰化|新北|台|hk|香港|tw)`[]🔰 节点选择
|
||||
custom_proxy_group=📲 电报信息`select`(美|新加坡|sg|us)`[]🔰 节点选择
|
||||
custom_proxy_group=🍎 苹果服务`select`[]🔰 节点选择`[]🎯 全球直连`[]♻️ 自动选择`.*
|
||||
custom_proxy_group=💕 规则自选`select`[]🔰 节点选择`[]🎯 全球直连`[]♻️ 自动选择`.*
|
||||
custom_proxy_group=🎯 全球直连`select`[]DIRECT
|
||||
custom_proxy_group=🛑 全球拦截`select`[]REJECT
|
||||
custom_proxy_group=🛑 全球拦截`select`[]REJECT`[]DIRECT
|
||||
custom_proxy_group=🐟 漏网之鱼`select`[]🔰 节点选择`[]🎯 全球直连`[]♻️ 自动选择`.*
|
||||
|
||||
[server]
|
||||
;Address to bind on for Web Server
|
||||
|
||||
891
rules/ConnersHua/Surge/Ruleset/Advertising.list
Normal file
891
rules/ConnersHua/Surge/Ruleset/Advertising.list
Normal file
@@ -0,0 +1,891 @@
|
||||
# Advertising 广告(以及隐私追踪)
|
||||
# > General
|
||||
DOMAIN-KEYWORD,adservice
|
||||
DOMAIN-KEYWORD,analytics
|
||||
DOMAIN-KEYWORD,analysis
|
||||
|
||||
DOMAIN-SUFFIX,42trck.com
|
||||
DOMAIN-SUFFIX,51.la
|
||||
DOMAIN-SUFFIX,adcolony.com
|
||||
DOMAIN-SUFFIX,adinfuse.com
|
||||
DOMAIN-SUFFIX,adjust.com
|
||||
DOMAIN-SUFFIX,adjust.io
|
||||
DOMAIN-SUFFIX,admaster.com.cn
|
||||
DOMAIN-SUFFIX,admob.com
|
||||
DOMAIN-SUFFIX,adnxs.com
|
||||
DOMAIN-SUFFIX,adnyg.com
|
||||
DOMAIN-SUFFIX,adsensor.org
|
||||
DOMAIN-SUFFIX,adtarget.tech
|
||||
DOMAIN-SUFFIX,adthor.com
|
||||
DOMAIN-SUFFIX,adwhirl.com
|
||||
DOMAIN-SUFFIX,amazon-adsystem.com
|
||||
DOMAIN-SUFFIX,amobee.com
|
||||
DOMAIN-SUFFIX,analysys.cn
|
||||
DOMAIN-SUFFIX,app-adforce.jp
|
||||
DOMAIN-SUFFIX,appads.com
|
||||
DOMAIN-SUFFIX,appcpi.net
|
||||
DOMAIN-SUFFIX,appier.net
|
||||
DOMAIN-SUFFIX,applift.com
|
||||
DOMAIN-SUFFIX,applovin.com
|
||||
DOMAIN-SUFFIX,applvn.com
|
||||
DOMAIN-SUFFIX,appsflyer.com
|
||||
DOMAIN-SUFFIX,apsalar.com
|
||||
DOMAIN-SUFFIX,apxadtracking.net
|
||||
DOMAIN-SUFFIX,axonix.com
|
||||
DOMAIN-SUFFIX,bayimob.com
|
||||
DOMAIN-SUFFIX,bulldogcpi.com
|
||||
DOMAIN-SUFFIX,clotfun.mobi
|
||||
DOMAIN-SUFFIX,clotfun.online
|
||||
DOMAIN-SUFFIX,cloudmobi.net
|
||||
DOMAIN-SUFFIX,cnzz.com
|
||||
DOMAIN-SUFFIX,ctrmi.com
|
||||
DOMAIN-SUFFIX,flurry.com
|
||||
DOMAIN-SUFFIX,go2cloud.org
|
||||
DOMAIN-SUFFIX,growingio.com
|
||||
DOMAIN-SUFFIX,haloapps.com
|
||||
DOMAIN-SUFFIX,idealads.net
|
||||
DOMAIN-SUFFIX,inmobi.cn
|
||||
DOMAIN-SUFFIX,inmobi.com
|
||||
DOMAIN-SUFFIX,inmobi.net
|
||||
DOMAIN-SUFFIX,inmobicdn.cn
|
||||
DOMAIN-SUFFIX,inmobicdn.net
|
||||
DOMAIN-SUFFIX,inner-active.mobi
|
||||
DOMAIN-SUFFIX,insurads.com
|
||||
DOMAIN-SUFFIX,ironsrc.com
|
||||
DOMAIN-SUFFIX,irs01.com
|
||||
DOMAIN-SUFFIX,iskyworker.com
|
||||
DOMAIN-SUFFIX,juicyads.com
|
||||
DOMAIN-SUFFIX,kochava.com
|
||||
DOMAIN-SUFFIX,leadboltmobile.net
|
||||
DOMAIN-SUFFIX,lenzmx.com
|
||||
DOMAIN-SUFFIX,liveadvert.com
|
||||
DOMAIN-SUFFIX,lnk0.com
|
||||
DOMAIN-SUFFIX,lnk8.cn
|
||||
DOMAIN-SUFFIX,localytics.com
|
||||
DOMAIN-SUFFIX,mdfull.com
|
||||
DOMAIN-SUFFIX,measurementapi.com
|
||||
DOMAIN-SUFFIX,medialytics.com
|
||||
DOMAIN-SUFFIX,meetrics.com
|
||||
DOMAIN-SUFFIX,meetrics.net
|
||||
DOMAIN-SUFFIX,miaozhen.com
|
||||
DOMAIN-SUFFIX,mmstat.com
|
||||
DOMAIN-SUFFIX,moatads.com
|
||||
DOMAIN-SUFFIX,mobclix.com
|
||||
DOMAIN-SUFFIX,mopub.com
|
||||
DOMAIN-SUFFIX,okjhb.xyz
|
||||
DOMAIN-SUFFIX,openx.net
|
||||
DOMAIN-SUFFIX,qchannel01.cn
|
||||
DOMAIN-SUFFIX,rayjump.com
|
||||
DOMAIN-SUFFIX,rubiconproject.com
|
||||
DOMAIN-SUFFIX,scorecardresearch.com
|
||||
DOMAIN-SUFFIX,sdkclick.com
|
||||
DOMAIN-SUFFIX,shuzilm.cn
|
||||
DOMAIN-SUFFIX,smaato.net
|
||||
DOMAIN-SUFFIX,smartadserver.com
|
||||
DOMAIN-SUFFIX,smartnews-ads.com
|
||||
DOMAIN-SUFFIX,supersonic.com
|
||||
DOMAIN-SUFFIX,supersonicads.com
|
||||
DOMAIN-SUFFIX,tagtic.cn
|
||||
DOMAIN-SUFFIX,tanv.com
|
||||
DOMAIN-SUFFIX,tanx.com
|
||||
DOMAIN-SUFFIX,tapjoy.com
|
||||
DOMAIN-SUFFIX,trafficjunky.net
|
||||
DOMAIN-SUFFIX,turn.com
|
||||
DOMAIN-SUFFIX,uri6.com
|
||||
DOMAIN-SUFFIX,vidoomy.com
|
||||
DOMAIN-SUFFIX,voicefive.com
|
||||
DOMAIN-SUFFIX,vungle.com
|
||||
DOMAIN-SUFFIX,wedolook.com
|
||||
DOMAIN-SUFFIX,xdrig.com
|
||||
DOMAIN-SUFFIX,zu08e.cn
|
||||
|
||||
DOMAIN-SUFFIX,ad.daum.net
|
||||
DOMAIN-SUFFIX,track.xiachufang.com
|
||||
DOMAIN,abema-adx.ameba.jp
|
||||
DOMAIN,ad.12306.cn
|
||||
DOMAIN,ad.360in.com
|
||||
DOMAIN,ad.51wnl-cq.com
|
||||
DOMAIN,ad.caiyunapp.com
|
||||
DOMAIN,ad.huajiao.com
|
||||
DOMAIN,ad.hzyoka.com
|
||||
DOMAIN,ad.jiemian.com
|
||||
DOMAIN,ad.qingting.fm
|
||||
DOMAIN,ad.wappalyzer.com
|
||||
DOMAIN,ad-cn.jovcloud.com
|
||||
DOMAIN,adextra.51wnl-cq.com
|
||||
DOMAIN,ads.adadapted.com
|
||||
DOMAIN,ads.daydaycook.com.cn
|
||||
DOMAIN,ads.weilitoutiao.net
|
||||
DOMAIN,adsapi.manhuaren.com
|
||||
DOMAIN,adsdk.dmzj.com
|
||||
DOMAIN,adserver.pandora.com
|
||||
DOMAIN,adui.tg.meitu.com
|
||||
DOMAIN,adv.bandi.so
|
||||
DOMAIN,adxserver.ad.cmvideo.cn
|
||||
DOMAIN,app-ad.variflight.com
|
||||
DOMAIN,applog.mobike.com
|
||||
DOMAIN,appnext.hs.llnwd.net
|
||||
DOMAIN,appnext-a.akamaihd.net
|
||||
DOMAIN,ggs.myzaker.com
|
||||
DOMAIN,gs.getui.com
|
||||
DOMAIN,itad.linetv.tw
|
||||
DOMAIN,ja.chushou.tv
|
||||
DOMAIN,log.b612kaji.com
|
||||
DOMAIN,mads.suning.com
|
||||
DOMAIN,mobileads.msn.com
|
||||
DOMAIN,mopnativeadv.037201.com
|
||||
DOMAIN,nativeadv.dftoutiao.com
|
||||
DOMAIN,sugar.zhihu.com
|
||||
DOMAIN,toots-a.akamaihd.net
|
||||
DOMAIN,track.tiara.daum.net
|
||||
DOMAIN,track.tiara.kakao.com
|
||||
DOMAIN,trackapp.guahao.cn
|
||||
DOMAIN,traffic.mogujie.com
|
||||
DOMAIN,wmlog.meituan.com
|
||||
|
||||
# (0~9)
|
||||
# > 58 同城
|
||||
DOMAIN,adshow.58.com
|
||||
DOMAIN,track.58.com
|
||||
DOMAIN,tracklog.58.com
|
||||
# (A)
|
||||
# > Apple
|
||||
DOMAIN-SUFFIX,iadsdk.apple.com
|
||||
DOMAIN-SUFFIX,ads.internal.unity3d.com
|
||||
DOMAIN-SUFFIX,ads.prd.ie.internal.unity3d.com
|
||||
DOMAIN-SUFFIX,unityads.unity3d.com
|
||||
# > Alibaba
|
||||
DOMAIN,acs4baichuan.m.taobao.com
|
||||
DOMAIN,adash.m.taobao.com
|
||||
DOMAIN,adash.man.aliyuncs.com
|
||||
DOMAIN,adashbc.ut.taobao.com
|
||||
DOMAIN,adash-c.ut.taobao.com
|
||||
DOMAIN,adashx.m.taobao.com
|
||||
DOMAIN,adashx4yt.m.taobao.com
|
||||
DOMAIN,adashxgc.ut.taobao.com
|
||||
DOMAIN,h-adashx.ut.taobao.com
|
||||
DOMAIN,nbsdk-baichuan.alicdn.com
|
||||
DOMAIN,optimus-ads.amap.com
|
||||
DOMAIN,optimus-ads.amap.com.w.alikunlun.com
|
||||
DOMAIN,tunion-api.m.taobao.com
|
||||
# > AutoHome
|
||||
DOMAIN,adproxy.autohome.com.cn
|
||||
DOMAIN,rd.autohome.com.cn
|
||||
DOMAIN,al.autohome.com.cn
|
||||
DOMAIN,applogapi.autohome.com.cn
|
||||
# (B)
|
||||
# > Baidu
|
||||
DOMAIN-SUFFIX,baidustatic.com
|
||||
DOMAIN-SUFFIX,cpro.baidu.com
|
||||
DOMAIN-SUFFIX,pos.baidu.com
|
||||
DOMAIN,afd.baidu.com
|
||||
DOMAIN,als.baidu.com
|
||||
DOMAIN,duclick.baidu.com
|
||||
DOMAIN,hm.baidu.com
|
||||
DOMAIN,hmma.baidu.com
|
||||
DOMAIN,mobads.baidu.com
|
||||
DOMAIN,mobads-logs.baidu.com
|
||||
DOMAIN,nsclick.baidu.com
|
||||
# > ByteDance
|
||||
DOMAIN,ad.toutiao.com
|
||||
DOMAIN,applog.musical.ly
|
||||
DOMAIN,track.toutiao.com
|
||||
DOMAIN,xlog.snssdk.com
|
||||
DOMAIN,xlog-va.byteoversea.com
|
||||
# > BitAuto
|
||||
DOMAIN,adx.yiche.com
|
||||
DOMAIN,log.ycapp.yiche.com
|
||||
# > 百词斩
|
||||
DOMAIN,advertise.baicizhan.com
|
||||
DOMAIN,advertise.baicizhan.org
|
||||
# (C)
|
||||
# > CNTV
|
||||
DOMAIN,galaxy.bjcathay.com
|
||||
DOMAIN,mdrecv.app.cntvwb.cn
|
||||
DOMAIN,sdapprecv.app.cntvwb.cn
|
||||
DOMAIN,vdapprecv.app.cntvwb.cn
|
||||
# > ChinaNet
|
||||
DOMAIN,ad.k.21cn.com
|
||||
DOMAIN,admarket.21cn.com
|
||||
DOMAIN,adshows.21cn.com
|
||||
# > 车来了
|
||||
DOMAIN,atrace.chelaile.net.cn
|
||||
DOMAIN,logs.chelaile.net.cn
|
||||
# (G)
|
||||
# > Google
|
||||
DOMAIN-SUFFIX,doubleclick.net
|
||||
DOMAIN-SUFFIX,googleadservices.com
|
||||
DOMAIN-SUFFIX,googleadsserving.cn
|
||||
DOMAIN-SUFFIX,googlesyndication.com
|
||||
DOMAIN-SUFFIX,googletagmanager.com
|
||||
DOMAIN-SUFFIX,googletagservices.com
|
||||
# (H)
|
||||
# > HunanTV
|
||||
DOMAIN-SUFFIX,da.mgtv.com
|
||||
DOMAIN-SUFFIX,da.hunantv.com
|
||||
DOMAIN-SUFFIX,log.hunantv.com
|
||||
DOMAIN,log.v2.hunantv.com
|
||||
DOMAIN,v2.log.hunantv.com
|
||||
# > Hupu
|
||||
DOMAIN,adx.hupu.com
|
||||
DOMAIN,adx-api.hupu.com
|
||||
DOMAIN,goblin.hupu.com
|
||||
# (I)
|
||||
# > iQiyi
|
||||
DOMAIN,ifacelog.iqiyi.com
|
||||
DOMAIN,msg.71.am
|
||||
DOMAIN,msg.qy.net
|
||||
DOMAIN,t7z.cupid.iqiyi.com
|
||||
IP-CIDR,101.227.97.240/32,no-resolve
|
||||
IP-CIDR,101.227.200.11/32,no-resolve
|
||||
IP-CIDR,101.227.200.28/32,no-resolve
|
||||
IP-CIDR,124.192.153.42/32,no-resolve
|
||||
# > Ifeng
|
||||
DOMAIN-SUFFIX,deliver.ifeng.com
|
||||
DOMAIN,api.newad.ifeng.com
|
||||
DOMAIN,ifengad.3g.ifeng.com
|
||||
# (K)
|
||||
# > KuGou and Kuwo
|
||||
DOMAIN,adserviceretry.kugou.com
|
||||
DOMAIN,ads.service.kugou.com
|
||||
DOMAIN,adsfile.bssdlbig.kugou.com
|
||||
DOMAIN,g.koowo.com
|
||||
DOMAIN,kgmobilestat.kugou.com
|
||||
DOMAIN,kgmobilestatbak.kugou.com
|
||||
DOMAIN,mobilelog.kugou.com
|
||||
DOMAIN,mobilead.kuwo.cn
|
||||
DOMAIN,rich.kuwo.cn
|
||||
# > Kingsoft
|
||||
DOMAIN,ad-stat.ksosoft.com
|
||||
DOMAIN,img.auction-ads.wpscdn.cn
|
||||
DOMAIN,counter.kingsoft.com
|
||||
DOMAIN,counter.ksosoft.com
|
||||
DOMAIN,minfo.wps.cn
|
||||
DOMAIN,mobad.ijinshan.com
|
||||
DOMAIN,ups.ksmobile.net
|
||||
DOMAIN,ws.ksmobile.net
|
||||
# (L)
|
||||
# > Le
|
||||
DOMAIN-SUFFIX,webp2p.letv.com
|
||||
DOMAIN,ark.letv.com
|
||||
DOMAIN,emma-414870e223.huodonghezi.com
|
||||
DOMAIN,g3.letv.com
|
||||
DOMAIN,n.mark.letv.com
|
||||
# > 乐播投屏
|
||||
DOMAIN,ad.hpplay.cn
|
||||
DOMAIN,adeng.hpplay.cn
|
||||
DOMAIN,rp.hpplay.cn
|
||||
# (M)
|
||||
# > MI
|
||||
DOMAIN-SUFFIX,ad.intl.xiaomi.com
|
||||
DOMAIN-SUFFIX,ad.xiaomi.com
|
||||
DOMAIN-SUFFIX,admob.xiaomi.com
|
||||
DOMAIN-SUFFIX,tracking.miui.com
|
||||
DOMAIN,adv.sec.intl.miui.com
|
||||
DOMAIN,adv.sec.miui.com
|
||||
DOMAIN,data.mistat.xiaomi.com
|
||||
DOMAIN,tracking.intl.miui.com
|
||||
# > 墨迹天气
|
||||
DOMAIN,ad.api.moji.com
|
||||
DOMAIN,adlaunch.moji.com
|
||||
DOMAIN,ads.mojicdn.com
|
||||
DOMAIN,v1.log.moji.com
|
||||
# (N)
|
||||
# > NetEase
|
||||
DOMAIN,ad.bn.netease.com
|
||||
DOMAIN,ad.yixin.im
|
||||
DOMAIN,admusicpic.music.126.net
|
||||
DOMAIN,gorgon.youdao.com
|
||||
DOMAIN,iadmat.nosdn.127.net
|
||||
DOMAIN,iadmusicmat.music.126.net
|
||||
DOMAIN,iadmusicmatvideo.music.126.net
|
||||
DOMAIN,impservice.dictapp.youdao.com
|
||||
DOMAIN,impservice.youdao.com
|
||||
DOMAIN,log.yex.youdao.com
|
||||
DOMAIN,log-yex.youdao.com
|
||||
DOMAIN,n.3g.163.com
|
||||
DOMAIN,nex.163.com
|
||||
DOMAIN,yt-adp.nosdn.127.net
|
||||
DOMAIN,yt-adp.ws.126.net
|
||||
# (P)
|
||||
# > PPTV
|
||||
DOMAIN,ads.aplus.pptv.com
|
||||
DOMAIN,ads.aplusapi.pptv.com
|
||||
DOMAIN,asimgs.pplive.cn
|
||||
DOMAIN,de.as.pptv.com
|
||||
# > Photoable
|
||||
DOMAIN,regist.fotoable.com
|
||||
DOMAIN,cdn.adapi.fotoable.com
|
||||
# > PeanutWiFiMpass
|
||||
DOMAIN,adnew.wifi8.com
|
||||
DOMAIN,adfile.wifi8.com
|
||||
# (S)
|
||||
# > Sina
|
||||
DOMAIN-SUFFIX,beacon.sina.com.cn
|
||||
DOMAIN,adimg.vue.weibo.com
|
||||
DOMAIN,u1.img.mobile.sina.cn
|
||||
DOMAIN,sax.sina.com.cn
|
||||
DOMAIN,saxs.sina.com.cn
|
||||
DOMAIN,saxn.sina.com.cn
|
||||
# > Sohu
|
||||
DOMAIN-SUFFIX,ad.sohu.com
|
||||
DOMAIN-SUFFIX,ads.sohu.com
|
||||
DOMAIN-SUFFIX,aty.sohu.com
|
||||
DOMAIN,imp.optaim.com
|
||||
DOMAIN,v2.reachmax.cn
|
||||
DOMAIN,track.sohu.com
|
||||
DOMAIN,hui.sohu.com
|
||||
# (T)
|
||||
# > Tencent
|
||||
DOMAIN-SUFFIX,beacon.qq.com
|
||||
DOMAIN-SUFFIX,bugly.qq.com
|
||||
DOMAIN-SUFFIX,e.qq.com
|
||||
DOMAIN-SUFFIX,gdt.qq.com
|
||||
DOMAIN-SUFFIX,l.qq.com
|
||||
DOMAIN-SUFFIX,rqd.qq.com
|
||||
DOMAIN,adsmind.tc.qq.com
|
||||
DOMAIN,btrace.qq.com
|
||||
DOMAIN,mtrace.qq.com
|
||||
DOMAIN,oth.eve.mdt.qq.com
|
||||
DOMAIN,pgdt.gtimg.com
|
||||
DOMAIN,pgdt.gtimg.cn
|
||||
DOMAIN,pgdt.ugdtimg.com
|
||||
DOMAIN,pingma.qq.com
|
||||
DOMAIN,pingtcss.qq.com
|
||||
DOMAIN,splashqqlive.gtimg.com
|
||||
DOMAIN,tajs.qq.com
|
||||
DOMAIN,wxsnsdy.wxs.qq.com
|
||||
DOMAIN,wxsnsdythumb.wxs.qq.com
|
||||
# > The Paper
|
||||
DOMAIN,admonitor.thepaper.cn
|
||||
DOMAIN,adpai.thepaper.cn
|
||||
DOMAIN,imgadpai.thepaper.cn
|
||||
# > Thunder
|
||||
DOMAIN,adsp.xunlei.com
|
||||
DOMAIN,etl.xlmc.sandai.net
|
||||
# > 同花顺
|
||||
DOMAIN,adm.10jqka.com.cn
|
||||
DOMAIN,stat.10jqka.com.cn
|
||||
# > 太平洋
|
||||
DOMAIN,ad-analysis.pconline.com.cn
|
||||
DOMAIN,iad0ssl.pcauto.com.cn
|
||||
DOMAIN,iad0ssl.pconline.com.cn
|
||||
DOMAIN,imgad0.pcauto.com.cn
|
||||
DOMAIN,imgad0.pconline.com.cn
|
||||
DOMAIN,ivy.pchouse.com.cn
|
||||
# (U)
|
||||
# > UC
|
||||
DOMAIN,adtrack.ucweb.com
|
||||
DOMAIN,track.uc.cn
|
||||
# > Umeng
|
||||
DOMAIN,alog.umeng.co
|
||||
DOMAIN,alog.umeng.com
|
||||
DOMAIN,alogs.umeng.com
|
||||
DOMAIN,alog.umengcloud.com
|
||||
DOMAIN,alogs.umengcloud.com
|
||||
DOMAIN,ar.umeng.com
|
||||
DOMAIN,plbslog.umeng.com
|
||||
DOMAIN,ulogs.umeng.com
|
||||
DOMAIN,ulogs.umengcloud.com
|
||||
# (W)
|
||||
# > WiFi 万能钥匙
|
||||
DOMAIN,a.wkanx.com
|
||||
DOMAIN,cwx.lianwangtech.com
|
||||
DOMAIN,c1wx.lianwangtech.com
|
||||
# (X)
|
||||
# > 喜马拉雅
|
||||
DOMAIN,ad.ximalaya.com
|
||||
DOMAIN,adbs.ximalaya.com
|
||||
DOMAIN,adse.ximalaya.com
|
||||
DOMAIN,adse.wsa.ximalaya.com
|
||||
DOMAIN,adbehavior.wsa.ximalaya.com
|
||||
DOMAIN,adsebs.ximalaya.com
|
||||
# > 小红书
|
||||
DOMAIN,apm-track.xiaohongshu.com
|
||||
DOMAIN,t-ads.xiaohongshu.com
|
||||
# (Y)
|
||||
# > Youku
|
||||
DOMAIN-SUFFIX,atm.youku.com
|
||||
DOMAIN,ad.mobile.youku.com
|
||||
DOMAIN,iyes.youku.com
|
||||
# (Z)
|
||||
# > ZOL
|
||||
DOMAIN,apppv.zol.com.cn
|
||||
DOMAIN,pvnapp.zol.com.cn
|
||||
|
||||
# URL
|
||||
# 0~9
|
||||
# > 21epaper
|
||||
URL-REGEX,^https?:\/\/api\.21jingji\.com\/ad\/
|
||||
# > 360doc
|
||||
URL-REGEX,^https?:\/\/mobi\.360doc\.com\/v\d{2}\/Ajax\/festival\.ashx\?op=getfestivaltheme
|
||||
# > 58同城
|
||||
URL-REGEX,^https?:\/\/app\.58\.com\/api\/home\/(advertising|appadv)\/
|
||||
URL-REGEX,^https?:\/\/app\.58\.com\/api\/home\/invite\/popupAdv
|
||||
URL-REGEX,^https?:\/\/app\.58\.com\/api\/log\/
|
||||
URL-REGEX,^https?:\/\/.+\.58cdn\.com\.cn\/brandads\/
|
||||
|
||||
# A
|
||||
# > Alibaba
|
||||
URL-REGEX,^https?:\/\/gw\.alicdn\.com\/.*\.jpg_(9\d{2}|\d{4})
|
||||
# >> 闲鱼
|
||||
URL-REGEX,^https?:\/\/acs\.m\.taobao\.com\/gw\/mtop\.taobao\.idle\.home\.welcome\/
|
||||
# >> 飞猪
|
||||
URL-REGEX,^https?:\/\/acs\.m\.taobao\.com\/gw\/mtop\.trip\.activity\.querytmsresources\/
|
||||
# >> 淘票票
|
||||
URL-REGEX,^https?:\/\/acs\.m\.taobao\.com\/gw\/mtop\.film\.mtopadvertiseapi\.queryadvertise\/
|
||||
# >> 口碑
|
||||
URL-REGEX,^https?:\/\/render\.alipay\.com\/p\/s\/h5data\/prod\/spring-festival-2019-h5data\/popup-h5data\.json
|
||||
URL-REGEX,^https?:\/\/acs\.m\.taobao\.com\/gw\/mtop\.o2o\.ad\.gateway\.get\/
|
||||
URL-REGEX,^https?:\/\/guide-acs\.m\.taobao\.com\/gw\/mtop\.taobao\.wireless\.home\.splash\.awesome\.get\/
|
||||
# >> UC
|
||||
URL-REGEX,^https?:\/\/huichuan\.sm\.cn\/jsad
|
||||
URL-REGEX,^https?:\/\/iflow\.uczzd\.cn\/log\/
|
||||
# >> AMap
|
||||
URL-REGEX,^https?:\/\/m\d\.amap\.com\/ws\/valueadded\/alimama\/splash_screen\/
|
||||
# > AcFun
|
||||
URL-REGEX,^https?:\/\/aes\.acfun\.cn\/s\?adzones
|
||||
# > 爱回收
|
||||
URL-REGEX,^https?:\/\/gw\.aihuishou\.com\/app-portal\/home\/getadvertisement
|
||||
# > APICloud
|
||||
URL-REGEX,^https?:\/\/a\.apicloud\.com\/start_page\/
|
||||
|
||||
# B
|
||||
# > Baidu
|
||||
# >> 百度网盘
|
||||
URL-REGEX,^https?:\/\/update\.pan\.baidu\.com\/statistics
|
||||
URL-REGEX,^https?:\/\/issuecdn\.baidupcs\.com\/issue\/netdisk\/guanggao\/
|
||||
# >> 百度贴吧
|
||||
URL-REGEX,^https?:\/\/c\.tieba\.baidu\.com\/c\/s\/splashSchedule
|
||||
URL-REGEX,^https?:\/\/c\.tieba\.baidu\.com\/c\/f\/forum\/getAdInfo
|
||||
URL-REGEX,^https?:\/\/c\.tieba\.baidu\.com\/\w+\/\w+\/(sync|newRnSync|mlog)
|
||||
# >> 百度地图
|
||||
# URL-REGEX,^https?:\/\/.+\/client\/phpui2\/
|
||||
URL-REGEX,^https?:\/\/ss0\.bdstatic\.com/.+_\d{3}_\d{4}\.jpg
|
||||
# > ByteDance
|
||||
URL-REGEX,^https?:\/\/.+\.pstatp\.com\/img\/ad
|
||||
URL-REGEX,^https?:\/\/.+\.(musical|snssdk|tiktokv)\.(com|ly)\/(api|motor)\/ad\/
|
||||
URL-REGEX,^https?:\/\/dsp\.toutiao\.com\/api\/xunfei\/ads\/
|
||||
URL-REGEX,^https?:\/\/.+\.snssdk\.com\/motor\/operation\/activity\/display\/config\/V2\/
|
||||
# > bilibili
|
||||
URL-REGEX,^https?:\/\/app\.bilibili\.com\/x\/v2\/splash\/
|
||||
# > 抱抱
|
||||
URL-REGEX,^https?:\/\/www\.myhug\.cn\/ad\/
|
||||
# > 百词斩
|
||||
URL-REGEX,^https?:\/\/7n\.bczcdn\.com\/launchad\/
|
||||
# > 贝太厨房
|
||||
URL-REGEX,^https?:\/\/channel\.beitaichufang\.com\/channel\/api\/v\d\/promote\/ios\/start\/page
|
||||
# > 币世界
|
||||
URL-REGEX,^https?:\/\/iapi\.bishijie\.com\/actopen\/advertising\/
|
||||
# > 贝壳找房
|
||||
URL-REGEX,^https?:\/\/app\.api\.ke\.com\/config\/config\/bootpage
|
||||
# > Bank of China
|
||||
URL-REGEX,^https?:\/\/mlife\.jf365\.boc\.cn\/AppPrj\/FirstPic\.do\?
|
||||
# > Boohee
|
||||
URL-REGEX,^https?:\/\/status\.boohee\.com\/api\/v\d\/app_square\/start_up_with_ad
|
||||
|
||||
# C
|
||||
# > China CITIC Bank
|
||||
URL-REGEX,^https?:\/\/m\.creditcard\.ecitic\.com\/citiccard\/mbk\/.+\/appStartAdv
|
||||
# > Industrial and Commercial Bank of China
|
||||
URL-REGEX,^https?:\/\/v\.icbc\.com\.cn\/userfiles\/Resources\/WAP\/advertisement\/
|
||||
# > China Merchants Bank
|
||||
URL-REGEX,^https?:\/\/mlife\.cmbchina\.com/ClientFaceService\/preCacheAdvertise\.json
|
||||
URL-REGEX,^https?:\/\/mlife\.cmbchina\.com\/ClientFaceService\/getAdvertisement\.json
|
||||
URL-REGEX,^https?:\/\/pic1cdn\.cmbchina\.com\/appinitads\/
|
||||
# > China Merchants Bank
|
||||
URL-REGEX,^https?:\/\/www\.cmbc\.com\.cn\/m\/image\/loadingpage\/
|
||||
# > China Guangfa Bank
|
||||
URL-REGEX,^https?:\/\/mps\.95508\.com\/mps\/club\/cardPortals\/adv\/.{25}\.jpg
|
||||
# > China Mobile
|
||||
URL-REGEX,^https?:\/\/clientaccess\.10086\.cn\/biz-orange\/DN\/init\/startInit
|
||||
# > China Unicom
|
||||
URL-REGEX,^https?:\/\/m\.client\.10010\.com\/mobileService\/customer\/accountListData\.htm
|
||||
URL-REGEX,^https?:\/\/m\.client\.10010\.com\/uniAdmsInterface\/getWelcomeAd
|
||||
# > CNTV
|
||||
URL-REGEX,^https?:\/\/cntv\.hls\.cdn\.myqcloud\.com\/.+\?maxbr=850
|
||||
URL-REGEX,^https?:\/\/asp\.cntv\.myalicdn\.com\/.+\?maxbr=850
|
||||
URL-REGEX,^https?:\/\/www\.cntv\.cn\/nettv\/adp\/
|
||||
URL-REGEX,^https?:\/\/v\.cctv\.com\/.+850
|
||||
# > 车来了
|
||||
URL-REGEX,^https?:\/\/api\.chelaile\.net\.cn\/adpub\/
|
||||
# URL-REGEX,^https?:\/\/(api|atrace)\.chelaile\.net\.cn\/adpub\/
|
||||
URL-REGEX,^https?:\/\/api\.chelaile\.net\.cn\/goocity\/advert\/
|
||||
# URL-REGEX,^https?:\/\/atrace\.chelaile\.net\.cn\/exhibit\?&adv_image
|
||||
URL-REGEX,^https?:\/\/pic\d\.chelaile\.net\.cn\/adv\/
|
||||
# > 曹操出行
|
||||
URL-REGEX,^https?:\/\/cap\.caocaokeji\.cn\/advert-bss\/
|
||||
# > CamScanner
|
||||
URL-REGEX,^https?:\/\/api\.intsig\.net\/user\/cs\/operating\/app\/get_startpic\/
|
||||
# > 财经
|
||||
URL-REGEX,^https?:\/\/api\.caijingmobile\.com\/(ad|advert)\/
|
||||
|
||||
# D
|
||||
# > 豆瓣
|
||||
# (154.8.131.* 疑似自签证书不可验证)
|
||||
URL-REGEX,^https?:\/\/.+\/v2\/app_ads\/
|
||||
# > 斗鱼
|
||||
URL-REGEX,^https?:\/\/rtbapi\.douyucdn\.cn\/japi\/sign\/app\/getinfo
|
||||
# > 当当
|
||||
URL-REGEX,^https?:\/\/mapi\.dangdang\.com\/index\.php\?action=init
|
||||
URL-REGEX,^https?:\/\/e\.dangdang\.com\/.+getDeviceStartPage
|
||||
# > DayDayCook
|
||||
URL-REGEX,^https?:\/\/api\.daydaycook\.com\.cn\/daydaycook\/server\/ad\/
|
||||
URL-REGEX,^https?:\/\/cms\.daydaycook\.com\.cn\/api\/cms\/advertisement\/
|
||||
# > 蛋蛋赞
|
||||
URL-REGEX,^https?:\/\/www\.dandanzan\.com\/res\/gdsefse\.js
|
||||
# > 叨鱼
|
||||
URL-REGEX,^https?:\/\/daoyu\.sdo\.com\/api\/userCommon\/getAppStartAd
|
||||
# > 丁香医生
|
||||
URL-REGEX,^https?:\/\/dxy\.com\/app\/i\/ask\/biz\/feed\/launch
|
||||
# > 嘀嗒出行
|
||||
URL-REGEX,^https?:\/\/capis(-slb)?\.didapinche\.com\/ad\/
|
||||
URL-REGEX,^https?:\/\/www\.didapinche\.com\/app\/adstat\/
|
||||
|
||||
# E
|
||||
# > eLong
|
||||
URL-REGEX,^https?:\/\/123\.59\.31\.1\/(adgateway|adv)\/
|
||||
URL-REGEX,^https?:\/\/119\.18\.193\.135\/(adgateway|adv)\/
|
||||
# > e代驾
|
||||
URL-REGEX,^https?:\/\/pic\.edaijia\.cn\/adsplash\/
|
||||
|
||||
# F
|
||||
# > Foodie
|
||||
URL-REGEX,^https?:\/\/foodie-api\.yiruikecorp\.com\/v\d\/(banner|notice)\/overview
|
||||
# > FOTOABLE
|
||||
URL-REGEX,^https?:\/\/cdn\.api\.fotoable\.com\/Advertise\/
|
||||
# > 飞客茶馆
|
||||
URL-REGEX,^https?:\/\/www\.flyertea\.com\/source\/plugin\/mobile\/mobile\.php\?module=advis
|
||||
# > 飞常准
|
||||
URL-REGEX,^https?:\/\/app\.variflight\.com\/ad\/
|
||||
URL-REGEX,^https?:\/\/app\.variflight\.com\/v\d\/advert\/
|
||||
# > FENG
|
||||
URL-REGEX,^https?:\/\/api\.feng\.com\/v\d\/advertisement\/.*Claunch
|
||||
|
||||
# G
|
||||
# > Google
|
||||
URL-REGEX,^https?:\/\/.+\.googlevideo\.com\/.+&oad
|
||||
URL-REGEX,^https?:\/\/.+\.googlevideo\.com\/.+ctier
|
||||
URL-REGEX,^https?:\/\/youtubei\.googleapis\.com\/youtubei\/.+ad_
|
||||
URL-REGEX,^https?:\/\/youtubei\.googleapis\.com\/youtubei\/.+log_
|
||||
URL-REGEX,^https?:\/\/.+\.youtube\.com\/get_midroll_
|
||||
URL-REGEX,^https?:\/\/premiumyva\.appspot\.com\/vmclickstoadvertisersite
|
||||
URL-REGEX,^https?:\/\/.+\.youtube\.com\/api\/stats\/ads
|
||||
URL-REGEX,^https?:\/\/.+\.youtube\.com\/api\/stats\/.+adformat
|
||||
URL-REGEX,^https?:\/\/.+\.youtube\.com\/pagead\/
|
||||
URL-REGEX,^https?:\/\/.+\.youtube\.com\/ptracking
|
||||
# > Gofun
|
||||
URL-REGEX,^https?:\/\/gateway\.shouqiev\.com\/fsda\/app\/bootImage\.json
|
||||
# > GoodBodivis
|
||||
URL-REGEX,^https?:\/\/www\.bodivis\.com\.cn\/app\/splashAdvertise
|
||||
# > 国泰君安
|
||||
URL-REGEX,^https?:\/\/dl\.app\.gtja\.com\/dzswem\/kvController\/.+\.jpg$
|
||||
|
||||
# H
|
||||
# > 杭州公交
|
||||
URL-REGEX,^https?:\/\/m\.ibuscloud.com\/v2\/app\/getStartPage
|
||||
# > 杭州市·市民卡
|
||||
URL-REGEX,^https?:\/\/smkmp\.96225.com\/smkcenter\/ad/
|
||||
# > 虎扑
|
||||
URL-REGEX,^https?:\/\/games\.mobileapi\.hupu\.com\/.+\/(interfaceAdMonitor|interfaceAd)\/
|
||||
# > 韩剧社
|
||||
URL-REGEX,^https?:\/\/47\.97\.20\.12\/ad\/
|
||||
# > 火猫
|
||||
URL-REGEX,^https?:\/\/api\.huomao\.com\/channels\/loginAd
|
||||
# > HiveBox
|
||||
URL-REGEX,^https?:\/\/consumer\.fcbox\.com\/v\d\/ad\/
|
||||
# > 好好住
|
||||
URL-REGEX,^https?:\/\/api\.haohaozhu\.cn\/index\.php\/home\/AppInit\/getStartPhoto
|
||||
|
||||
# I
|
||||
# > iFlytek
|
||||
URL-REGEX,^https?:\/\/imeclient\.openspeech\.cn\/adservice\/
|
||||
# > iQiyi
|
||||
URL-REGEX,^https?:\/\/iface\.iqiyi\.com\/api\/getNewAdInfo
|
||||
URL-REGEX,^https?:\/\/.+\/(mixer|track2)\?
|
||||
URL-REGEX,^https?:\/\/act\.vip\.iqiyi\.com\/interact\/api\/show.do
|
||||
URL-REGEX,^https?:\/\/act\.vip\.iqiyi\.com\/interact\/api\/v2\/show
|
||||
# > iReader
|
||||
URL-REGEX,^https?:\/\/ih2\.ireader\.com\/zyapi\/bookstore\/ad\/
|
||||
URL-REGEX,^https?:\/\/ih2\.ireader\.com\/zyapi\/self\/screen\/ad
|
||||
URL-REGEX,^https?:\/\/ih2\.ireader\.com\/zycl\/api\/ad\/
|
||||
|
||||
# J
|
||||
# > JD
|
||||
URL-REGEX,^https?:\/\/api\.m\.jd.com\/client\.action\?functionId=(start|queryMaterialAdverts)
|
||||
URL-REGEX,^https?:\/\/(bdsp-x|dsp-x)\.jd\.com\/adx\/
|
||||
URL-REGEX,^https?:\/\/ms\.jr\.jd\.com\/gw\/generic\/base\/na\/m\/adInfo
|
||||
URL-REGEX,^https?:\/\/ms\.jr\.jd\.com\/gw\/generic\/aladdin\/na\/m\/getLoadingPicture
|
||||
# > 界面新闻
|
||||
URL-REGEX,^https?:\/\/img\.jiemian\.com\/ads\/
|
||||
# > 驾校一点通
|
||||
URL-REGEX,^https?:\/\/api\.jxedt\.com\/ad\/
|
||||
URL-REGEX,^https?:\/\/richmanapi\.jxedt\.com\/api\/ad\/
|
||||
# > 驾考宝典
|
||||
URL-REGEX,^https?:\/\/.+\.kakamobi\.cn\/api\/open\/v\d\/advert-sdk\/
|
||||
|
||||
# K
|
||||
# > Keep
|
||||
URL-REGEX,^https?:\/\/api\.gotokeep\.com\/ads
|
||||
# > Kingsoft WPS
|
||||
URL-REGEX,^https?:\/\/ios\.wps\.cn\/ad-statistics-service
|
||||
URL-REGEX,^https?:\/\/mobile-pic\.cache\.iciba\.com\/feeds_ad\/
|
||||
URL-REGEX,^https?:\/\/.+\.kingsoft-office-service\.com\/ad
|
||||
# > Kingsoft PowerWord
|
||||
URL-REGEX,^https?:\/\/dict-mobile\.iciba\.com\/interface\/index\.php\?.+(c=ad|collectFeedsAdShowCount|KSFeedsAdCardViewController)
|
||||
URL-REGEX,^https?:\/\/service\.iciba\.com\/popo\/open\/screens\/v\d\?adjson
|
||||
# > 快看漫画
|
||||
URL-REGEX,^https?:\/\/api\.kkmh\.com\/.+(ad|advertisement)\/
|
||||
# > Kuwo
|
||||
URL-REGEX,^https?:\/\/122\.14\.246\.33\/MobileAdServer\/
|
||||
URL-REGEX,^https?:\/\/(2(5[0-5]{1}|[0-4]\d{1})|[0-1]?\d{1,2})(\.(2(5[0-5]{1}|[0-4]\d{1})|[0-1]?\d{1,2})){3}\/EcomResourceServer/AdPlayPage/adinfo
|
||||
# > 看理想
|
||||
URL-REGEX,^https?:\/\/api\.vistopia\.com\.cn\/api\/v\d\/home\/advertisement
|
||||
|
||||
# L
|
||||
# > Le
|
||||
URL-REGEX,^https?:\/\/.+\/letv-gug\/
|
||||
# > 来疯直播
|
||||
URL-REGEX,^https?:\/\/api\.laifeng\.com\/v\d\/start\/ads
|
||||
# > 懒投资
|
||||
URL-REGEX,^https?:\/\/ios\.lantouzi\.com\/api\/startpage
|
||||
|
||||
# M
|
||||
# > MI
|
||||
URL-REGEX,^https?:\/\/api\.m\.mi\.com\/v\d\/app\/start
|
||||
URL-REGEX,^https?:\/\/api\.jr\.mi\.com\/v\d\/adv\/
|
||||
URL-REGEX,^https?:\/\/api\.jr\.mi\.com\/jr\/api\/playScreen
|
||||
# > MI_Fit
|
||||
URL-REGEX,^https?:\/\/api-mifit.+\.huami\.com\/discovery\/mi\/discovery\/.+_ad\?
|
||||
# > MogoRenter
|
||||
URL-REGEX,^https?:\/\/api\.mgzf\.com\/renter-operation\/home\/startHomePage
|
||||
# > MojiWeather
|
||||
URL-REGEX,^https?:\/\/cdn\.moji\.com\/(adoss|adlink)\/
|
||||
# > 埋堆堆
|
||||
URL-REGEX,^https?:\/\/mob\.mddcloud\.com\.cn\/api\/(ad|advert)\/
|
||||
# > 漫画人
|
||||
URL-REGEX,^https?:\/\/mangaapi\.manhuaren\.com\/v\d\/public\/getStartPageAds
|
||||
# > 美团
|
||||
URL-REGEX,^https?:\/\/img\.meituan\.net\/(adunion|display|midas)\/.+\.(gif|jpg|jpg\.webp)$
|
||||
URL-REGEX,^https?:\/\/p\d\.meituan\.net\/wmbanner\/[A-Za-z0-9]+\.jpg
|
||||
URL-REGEX,^https?:\/\/p\d\.meituan\.net\/movie\/[A-Za-z0-9]+\.jpg\?may_covertWebp
|
||||
URL-REGEX,^https?:\/\/s3plus\.meituan\.net\/.+\/linglong\/.+\.(gif|jpg|mp4)
|
||||
# > 美味不用等
|
||||
URL-REGEX,^https?:\/\/capi.mwee.cn/app-api/V\d{2}/app/(ad|getstartad)
|
||||
# > 咪咕
|
||||
URL-REGEX,^https?:\/\/.+\/v\d\/iflyad\/
|
||||
URL-REGEX,^https?:\/\/.+\/cdn-adn\/
|
||||
URL-REGEX,^https?:\/\/ggic\d?\.cmvideo\.cn\/ad\/
|
||||
URL-REGEX,^https?:\/\/.+/img\/ad\.union\.api\/
|
||||
# > 秒拍
|
||||
URL-REGEX,^https?:\/\/b-api\.ins\.miaopai\.com\/\d\/ad/
|
||||
# > 马蜂窝
|
||||
URL-REGEX,^https?:\/\/mapi\.mafengwo\.cn\/ad\/
|
||||
URL-REGEX,^https?:\/\/mapi\.mafengwo\.cn\/travelguide\/ad\/
|
||||
|
||||
# N
|
||||
# > NetEase Mail
|
||||
URL-REGEX,^https?:\/\/appconf\.mail\.163\.com\/mmad\/
|
||||
# > NetEase Youdao
|
||||
URL-REGEX,^https?:\/\/oimage([a-z])([0-9])\.ydstatic\.com\/.+adpublish
|
||||
URL-REGEX,^https?:\/\/dsp-impr2\.youdao\.com\/adload.s\?
|
||||
# > NetEase News
|
||||
URL-REGEX,^https?:\/\/c\.m\.163\.com\/nc\/gl\/
|
||||
# > NetEase MoneyKeeper
|
||||
URL-REGEX,^https?:\/\/client\.mail\.163\.com\/apptrack\/confinfo\/searchMultiAds
|
||||
# > NetEase CloudMusic
|
||||
URL-REGEX,^https?:\/\/.+\/eapi\/(ad|log)\/
|
||||
# > NetEase 考拉
|
||||
URL-REGEX,^https?:\/\/sp\.kaola\.com\/api\/openad
|
||||
# > NetEase Yanxuan
|
||||
URL-REGEX,^https?:\/\/support\.you\.163\.com\/xhr\/boot\/getBootMedia\.json
|
||||
# > NetEase SnailReader
|
||||
URL-REGEX,^https?:\/\/easyreadfs\.nosdn\.127\.net\/ad-material\/
|
||||
# > 爱南宁
|
||||
URL-REGEX,^https?:\/\/nnapp\.cloudbae\.cn\/mc\/api\/advert/
|
||||
# > NationalGeographic
|
||||
URL-REGEX,^https?:\/\/dili\.bdatu\.com\/jiekou\/ad\/
|
||||
# > NationalGeographicChina
|
||||
URL-REGEX,^https?:\/\/wap\.ngchina\.cn\/news\/adverts\/
|
||||
|
||||
# O
|
||||
# > ofo
|
||||
URL-REGEX,^https?:\/\/supportda\.ofo\.com\/adaction\?
|
||||
URL-REGEX,^https?:\/\/ma\.ofo\.com\/ads\/
|
||||
URL-REGEX,^https?:\/\/activity2\.api\.ofo\.com\/ofo\/Api\/v2\/ads
|
||||
URL-REGEX,^https?:\/\/ma\.ofo\.com\/adImage\/
|
||||
# > Oray
|
||||
URL-REGEX,^https?:\/\/slapi.oray.net/client/ad
|
||||
|
||||
# P
|
||||
# > PeanutWiFiMpass
|
||||
URL-REGEX,^https?:\/\/cmsapi\.wifi8\.com\/v\d\/(emptyAd|adNew)\/
|
||||
# > 票根
|
||||
URL-REGEX,^https?:\/\/pss\.txffp\.com\/piaogen\/images\/launchScreen/
|
||||
|
||||
# Q
|
||||
# > Qdaily
|
||||
URL-REGEX,^https?:\/\/app3\.qdaily\.com\/app3\/boot_advertisements\.json
|
||||
URL-REGEX,^https?:\/\/notch\.qdaily\.com\/api\/v2\/boot_ad
|
||||
# > 穷游
|
||||
URL-REGEX,^https?:\/\/open\.qyer\.com\/qyer\/startpage\/
|
||||
URL-REGEX,^https?:\/\/open\.qyer.com\/qyer\/config\/get
|
||||
URL-REGEX,^https?:\/\/media\.qyer\.com\/ad\/
|
||||
# > 亲宝宝
|
||||
URL-REGEX,^https?:\/\/api\.qbb6\.com\/ad\/
|
||||
|
||||
# R
|
||||
# > 人人视频
|
||||
URL-REGEX,^https?:\/\/msspjh\.emarbox\.com\/getAdConfig
|
||||
URL-REGEX,^https?:\/\/api\.videozhishi\.com\/api\/getAdvertising
|
||||
URL-REGEX,^https?:\/\/api\.rr\.tv\/ad\/
|
||||
|
||||
# S
|
||||
# > Sina
|
||||
URL-REGEX,^https?:\/\/edit\.sinaapp\.com\/ua\?t=adv
|
||||
# > Sina Weibo
|
||||
URL-REGEX,^https?:\/\/sdkapp\.uve\.weibo\.com\/interface\/sdk\/sdkad\.php
|
||||
URL-REGEX,^https?:\/\/wbapp\.uve\.weibo\.com\/wbapplua\/wbpullad\.lua
|
||||
URL-REGEX,^https?:\/\/sdkapp\.uve\.weibo\.com/\interface\/sdk\/actionad\.php
|
||||
URL-REGEX,^https?:\/\/weibointl\.api\.weibo\.cn\/portal\.php\?a=get_coopen_ads
|
||||
# > Sina 天气通
|
||||
URL-REGEX,^https?:\/\/tqt\.weibo\.cn\/overall\/redirect\.php\?r=tqt_sdkad
|
||||
URL-REGEX,^https?:\/\/tqt\.weibo\.cn\/overall\/redirect\.php\?r=tqtad
|
||||
URL-REGEX,^https?:\/\/tqt\.weibo\.cn\/.+advert\.index
|
||||
URL-REGEX,^https?:\/\/tqt\.weibo\.cn\/api\/advert\/
|
||||
# > Sohu
|
||||
URL-REGEX,^https?:\/\/api\.k\.sohu\.com\/api\/news\/adsense
|
||||
URL-REGEX,^https?:\/\/pic\.k\.sohu\.com\/img8\/wb\/tj\/
|
||||
URL-REGEX,^https?:\/\/s1\.api\.tv\.itc\.cn\/v4\/mobile\/control\/switch\.json
|
||||
URL-REGEX,^https?:\/\/api\.tv\.sohu\.com\/agg\/api\/app\/config\/bootstrap
|
||||
# > StarFans
|
||||
URL-REGEX,^https?:\/\/g\.cdn\.pengpengla\.com\/starfantuan\/boot-screen-info\/
|
||||
# > 什么值得买
|
||||
URL-REGEX,^https?:\/\/api\.smzdm\.com\/v\d\/util\/loading
|
||||
# > 四季線上影視4gTV
|
||||
URL-REGEX,^https?:\/\/service\.4gtv\.tv\/4gtv\/Data\/(GetAD|ADLog)
|
||||
# > 肆客足球
|
||||
URL-REGEX,^https?:\/\/api\.qiuduoduo\.cn\/guideimage
|
||||
# > 识货
|
||||
URL-REGEX,^https?:\/\/www\.shihuo\.cn\/app3\/saveAppInfo
|
||||
# > 首汽约车
|
||||
URL-REGEX,^https?:\/\/gw-passenger\.01zhuanche\.com\/gw-passenger\/car-rest\/webservice\/passenger\/recommendADs
|
||||
URL-REGEX,^https?:\/\/gw-passenger\.01zhuanche\.com\/gw-passenger\/zhuanche-passenger-token\/leachtoken\/webservice\/homepage\/queryADs
|
||||
# > Suning
|
||||
URL-REGEX,^https?:\/\/image\.suning\.cn\/uimg\/ma\/ad\/
|
||||
# > 神舟专车
|
||||
URL-REGEX,^https?:\/\/img01\.10101111cdn\.com\/adpos\/
|
||||
# > SuperFriday
|
||||
URL-REGEX,^https?:\/\/.+/V\d\/splash\/getSplashV\d\.action
|
||||
|
||||
# T
|
||||
# > Tencent
|
||||
# >> Tencent Futubull
|
||||
URL-REGEX,^https?:\/\/api5\.futunn\.com\/ad\/
|
||||
# >> Tencent Game
|
||||
URL-REGEX,^https?:\/\/ssl\.kohsocialapp\.qq\.com:10001\/game\/buttons
|
||||
URL-REGEX,^https?:\/\/qt\.qq\.com\/lua\/mengyou\/get_splash_screen_info
|
||||
# >> Tencent Maps
|
||||
URL-REGEX,^https?:\/\/3gimg\.qq\.com\/tencentMapTouch\/app\/activity\/
|
||||
URL-REGEX,^https?:\/\/3gimg\.qq\.com\/tencentMapTouch\/splash\/
|
||||
URL-REGEX,^https?:\/\/4gimg\.map\.qq\.com\/mwaSplash\/
|
||||
# >> Tencent QQLive
|
||||
URL-REGEX,^https?:\/\/btrace.qq.com
|
||||
URL-REGEX,^https?:\/\/vv\.video\.qq\.com\/getvmind\?
|
||||
URL-REGEX,^https?:\/\/.+\.mp4.+&sdtfrom=v3004
|
||||
# >> Tencent QQNews
|
||||
URL-REGEX,^https?:\/\/r\.inews\.qq\.com\/(adsBlacklist|getFullScreenPic|getQQNewsRemoteConfig)
|
||||
# >> Tencent WeChat
|
||||
URL-REGEX,^https?:\/\/mp\.weixin\.qq\.com\/mp\/(ad_|advertisement|getappmsgad)
|
||||
# > Thunder
|
||||
URL-REGEX,^https?:\/\/images\.client\.vip\.xunlei\.com\/.+\/advert\/
|
||||
# > TV_Home
|
||||
URL-REGEX,^https?:\/\/api\.gaoqingdianshi\.com\/api\/v\d\/ad\/
|
||||
# > The_Paper
|
||||
URL-REGEX,^https?:\/\/adpai\.thepaper\.cn\/.+&ad=
|
||||
# > 太平洋
|
||||
URL-REGEX,^https?:\/\/agent-count\.pconline\.com\.cn\/counter\/adAnalyse\/
|
||||
URL-REGEX,^https?:\/\/mrobot\.pconline\.com\.cn\/v\d\/ad2p
|
||||
URL-REGEX,^https?:\/\/mrobot\.pconline\.com\.cn\/s\/onlineinfo\/ad\/
|
||||
URL-REGEX,^https?:\/\/mrobot\.pcauto\.com\.cn\/v\d\/ad2p
|
||||
URL-REGEX,^https?:\/\/mrobot\.pcauto\.com\.cn\/xsp\/s\/auto\/info\/preload\.xsp
|
||||
|
||||
# V
|
||||
# > VUE
|
||||
URL-REGEX,^https?:\/\/static\.vuevideo\.net\/styleAssets\/.+\/splash_ad
|
||||
URL-REGEX,^https?:\/\/static\.vuevideo\.net\/styleAssets\/advertisement\/
|
||||
|
||||
# W
|
||||
# > WeDoctor
|
||||
URL-REGEX,^https?:\/\/app\.wy\.guahao\.com\/json\/white\/dayquestion\/getpopad
|
||||
# > Weico
|
||||
URL-REGEX,^https?:\/\/overseas\.weico\.cc/portal\.php\?a=get_coopen_ads
|
||||
# > 无他相机
|
||||
URL-REGEX,^https?:\/\/api-release\.wuta-cam\.com\/ad_tree
|
||||
URL-REGEX,^https?:\/\/res-release\.wuta-cam\.com\/json\/ads_component_cache\.json
|
||||
# > 蜗牛睡眠
|
||||
URL-REGEX,^https?:\/\/snailsleep\.net\/snail\/v\d\/screen\/qn\/get\?
|
||||
URL-REGEX,^https?:\/\/snailsleep\.net\/snail\/v\d\/adTask\/
|
||||
# > WiFi共享大师
|
||||
URL-REGEX,^https?:\/\/nochange\.ggsafe\.com\/ad\/
|
||||
# > 微店
|
||||
URL-REGEX,^https?:\/\/thor\.weidian\.com\/ares\/home\.splash\/
|
||||
# > 华尔街见闻
|
||||
URL-REGEX,^https?:\/\/api\.wallstreetcn\.com\/apiv\d\/advertising\/
|
||||
|
||||
# X
|
||||
# > 下厨房
|
||||
URL-REGEX,^https?:\/\/api\.xiachufang\.com\/v2\/ad/
|
||||
# > 虾米
|
||||
URL-REGEX,^https?:\/\/acs\.m\.taobao\.com\/gw\/mtop\.alimusic\.common\.mobileservice\.startinit\/
|
||||
# > 小睡眠
|
||||
URL-REGEX,^https?:\/\/api\.psy-1\.com\/cosleep\/startup
|
||||
# > 迅游加速器
|
||||
URL-REGEX,^https?:\/\/portal-xunyou\.qingcdn\.com\/api\/v\d\/ios\/configs\/(splash_ad|ad_urls)
|
||||
URL-REGEX,^https?:\/\/portal-xunyou\.qingcdn\.com\/api\/v\d\/ios\/ads\/
|
||||
# > 喜马拉雅
|
||||
URL-REGEX,^https?:\/\/.+\/api\/v\d\/adRealTime
|
||||
# > 小站
|
||||
URL-REGEX,^https?:\/\/tiku\.zhan\.com\/Common\/newAd\/
|
||||
|
||||
# Y
|
||||
# > Yahoo!
|
||||
URL-REGEX,^https?:\/\/m\.yap\.yahoo\.com\/v18\/getAds\.do
|
||||
# > Youtube++
|
||||
URL-REGEX,^https?:\/\/api\.catch\.gift\/api\/v3\/pagead\/
|
||||
# > YOUKU
|
||||
URL-REGEX,^https?:\/\/.+\.mp4\?ccode=0902
|
||||
URL-REGEX,^https?:\/\/.+\.mp4\?sid=
|
||||
# > YYeTs
|
||||
URL-REGEX,^https?:\/\/ctrl\.(playcvn|zmzapi)\.(com|net)\/app\/(ads|init)
|
||||
# > 萤石云视频
|
||||
URL-REGEX,^https?:\/\/i\.ys7\.com\/api\/ads
|
||||
# > 运动世界
|
||||
URL-REGEX,^https?:\/\/.+\.iydsj\.com\/api\/.+\/ad
|
||||
# > 一点万象
|
||||
URL-REGEX,^https?:\/\/app\.mixcapp\.com\/mixc\/api\/v\d\/ad
|
||||
# > 印象笔记
|
||||
URL-REGEX,^https?:\/\/app\.yinxiang\.com\/ads\/
|
||||
# > 云麦好轻
|
||||
URL-REGEX,^https?:\/\/restapi\.iyunmai\.com\/api\/ios\/ad\/
|
||||
# > 育学园
|
||||
URL-REGEX,^https?:\/\/yxyapi\d\.drcuiyutao\.com\/yxy-api-gateway\/api\/json\/advert\/
|
||||
|
||||
# Z
|
||||
# > 直播吧
|
||||
URL-REGEX,^https?:\/\/a\.qiumibao\.com\/activities\/config\.php
|
||||
URL-REGEX,^https?:\/\/.+\/allOne\.php\?ad_name
|
||||
# > 知乎
|
||||
URL-REGEX,^https?:\/\/www\.zhihu\.com\/api\/v4\/community-ad\/
|
||||
URL-REGEX,^https?:\/\/api\.zhihu\.com\/(launch|real_time)
|
||||
URL-REGEX,^https?:\/\/api\.zhihu\.com\/commercial_api\/(launch|real_time)
|
||||
# > 追书神器
|
||||
URL-REGEX,^https?:\/\/(api|b)\.zhuishushenqi\.com\/advert
|
||||
URL-REGEX,^https?:\/\/api\.zhuishushenqi\.com\/splashes\/ios
|
||||
URL-REGEX,^https?:\/\/api\.zhuishushenqi\.com\/notification\/shelfMessage
|
||||
URL-REGEX,^https?:\/\/api\.zhuishushenqi\.com\/user\/bookshelf-updated
|
||||
URL-REGEX,^https?:\/\/itunes\.apple\.com\/lookup\?id=575826903
|
||||
# > 作业帮
|
||||
URL-REGEX,^https?:\/\/www\.zybang\.com\/adx\/
|
||||
# > 最右
|
||||
URL-REGEX,^https?:\/\/api\.izuiyou\.com\/ad\/
|
||||
14
rules/ConnersHua/Surge/Ruleset/Apple.list
Normal file
14
rules/ConnersHua/Surge/Ruleset/Apple.list
Normal file
@@ -0,0 +1,14 @@
|
||||
# 如无特殊需求可不用加此策略及选择代理,在大部分地区 Apple CDN 可正常工作,使用代理后可能导致「Cannot Connect to iCloud」等问题
|
||||
# > Apple
|
||||
DOMAIN-SUFFIX,aaplimg.com
|
||||
DOMAIN-SUFFIX,apple.co
|
||||
DOMAIN-SUFFIX,apple.com
|
||||
DOMAIN-SUFFIX,apple-cloudkit.com
|
||||
DOMAIN-SUFFIX,appstore.com
|
||||
DOMAIN-SUFFIX,cdn-apple.com
|
||||
DOMAIN-SUFFIX,crashlytics.com
|
||||
DOMAIN-SUFFIX,icloud.com
|
||||
DOMAIN-SUFFIX,icloud-content.com
|
||||
DOMAIN-SUFFIX,me.com
|
||||
DOMAIN-SUFFIX,mzstatic.com
|
||||
DOMAIN,www-cdn.icloud.com.akadns.net
|
||||
10
rules/ConnersHua/Surge/Ruleset/AppleNews.list
Normal file
10
rules/ConnersHua/Surge/Ruleset/AppleNews.list
Normal file
@@ -0,0 +1,10 @@
|
||||
# > Apple News and Apple Map TOMTOM Version
|
||||
DOMAIN,gspe1-ssl.ls.apple.com
|
||||
PROCESS-NAME,News
|
||||
USER-AGENT,AppleNews*
|
||||
USER-AGENT,com.apple.news*
|
||||
DOMAIN-SUFFIX,apple.news
|
||||
DOMAIN,news-client.apple.com
|
||||
DOMAIN,news-edge.apple.com
|
||||
DOMAIN,news-events.apple.com
|
||||
DOMAIN,apple.comscoreresearch.com
|
||||
327
rules/ConnersHua/Surge/Ruleset/China.list
Normal file
327
rules/ConnersHua/Surge/Ruleset/China.list
Normal file
@@ -0,0 +1,327 @@
|
||||
# China Area Network
|
||||
# > 360
|
||||
DOMAIN-SUFFIX,qhres.com
|
||||
DOMAIN-SUFFIX,qhimg.com
|
||||
# > Akamai
|
||||
DOMAIN-SUFFIX,akadns.net
|
||||
# DOMAIN-SUFFIX,akamai.net
|
||||
# DOMAIN-SUFFIX,akamaiedge.net
|
||||
# DOMAIN-SUFFIX,akamaihd.net
|
||||
# DOMAIN-SUFFIX,akamaistream.net
|
||||
# DOMAIN-SUFFIX,akamaized.net
|
||||
# > Alibaba
|
||||
USER-AGENT,%E4%BC%98%E9%85%B7*
|
||||
DOMAIN-SUFFIX,alibaba.com
|
||||
DOMAIN-SUFFIX,alicdn.com
|
||||
DOMAIN-SUFFIX,alikunlun.com
|
||||
DOMAIN-SUFFIX,alipay.com
|
||||
DOMAIN-SUFFIX,amap.com
|
||||
DOMAIN-SUFFIX,autonavi.com
|
||||
DOMAIN-SUFFIX,dingtalk.com
|
||||
DOMAIN-SUFFIX,mxhichina.com
|
||||
DOMAIN-SUFFIX,soku.com
|
||||
DOMAIN-SUFFIX,taobao.com
|
||||
DOMAIN-SUFFIX,tmall.com
|
||||
DOMAIN-SUFFIX,tmall.hk
|
||||
DOMAIN-SUFFIX,ykimg.com
|
||||
DOMAIN-SUFFIX,youku.com
|
||||
DOMAIN-SUFFIX,xiami.com
|
||||
DOMAIN-SUFFIX,xiami.net
|
||||
# > Apple
|
||||
DOMAIN-SUFFIX,aaplimg.com
|
||||
DOMAIN-SUFFIX,apple.co
|
||||
DOMAIN-SUFFIX,apple.com
|
||||
DOMAIN-SUFFIX,apple-cloudkit.com
|
||||
DOMAIN-SUFFIX,appstore.com
|
||||
DOMAIN-SUFFIX,cdn-apple.com
|
||||
DOMAIN-SUFFIX,crashlytics.com
|
||||
DOMAIN-SUFFIX,icloud.com
|
||||
DOMAIN-SUFFIX,icloud-content.com
|
||||
DOMAIN-SUFFIX,me.com
|
||||
DOMAIN-SUFFIX,mzstatic.com
|
||||
DOMAIN,www-cdn.icloud.com.akadns.net
|
||||
# > Baidu
|
||||
DOMAIN-SUFFIX,baidu.com
|
||||
DOMAIN-SUFFIX,baidubcr.com
|
||||
DOMAIN-SUFFIX,bdstatic.com
|
||||
DOMAIN-SUFFIX,yunjiasu-cdn.net
|
||||
# > bilibili
|
||||
DOMAIN-SUFFIX,acgvideo.com
|
||||
DOMAIN-SUFFIX,biliapi.com
|
||||
DOMAIN-SUFFIX,biliapi.net
|
||||
DOMAIN-SUFFIX,bilibili.com
|
||||
DOMAIN-SUFFIX,bilibili.tv
|
||||
DOMAIN-SUFFIX,hdslb.com
|
||||
# > Blizzard
|
||||
DOMAIN-SUFFIX,blizzard.com
|
||||
DOMAIN-SUFFIX,battle.net
|
||||
DOMAIN,blzddist1-a.akamaihd.net
|
||||
# > ByteDance
|
||||
DOMAIN-SUFFIX,feiliao.com
|
||||
DOMAIN-SUFFIX,pstatp.com
|
||||
DOMAIN-SUFFIX,snssdk.com
|
||||
DOMAIN-SUFFIX,iesdouyin.com
|
||||
DOMAIN-SUFFIX,toutiao.com
|
||||
# > CCTV
|
||||
DOMAIN-SUFFIX,cctv.com
|
||||
DOMAIN-SUFFIX,cctvpic.com
|
||||
DOMAIN-SUFFIX,livechina.com
|
||||
# > DiDi
|
||||
DOMAIN-SUFFIX,didialift.com
|
||||
DOMAIN-SUFFIX,didiglobal.com
|
||||
DOMAIN-SUFFIX,udache.com
|
||||
# > 蛋蛋赞
|
||||
DOMAIN-SUFFIX,343480.com
|
||||
DOMAIN-SUFFIX,baduziyuan.com
|
||||
DOMAIN-SUFFIX,com-hs-hkdy.com
|
||||
DOMAIN-SUFFIX,czybjz.com
|
||||
DOMAIN-SUFFIX,dandanzan.com
|
||||
DOMAIN-SUFFIX,fjhps.com
|
||||
DOMAIN-SUFFIX,kuyunbo.club
|
||||
# > ChinaNet
|
||||
DOMAIN-SUFFIX,21cn.com
|
||||
# > HunanTV
|
||||
DOMAIN-SUFFIX,hitv.com
|
||||
DOMAIN-SUFFIX,mgtv.com
|
||||
# > iQiyi
|
||||
DOMAIN-SUFFIX,iqiyi.com
|
||||
DOMAIN-SUFFIX,iqiyipic.com
|
||||
DOMAIN-SUFFIX,71.am.com
|
||||
# > JD
|
||||
DOMAIN-SUFFIX,jd.com
|
||||
DOMAIN-SUFFIX,jd.hk
|
||||
DOMAIN-SUFFIX,jdpay.com
|
||||
DOMAIN-SUFFIX,360buyimg.com
|
||||
# > Kingsoft
|
||||
DOMAIN-SUFFIX,iciba.com
|
||||
DOMAIN-SUFFIX,ksosoft.com
|
||||
# > Meitu
|
||||
DOMAIN-SUFFIX,meitu.com
|
||||
DOMAIN-SUFFIX,meitudata.com
|
||||
DOMAIN-SUFFIX,meitustat.com
|
||||
DOMAIN-SUFFIX,meipai.com
|
||||
# > MI
|
||||
DOMAIN-SUFFIX,duokan.com
|
||||
DOMAIN-SUFFIX,mi-img.com
|
||||
DOMAIN-SUFFIX,miui.com
|
||||
DOMAIN-SUFFIX,miwifi.com
|
||||
DOMAIN-SUFFIX,xiaomi.com
|
||||
# > Microsoft
|
||||
DOMAIN-SUFFIX,microsoft.com
|
||||
DOMAIN-SUFFIX,msecnd.net
|
||||
DOMAIN-SUFFIX,office365.com
|
||||
DOMAIN-SUFFIX,outlook.com
|
||||
DOMAIN-SUFFIX,s-microsoft.com
|
||||
DOMAIN-SUFFIX,visualstudio.com
|
||||
DOMAIN-SUFFIX,windows.com
|
||||
DOMAIN-SUFFIX,windowsupdate.com
|
||||
DOMAIN,officecdn-microsoft-com.akamaized.net
|
||||
# > NetEase
|
||||
USER-AGENT,NeteaseMusic*
|
||||
USER-AGENT,%E7%BD%91%E6%98%93%E4%BA%91%E9%9F%B3%E4%B9%90*
|
||||
DOMAIN-SUFFIX,163.com
|
||||
DOMAIN-SUFFIX,126.net
|
||||
DOMAIN-SUFFIX,127.net
|
||||
DOMAIN-SUFFIX,163yun.com
|
||||
DOMAIN-SUFFIX,lofter.com
|
||||
DOMAIN-SUFFIX,netease.com
|
||||
DOMAIN-SUFFIX,ydstatic.com
|
||||
# > Sina
|
||||
DOMAIN-SUFFIX,sina.com
|
||||
DOMAIN-SUFFIX,weibo.com
|
||||
DOMAIN-SUFFIX,weibocdn.com
|
||||
# > Sohu
|
||||
DOMAIN-SUFFIX,sohu.com
|
||||
DOMAIN-SUFFIX,sohucs.com
|
||||
DOMAIN-SUFFIX,sohu-inc.com
|
||||
DOMAIN-SUFFIX,v-56.com
|
||||
# > Sogo
|
||||
DOMAIN-SUFFIX,sogo.com
|
||||
DOMAIN-SUFFIX,sogou.com
|
||||
DOMAIN-SUFFIX,sogoucdn.com
|
||||
# > Steam
|
||||
DOMAIN-SUFFIX,steampowered.com
|
||||
DOMAIN-SUFFIX,steam-chat.com
|
||||
DOMAIN-SUFFIX,steamgames.com
|
||||
DOMAIN-SUFFIX,steamusercontent.com
|
||||
DOMAIN-SUFFIX,steamcontent.com
|
||||
DOMAIN-SUFFIX,steamstatic.com
|
||||
DOMAIN-SUFFIX,steamcdn-a.akamaihd.net
|
||||
DOMAIN-SUFFIX,steamstat.us
|
||||
# > Tencent
|
||||
USER-AGENT,MicroMessenger%20Client
|
||||
USER-AGENT,WeChat*
|
||||
DOMAIN-SUFFIX,gtimg.com
|
||||
DOMAIN-SUFFIX,idqqimg.com
|
||||
DOMAIN-SUFFIX,igamecj.com
|
||||
DOMAIN-SUFFIX,myapp.com
|
||||
DOMAIN-SUFFIX,myqcloud.com
|
||||
DOMAIN-SUFFIX,qq.com
|
||||
DOMAIN-SUFFIX,tencent.com
|
||||
DOMAIN-SUFFIX,tencent-cloud.net
|
||||
# > YYeTs
|
||||
USER-AGENT,YYeTs*
|
||||
DOMAIN-SUFFIX,jstucdn.com
|
||||
DOMAIN-SUFFIX,zimuzu.io
|
||||
DOMAIN-SUFFIX,zimuzu.tv
|
||||
DOMAIN-SUFFIX,zmz2019.com
|
||||
DOMAIN-SUFFIX,zmzapi.com
|
||||
DOMAIN-SUFFIX,zmzapi.net
|
||||
DOMAIN-SUFFIX,zmzfile.com
|
||||
# > Content Delivery Network
|
||||
DOMAIN-SUFFIX,ccgslb.com
|
||||
DOMAIN-SUFFIX,ccgslb.net
|
||||
DOMAIN-SUFFIX,chinanetcenter.com
|
||||
DOMAIN-SUFFIX,meixincdn.com
|
||||
DOMAIN-SUFFIX,ourdvs.com
|
||||
DOMAIN-SUFFIX,staticdn.net
|
||||
DOMAIN-SUFFIX,wangsu.com
|
||||
# > IP Query
|
||||
DOMAIN-SUFFIX,ipip.net
|
||||
DOMAIN-SUFFIX,ip.la
|
||||
DOMAIN-SUFFIX,ip-cdn.com
|
||||
DOMAIN-SUFFIX,ipv6-test.com
|
||||
DOMAIN-SUFFIX,test-ipv6.com
|
||||
DOMAIN-SUFFIX,whatismyip.com
|
||||
# > Speed Test
|
||||
# DOMAIN-SUFFIX,speedtest.net
|
||||
DOMAIN-SUFFIX,netspeedtestmaster.com
|
||||
DOMAIN,speedtest.macpaw.com
|
||||
# > Private Tracker
|
||||
DOMAIN-SUFFIX,awesome-hd.me
|
||||
DOMAIN-SUFFIX,broadcasthe.net
|
||||
DOMAIN-SUFFIX,chdbits.co
|
||||
DOMAIN-SUFFIX,classix-unlimited.co.uk
|
||||
DOMAIN-SUFFIX,empornium.me
|
||||
DOMAIN-SUFFIX,gazellegames.net
|
||||
DOMAIN-SUFFIX,hdchina.org
|
||||
DOMAIN-SUFFIX,hdsky.me
|
||||
DOMAIN-SUFFIX,jpopsuki.eu
|
||||
DOMAIN-SUFFIX,keepfrds.com
|
||||
DOMAIN-SUFFIX,m-team.cc
|
||||
DOMAIN-SUFFIX,nanyangpt.com
|
||||
DOMAIN-SUFFIX,ncore.cc
|
||||
DOMAIN-SUFFIX,open.cd
|
||||
DOMAIN-SUFFIX,ourbits.club
|
||||
DOMAIN-SUFFIX,passthepopcorn.me
|
||||
DOMAIN-SUFFIX,privatehd.to
|
||||
DOMAIN-SUFFIX,redacted.ch
|
||||
DOMAIN-SUFFIX,springsunday.net
|
||||
DOMAIN-SUFFIX,tjupt.org
|
||||
DOMAIN-SUFFIX,totheglory.im
|
||||
# > Other
|
||||
DOMAIN-SUFFIX,cn
|
||||
DOMAIN-SUFFIX,360in.com
|
||||
DOMAIN-SUFFIX,51ym.me
|
||||
DOMAIN-SUFFIX,8686c.com
|
||||
DOMAIN-SUFFIX,abchina.com
|
||||
DOMAIN-SUFFIX,accuweather.com
|
||||
DOMAIN-SUFFIX,aicoinstorge.com
|
||||
DOMAIN-SUFFIX,air-matters.com
|
||||
DOMAIN-SUFFIX,air-matters.io
|
||||
DOMAIN-SUFFIX,aixifan.com
|
||||
DOMAIN-SUFFIX,amd.com
|
||||
DOMAIN-SUFFIX,b612.net
|
||||
DOMAIN-SUFFIX,bdatu.com
|
||||
DOMAIN-SUFFIX,beitaichufang.com
|
||||
DOMAIN-SUFFIX,bjango.com
|
||||
DOMAIN-SUFFIX,booking.com
|
||||
DOMAIN-SUFFIX,bstatic.com
|
||||
DOMAIN-SUFFIX,cailianpress.com
|
||||
DOMAIN-SUFFIX,camera360.com
|
||||
DOMAIN-SUFFIX,chinaso.com
|
||||
DOMAIN-SUFFIX,chua.pro
|
||||
DOMAIN-SUFFIX,chuimg.com
|
||||
DOMAIN-SUFFIX,chunyu.mobi
|
||||
DOMAIN-SUFFIX,chushou.tv
|
||||
DOMAIN-SUFFIX,cmbchina.com
|
||||
DOMAIN-SUFFIX,cmbimg.com
|
||||
DOMAIN-SUFFIX,ctrip.com
|
||||
DOMAIN-SUFFIX,dfcfw.com
|
||||
DOMAIN-SUFFIX,docschina.org
|
||||
DOMAIN-SUFFIX,douban.com
|
||||
DOMAIN-SUFFIX,doubanio.com
|
||||
DOMAIN-SUFFIX,douyu.com
|
||||
DOMAIN-SUFFIX,dxycdn.com
|
||||
DOMAIN-SUFFIX,dytt8.net
|
||||
DOMAIN-SUFFIX,eastmoney.com
|
||||
DOMAIN-SUFFIX,eudic.net
|
||||
DOMAIN-SUFFIX,feng.com
|
||||
DOMAIN-SUFFIX,fengkongcloud.com
|
||||
DOMAIN-SUFFIX,frdic.com
|
||||
DOMAIN-SUFFIX,futu5.com
|
||||
DOMAIN-SUFFIX,futunn.com
|
||||
DOMAIN-SUFFIX,gandi.net
|
||||
DOMAIN-SUFFIX,geilicdn.com
|
||||
DOMAIN-SUFFIX,getpricetag.com
|
||||
DOMAIN-SUFFIX,gifshow.com
|
||||
DOMAIN-SUFFIX,godic.net
|
||||
DOMAIN-SUFFIX,hicloud.com
|
||||
DOMAIN-SUFFIX,hongxiu.com
|
||||
DOMAIN-SUFFIX,hostbuf.com
|
||||
DOMAIN-SUFFIX,huxiucdn.com
|
||||
DOMAIN-SUFFIX,huya.com
|
||||
DOMAIN-SUFFIX,infinitynewtab.com
|
||||
DOMAIN-SUFFIX,ithome.com
|
||||
DOMAIN-SUFFIX,java.com
|
||||
DOMAIN-SUFFIX,jidian.im
|
||||
DOMAIN-SUFFIX,kaiyanapp.com
|
||||
DOMAIN-SUFFIX,kaspersky-labs.com
|
||||
DOMAIN-SUFFIX,keepcdn.com
|
||||
DOMAIN-SUFFIX,kkmh.com
|
||||
DOMAIN-SUFFIX,licdn.com
|
||||
DOMAIN-SUFFIX,linkedin.com
|
||||
DOMAIN-SUFFIX,loli.net
|
||||
DOMAIN-SUFFIX,luojilab.com
|
||||
DOMAIN-SUFFIX,maoyan.com
|
||||
DOMAIN-SUFFIX,maoyun.tv
|
||||
DOMAIN-SUFFIX,meituan.com
|
||||
DOMAIN-SUFFIX,meituan.net
|
||||
DOMAIN-SUFFIX,mobike.com
|
||||
DOMAIN-SUFFIX,moke.com
|
||||
DOMAIN-SUFFIX,mubu.com
|
||||
DOMAIN-SUFFIX,myzaker.com
|
||||
DOMAIN-SUFFIX,nim-lang-cn.org
|
||||
DOMAIN-SUFFIX,nvidia.com
|
||||
DOMAIN-SUFFIX,oracle.com
|
||||
DOMAIN-SUFFIX,paypal.com
|
||||
DOMAIN-SUFFIX,paypalobjects.com
|
||||
DOMAIN-SUFFIX,qdaily.com
|
||||
DOMAIN-SUFFIX,qidian.com
|
||||
DOMAIN-SUFFIX,qyer.com
|
||||
DOMAIN-SUFFIX,qyerstatic.com
|
||||
DOMAIN-SUFFIX,raychase.net
|
||||
DOMAIN-SUFFIX,ronghub.com
|
||||
DOMAIN-SUFFIX,ruguoapp.com
|
||||
DOMAIN-SUFFIX,s-reader.com
|
||||
DOMAIN-SUFFIX,sankuai.com
|
||||
DOMAIN-SUFFIX,scomper.me
|
||||
DOMAIN-SUFFIX,seafile.com
|
||||
DOMAIN-SUFFIX,sm.ms
|
||||
DOMAIN-SUFFIX,smzdm.com
|
||||
DOMAIN-SUFFIX,snapdrop.net
|
||||
DOMAIN-SUFFIX,snwx.com
|
||||
DOMAIN-SUFFIX,sspai.com
|
||||
DOMAIN-SUFFIX,takungpao.com
|
||||
DOMAIN-SUFFIX,teamviewer.com
|
||||
DOMAIN-SUFFIX,tianyancha.com
|
||||
DOMAIN-SUFFIX,udacity.com
|
||||
DOMAIN-SUFFIX,uning.com
|
||||
DOMAIN-SUFFIX,vmware.com
|
||||
DOMAIN-SUFFIX,weather.com
|
||||
DOMAIN-SUFFIX,weico.cc
|
||||
DOMAIN-SUFFIX,weidian.com
|
||||
DOMAIN-SUFFIX,xiachufang.com
|
||||
DOMAIN-SUFFIX,ximalaya.com
|
||||
DOMAIN-SUFFIX,xinhuanet.com
|
||||
DOMAIN-SUFFIX,xmcdn.com
|
||||
DOMAIN-SUFFIX,yangkeduo.com
|
||||
DOMAIN-SUFFIX,zhangzishi.cc
|
||||
DOMAIN-SUFFIX,zhihu.com
|
||||
DOMAIN-SUFFIX,zhimg.com
|
||||
DOMAIN-SUFFIX,zhuihd.com
|
||||
DOMAIN,download.jetbrains.com
|
||||
DOMAIN,images-cn.ssl-images-amazon.com
|
||||
|
||||
# DNSPod Public DNS+
|
||||
IP-CIDR,119.28.28.28/32,no-resolve
|
||||
16
rules/ConnersHua/Surge/Ruleset/Cloudflare.list
Normal file
16
rules/ConnersHua/Surge/Ruleset/Cloudflare.list
Normal file
@@ -0,0 +1,16 @@
|
||||
# > Cloudflare
|
||||
DOMAIN-SUFFIX,cloudflare.com
|
||||
IP-CIDR,173.245.48.0/20
|
||||
IP-CIDR,103.21.244.0/22
|
||||
IP-CIDR,103.22.200.0/22
|
||||
IP-CIDR,103.31.4.0/22
|
||||
IP-CIDR,141.101.64.0/18
|
||||
IP-CIDR,108.162.192.0/18
|
||||
IP-CIDR,190.93.240.0/20
|
||||
IP-CIDR,188.114.96.0/20
|
||||
IP-CIDR,197.234.240.0/22
|
||||
IP-CIDR,198.41.128.0/17
|
||||
IP-CIDR,162.158.0.0/15
|
||||
IP-CIDR,104.16.0.0/12
|
||||
IP-CIDR,172.64.0.0/13
|
||||
IP-CIDR,131.0.72.0/22
|
||||
7
rules/ConnersHua/Surge/Ruleset/DomesticMedia.list
Normal file
7
rules/ConnersHua/Surge/Ruleset/DomesticMedia.list
Normal file
@@ -0,0 +1,7 @@
|
||||
# (DomesticMedia)
|
||||
# > 愛奇藝台灣站
|
||||
DOMAIN-SUFFIX,iqiyi.com
|
||||
DOMAIN-SUFFIX,71.am
|
||||
# > bilibili
|
||||
DOMAIN-SUFFIX,bilibili.com
|
||||
DOMAIN,upos-hz-mirrorakam.akamaized.net
|
||||
203
rules/ConnersHua/Surge/Ruleset/ForeignMedia.list
Normal file
203
rules/ConnersHua/Surge/Ruleset/ForeignMedia.list
Normal file
@@ -0,0 +1,203 @@
|
||||
# (ForeignMedia)
|
||||
# (Music)
|
||||
# > Deezer
|
||||
USER-AGENT,Deezer*
|
||||
DOMAIN-SUFFIX,deezer.com
|
||||
DOMAIN-SUFFIX,dzcdn.net
|
||||
# > KKBOX
|
||||
DOMAIN-SUFFIX,kkbox.com
|
||||
DOMAIN-SUFFIX,kkbox.com.tw
|
||||
DOMAIN-SUFFIX,kfs.io
|
||||
# > JOOX
|
||||
USER-AGENT,WeMusic*
|
||||
USER-AGENT,JOOX*
|
||||
DOMAIN-SUFFIX,joox.com
|
||||
# > Pandora
|
||||
USER-AGENT,Pandora*
|
||||
DOMAIN-SUFFIX,pandora.com
|
||||
# > SoundCloud
|
||||
USER-AGENT,SoundCloud*
|
||||
DOMAIN-SUFFIX,p-cdn.us
|
||||
DOMAIN-SUFFIX,sndcdn.com
|
||||
DOMAIN-SUFFIX,soundcloud.com
|
||||
# > Spotify
|
||||
USER-AGENT,Spotify*
|
||||
DOMAIN-SUFFIX,pscdn.co
|
||||
DOMAIN-SUFFIX,scdn.co
|
||||
DOMAIN-SUFFIX,spotify.com
|
||||
DOMAIN-SUFFIX,spoti.fi
|
||||
# > TIDAL
|
||||
USER-AGENT,TIDAL*
|
||||
DOMAIN-SUFFIX,tidal.com
|
||||
# > YouTubeMusic
|
||||
USER-AGENT,com.google.ios.youtubemusic*
|
||||
USER-AGENT,YouTubeMusic*
|
||||
# (Video)
|
||||
# > All4
|
||||
USER-AGENT,All4*
|
||||
DOMAIN-SUFFIX,c4assets.com
|
||||
DOMAIN-SUFFIX,channel4.com
|
||||
# > AbemaTV
|
||||
USER-AGENT,AbemaTV*
|
||||
DOMAIN-SUFFIX,abema.io
|
||||
DOMAIN-SUFFIX,ameba.jp
|
||||
DOMAIN-SUFFIX,abema.tv
|
||||
DOMAIN-SUFFIX,hayabusa.io
|
||||
DOMAIN,abematv.akamaized.net
|
||||
DOMAIN,ds-linear-abematv.akamaized.net
|
||||
DOMAIN,ds-vod-abematv.akamaized.net
|
||||
DOMAIN,linear-abematv.akamaized.net
|
||||
# > Amazon Prime Video
|
||||
USER-AGENT,InstantVideo.US*
|
||||
USER-AGENT,Prime%20Video*
|
||||
DOMAIN-SUFFIX,aiv-cdn.net
|
||||
DOMAIN-SUFFIX,aiv-delivery.net
|
||||
DOMAIN-SUFFIX,amazonvideo.com
|
||||
DOMAIN-SUFFIX,media-amazon.com
|
||||
DOMAIN-SUFFIX,primevideo.com
|
||||
# > Bahamut
|
||||
USER-AGENT,Anime*
|
||||
DOMAIN-SUFFIX,bahamut.com.tw
|
||||
DOMAIN-SUFFIX,gamer.com.tw
|
||||
DOMAIN,gamer-cds.cdn.hinet.net
|
||||
DOMAIN,gamer2-cds.cdn.hinet.net
|
||||
# > BBC iPlayer
|
||||
USER-AGENT,BBCiPlayer*
|
||||
DOMAIN-SUFFIX,bbc.co.uk
|
||||
DOMAIN-SUFFIX,bbci.co.uk
|
||||
DOMAIN-KEYWORD,bbcfmt
|
||||
DOMAIN-KEYWORD,uk-live
|
||||
# > DAZN
|
||||
USER-AGENT,DAZN*
|
||||
DOMAIN-SUFFIX,dazn.com
|
||||
DOMAIN-SUFFIX,dazn-api.com
|
||||
DOMAIN,d151l6v8er5bdm.cloudfront.net
|
||||
DOMAIN-KEYWORD,voddazn
|
||||
# > Disney+
|
||||
USER-AGENT,Disney+*
|
||||
DOMAIN-SUFFIX,bamgrid.com
|
||||
DOMAIN-SUFFIX,disney-plus.net
|
||||
DOMAIN-SUFFIX,disneyplus.com
|
||||
DOMAIN-SUFFIX,dssott.com
|
||||
DOMAIN,cdn.registerdisney.go.com
|
||||
# > encoreTVB
|
||||
USER-AGENT,encoreTVB*
|
||||
DOMAIN-SUFFIX,encoretvb.com
|
||||
DOMAIN,edge.api.brightcove.com
|
||||
DOMAIN,bcbolt446c5271-a.akamaihd.net
|
||||
# > Fox+ & Fox Now
|
||||
USER-AGENT,FOX%20NOW*
|
||||
USER-AGENT,FOXPlus*
|
||||
DOMAIN-SUFFIX,dashasiafox.akamaized.net
|
||||
DOMAIN-SUFFIX,fox.com
|
||||
DOMAIN-SUFFIX,foxdcg.com
|
||||
DOMAIN-SUFFIX,foxplus.com
|
||||
DOMAIN-SUFFIX,staticasiafox.akamaized.net
|
||||
DOMAIN-SUFFIX,theplatform.com
|
||||
DOMAIN-SUFFIX,uplynk.com
|
||||
# > HBO Now & HBO GO
|
||||
USER-AGENT,HBO%20NOW*
|
||||
USER-AGENT,HBO%20GO*
|
||||
USER-AGENT,HBOAsia*
|
||||
DOMAIN-SUFFIX,hbo.com
|
||||
DOMAIN-SUFFIX,hbogo.com
|
||||
DOMAIN-SUFFIX,hboasia.com
|
||||
DOMAIN-SUFFIX,hbogo.com
|
||||
DOMAIN-SUFFIX,hbogoasia.hk
|
||||
DOMAIN,44wilhpljf.execute-api.ap-southeast-1.amazonaws.com
|
||||
DOMAIN,bcbolthboa-a.akamaihd.net
|
||||
DOMAIN,cf-images.ap-southeast-1.prod.boltdns.net
|
||||
DOMAIN,manifest.prod.boltdns.net
|
||||
DOMAIN,s3-ap-southeast-1.amazonaws.com
|
||||
# > 华文电视
|
||||
USER-AGENT,HWTVMobile*
|
||||
DOMAIN-SUFFIX,5itv.tv
|
||||
DOMAIN-SUFFIX,ocnttv.com
|
||||
# > Hulu
|
||||
DOMAIN-SUFFIX,hulu.com
|
||||
DOMAIN-SUFFIX,huluim.com
|
||||
DOMAIN-SUFFIX,hulustream.com
|
||||
# > Hulu(フールー)
|
||||
DOMAIN-SUFFIX,happyon.jp
|
||||
DOMAIN-SUFFIX,hulu.jp
|
||||
# > ITV
|
||||
USER-AGENT,ITV_Player*
|
||||
DOMAIN-SUFFIX,itv.com
|
||||
DOMAIN-SUFFIX,itvstatic.com
|
||||
DOMAIN,itvpnpmobile-a.akamaihd.net
|
||||
# > KKTV
|
||||
USER-AGENT,KKTV*
|
||||
USER-AGENT,com.kktv.ios.kktv*
|
||||
DOMAIN-SUFFIX,kktv.com.tw
|
||||
DOMAIN-SUFFIX,kktv.me
|
||||
DOMAIN,kktv-theater.kk.stream
|
||||
# > Line TV
|
||||
USER-AGENT,LINE%20TV*
|
||||
DOMAIN-SUFFIX,linetv.tw
|
||||
DOMAIN,d3c7rimkq79yfu.cloudfront.net
|
||||
# > LiTV
|
||||
DOMAIN-SUFFIX,litv.tv
|
||||
DOMAIN,litvfreemobile-hichannel.cdn.hinet.net
|
||||
# > My5
|
||||
USER-AGENT,My5*
|
||||
DOMAIN-SUFFIX,channel5.com
|
||||
DOMAIN-SUFFIX,my5.tv
|
||||
DOMAIN,d349g9zuie06uo.cloudfront.net
|
||||
# > myTV SUPER
|
||||
USER-AGENT,mytv*
|
||||
DOMAIN-SUFFIX,mytvsuper.com
|
||||
DOMAIN-SUFFIX,tvb.com
|
||||
# > Netflix
|
||||
USER-AGENT,Argo*
|
||||
DOMAIN-SUFFIX,netflix.com
|
||||
DOMAIN-SUFFIX,netflix.net
|
||||
DOMAIN-SUFFIX,nflxext.com
|
||||
DOMAIN-SUFFIX,nflximg.com
|
||||
DOMAIN-SUFFIX,nflximg.net
|
||||
DOMAIN-SUFFIX,nflxso.net
|
||||
DOMAIN-SUFFIX,nflxvideo.net
|
||||
IP-CIDR,23.246.0.0/18,no-resolve
|
||||
IP-CIDR,37.77.184.0/21,no-resolve
|
||||
IP-CIDR,45.57.0.0/17,no-resolve
|
||||
IP-CIDR,64.120.128.0/17,no-resolve
|
||||
IP-CIDR,66.197.128.0/17,no-resolve
|
||||
IP-CIDR,108.175.32.0/20,no-resolve
|
||||
IP-CIDR,192.173.64.0/18,no-resolve
|
||||
IP-CIDR,198.38.96.0/19,no-resolve
|
||||
IP-CIDR,198.45.48.0/20,no-resolve
|
||||
# > niconico
|
||||
USER-AGENT,Niconico*
|
||||
DOMAIN-SUFFIX,dmc.nico
|
||||
DOMAIN-SUFFIX,nicovideo.jp
|
||||
DOMAIN-SUFFIX,nimg.jp
|
||||
DOMAIN-SUFFIX,socdm.com
|
||||
# > PBS
|
||||
USER-AGENT,PBS*
|
||||
DOMAIN-SUFFIX,pbs.org
|
||||
# > Pornhub
|
||||
DOMAIN-SUFFIX,phncdn.com
|
||||
DOMAIN-SUFFIX,pornhub.com
|
||||
DOMAIN-SUFFIX,pornhubpremium.com
|
||||
# > 台湾好
|
||||
USER-AGENT,TaiwanGood*
|
||||
DOMAIN-SUFFIX,skyking.com.tw
|
||||
DOMAIN,hamifans.emome.net
|
||||
# > Twitch
|
||||
DOMAIN-SUFFIX,twitch.tv
|
||||
DOMAIN-SUFFIX,twitchcdn.net
|
||||
DOMAIN-SUFFIX,ttvnw.net
|
||||
# > ViuTV
|
||||
USER-AGENT,Viu*
|
||||
USER-AGENT,ViuTV*
|
||||
DOMAIN-SUFFIX,viu.com
|
||||
DOMAIN-SUFFIX,viu.tv
|
||||
DOMAIN,api.viu.now.com
|
||||
DOMAIN,d1k2us671qcoau.cloudfront.net
|
||||
DOMAIN,d2anahhhmp1ffz.cloudfront.net
|
||||
DOMAIN,dfp6rglgjqszk.cloudfront.net
|
||||
# > YouTube
|
||||
USER-AGENT,com.google.ios.youtube*
|
||||
USER-AGENT,YouTube*
|
||||
DOMAIN-SUFFIX,googlevideo.com
|
||||
DOMAIN-SUFFIX,youtube.com
|
||||
DOMAIN,youtubei.googleapis.com
|
||||
566
rules/ConnersHua/Surge/Ruleset/Global.list
Normal file
566
rules/ConnersHua/Surge/Ruleset/Global.list
Normal file
@@ -0,0 +1,566 @@
|
||||
# (DNS Cache Pollution Protection)
|
||||
# > Google
|
||||
DOMAIN-SUFFIX,appspot.com
|
||||
DOMAIN-SUFFIX,blogger.com
|
||||
DOMAIN-SUFFIX,getoutline.org
|
||||
DOMAIN-SUFFIX,gvt0.com
|
||||
DOMAIN-SUFFIX,gvt1.com
|
||||
DOMAIN-SUFFIX,gvt3.com
|
||||
DOMAIN-SUFFIX,xn--ngstr-lra8j.com
|
||||
DOMAIN-KEYWORD,google
|
||||
DOMAIN-KEYWORD,blogspot
|
||||
# > Microsoft
|
||||
DOMAIN-SUFFIX,onedrive.live.com
|
||||
DOMAIN-SUFFIX,xboxlive.com
|
||||
# > Facebook
|
||||
DOMAIN-SUFFIX,cdninstagram.com
|
||||
DOMAIN-SUFFIX,fb.com
|
||||
DOMAIN-SUFFIX,fb.me
|
||||
DOMAIN-SUFFIX,fbaddins.com
|
||||
DOMAIN-SUFFIX,fbcdn.net
|
||||
DOMAIN-SUFFIX,fbsbx.com
|
||||
DOMAIN-SUFFIX,fbworkmail.com
|
||||
DOMAIN-SUFFIX,instagram.com
|
||||
DOMAIN-SUFFIX,m.me
|
||||
DOMAIN-SUFFIX,messenger.com
|
||||
DOMAIN-SUFFIX,oculus.com
|
||||
DOMAIN-SUFFIX,oculuscdn.com
|
||||
DOMAIN-SUFFIX,rocksdb.org
|
||||
DOMAIN-SUFFIX,whatsapp.com
|
||||
DOMAIN-SUFFIX,whatsapp.net
|
||||
DOMAIN-KEYWORD,facebook
|
||||
IP-CIDR,3.123.36.126/32,no-resolve
|
||||
IP-CIDR,35.157.215.84/32,no-resolve
|
||||
IP-CIDR,35.157.217.255/32,no-resolve
|
||||
IP-CIDR,52.58.209.134/32,no-resolve
|
||||
IP-CIDR,54.93.124.31/32,no-resolve
|
||||
IP-CIDR,54.162.243.80/32,no-resolve
|
||||
IP-CIDR,54.173.34.141/32,no-resolve
|
||||
IP-CIDR,54.235.23.242/32,no-resolve
|
||||
IP-CIDR,169.45.248.118/32,no-resolve
|
||||
# > Twitter
|
||||
DOMAIN-SUFFIX,pscp.tv
|
||||
DOMAIN-SUFFIX,periscope.tv
|
||||
DOMAIN-SUFFIX,t.co
|
||||
DOMAIN-SUFFIX,twimg.co
|
||||
DOMAIN-SUFFIX,twimg.com
|
||||
DOMAIN-SUFFIX,twitpic.com
|
||||
DOMAIN-SUFFIX,vine.co
|
||||
DOMAIN-KEYWORD,twitter
|
||||
# > Telegram
|
||||
DOMAIN-SUFFIX,t.me
|
||||
DOMAIN-SUFFIX,tdesktop.com
|
||||
DOMAIN-SUFFIX,telegra.ph
|
||||
DOMAIN-SUFFIX,telegram.me
|
||||
DOMAIN-SUFFIX,telegram.org
|
||||
IP-CIDR,91.108.4.0/22,no-resolve
|
||||
IP-CIDR,91.108.8.0/22,no-resolve
|
||||
IP-CIDR,91.108.12.0/22,no-resolve
|
||||
IP-CIDR,91.108.16.0/22,no-resolve
|
||||
IP-CIDR,91.108.56.0/22,no-resolve
|
||||
IP-CIDR,149.154.160.0/20,no-resolve
|
||||
# > Line
|
||||
DOMAIN-SUFFIX,line.me
|
||||
DOMAIN-SUFFIX,line-apps.com
|
||||
DOMAIN-SUFFIX,line-scdn.net
|
||||
DOMAIN-SUFFIX,naver.jp
|
||||
IP-CIDR,103.2.30.0/23,no-resolve
|
||||
IP-CIDR,125.209.208.0/20,no-resolve
|
||||
IP-CIDR,147.92.128.0/17,no-resolve
|
||||
IP-CIDR,203.104.144.0/21,no-resolve
|
||||
# > Other
|
||||
DOMAIN-SUFFIX,4shared.com
|
||||
DOMAIN-SUFFIX,520cc.cc
|
||||
DOMAIN-SUFFIX,881903.com
|
||||
DOMAIN-SUFFIX,9cache.com
|
||||
DOMAIN-SUFFIX,9gag.com
|
||||
DOMAIN-SUFFIX,abc.com
|
||||
DOMAIN-SUFFIX,abc.net.au
|
||||
DOMAIN-SUFFIX,abebooks.com
|
||||
DOMAIN-SUFFIX,amazon.co.jp
|
||||
DOMAIN-SUFFIX,apigee.com
|
||||
DOMAIN-SUFFIX,apk-dl.com
|
||||
DOMAIN-SUFFIX,apkfind.com
|
||||
DOMAIN-SUFFIX,apkmirror.com
|
||||
DOMAIN-SUFFIX,apkmonk.com
|
||||
DOMAIN-SUFFIX,apkpure.com
|
||||
DOMAIN-SUFFIX,aptoide.com
|
||||
DOMAIN-SUFFIX,archive.is
|
||||
DOMAIN-SUFFIX,archive.org
|
||||
DOMAIN-SUFFIX,arte.tv
|
||||
DOMAIN-SUFFIX,artstation.com
|
||||
DOMAIN-SUFFIX,arukas.io
|
||||
DOMAIN-SUFFIX,ask.com
|
||||
DOMAIN-SUFFIX,avg.com
|
||||
DOMAIN-SUFFIX,avgle.com
|
||||
DOMAIN-SUFFIX,badoo.com
|
||||
DOMAIN-SUFFIX,bandwagonhost.com
|
||||
DOMAIN-SUFFIX,bbc.com
|
||||
DOMAIN-SUFFIX,behance.net
|
||||
DOMAIN-SUFFIX,bibox.com
|
||||
DOMAIN-SUFFIX,biggo.com.tw
|
||||
DOMAIN-SUFFIX,binance.com
|
||||
DOMAIN-SUFFIX,bitcointalk.org
|
||||
DOMAIN-SUFFIX,bitfinex.com
|
||||
DOMAIN-SUFFIX,bitmex.com
|
||||
DOMAIN-SUFFIX,bit-z.com
|
||||
DOMAIN-SUFFIX,bloglovin.com
|
||||
DOMAIN-SUFFIX,bloomberg.cn
|
||||
DOMAIN-SUFFIX,bloomberg.com
|
||||
DOMAIN-SUFFIX,blubrry.com
|
||||
DOMAIN-SUFFIX,book.com.tw
|
||||
DOMAIN-SUFFIX,booklive.jp
|
||||
DOMAIN-SUFFIX,books.com.tw
|
||||
DOMAIN-SUFFIX,boslife.net
|
||||
DOMAIN-SUFFIX,box.com
|
||||
DOMAIN-SUFFIX,businessinsider.com
|
||||
DOMAIN-SUFFIX,bwh1.net
|
||||
DOMAIN-SUFFIX,castbox.fm
|
||||
DOMAIN-SUFFIX,cbc.ca
|
||||
DOMAIN-SUFFIX,cdw.com
|
||||
DOMAIN-SUFFIX,change.org
|
||||
DOMAIN-SUFFIX,channelnewsasia.com
|
||||
DOMAIN-SUFFIX,ck101.com
|
||||
DOMAIN-SUFFIX,clarionproject.org
|
||||
DOMAIN-SUFFIX,clyp.it
|
||||
DOMAIN-SUFFIX,cna.com.tw
|
||||
DOMAIN-SUFFIX,comparitech.com
|
||||
DOMAIN-SUFFIX,conoha.jp
|
||||
DOMAIN-SUFFIX,crucial.com
|
||||
DOMAIN-SUFFIX,cts.com.tw
|
||||
DOMAIN-SUFFIX,cw.com.tw
|
||||
DOMAIN-SUFFIX,cyberctm.com
|
||||
DOMAIN-SUFFIX,dailymotion.com
|
||||
DOMAIN-SUFFIX,dailyview.tw
|
||||
DOMAIN-SUFFIX,daum.net
|
||||
DOMAIN-SUFFIX,daumcdn.net
|
||||
DOMAIN-SUFFIX,dcard.tw
|
||||
DOMAIN-SUFFIX,deepdiscount.com
|
||||
DOMAIN-SUFFIX,depositphotos.com
|
||||
DOMAIN-SUFFIX,deviantart.com
|
||||
DOMAIN-SUFFIX,disconnect.me
|
||||
DOMAIN-SUFFIX,discordapp.com
|
||||
DOMAIN-SUFFIX,discordapp.net
|
||||
DOMAIN-SUFFIX,disqus.com
|
||||
DOMAIN-SUFFIX,dlercloud.com
|
||||
DOMAIN-SUFFIX,dns2go.com
|
||||
DOMAIN-SUFFIX,dowjones.com
|
||||
DOMAIN-SUFFIX,dropbox.com
|
||||
DOMAIN-SUFFIX,dropboxusercontent.com
|
||||
DOMAIN-SUFFIX,duckduckgo.com
|
||||
DOMAIN-SUFFIX,dw.com
|
||||
DOMAIN-SUFFIX,dynu.com
|
||||
DOMAIN-SUFFIX,earthcam.com
|
||||
DOMAIN-SUFFIX,ebookservice.tw
|
||||
DOMAIN-SUFFIX,economist.com
|
||||
DOMAIN-SUFFIX,edgecastcdn.net
|
||||
DOMAIN-SUFFIX,edu
|
||||
DOMAIN-SUFFIX,elpais.com
|
||||
DOMAIN-SUFFIX,enanyang.my
|
||||
DOMAIN-SUFFIX,encyclopedia.com
|
||||
DOMAIN-SUFFIX,esoir.be
|
||||
DOMAIN-SUFFIX,etherscan.io
|
||||
DOMAIN-SUFFIX,euronews.com
|
||||
DOMAIN-SUFFIX,evozi.com
|
||||
DOMAIN-SUFFIX,feedly.com
|
||||
DOMAIN-SUFFIX,firech.at
|
||||
DOMAIN-SUFFIX,flickr.com
|
||||
DOMAIN-SUFFIX,flitto.com
|
||||
DOMAIN-SUFFIX,foreignpolicy.com
|
||||
DOMAIN-SUFFIX,freebrowser.org
|
||||
DOMAIN-SUFFIX,freewechat.com
|
||||
DOMAIN-SUFFIX,freeweibo.com
|
||||
DOMAIN-SUFFIX,friday.tw
|
||||
DOMAIN-SUFFIX,ftchinese.com
|
||||
DOMAIN-SUFFIX,ftimg.net
|
||||
DOMAIN-SUFFIX,gate.io
|
||||
DOMAIN-SUFFIX,getlantern.org
|
||||
DOMAIN-SUFFIX,getsync.com
|
||||
DOMAIN-SUFFIX,globalvoices.org
|
||||
DOMAIN-SUFFIX,goo.ne.jp
|
||||
DOMAIN-SUFFIX,goodreads.com
|
||||
DOMAIN-SUFFIX,gov
|
||||
DOMAIN-SUFFIX,gov.tw
|
||||
DOMAIN-SUFFIX,greatfire.org
|
||||
DOMAIN-SUFFIX,gumroad.com
|
||||
DOMAIN-SUFFIX,hbg.com
|
||||
DOMAIN-SUFFIX,heroku.com
|
||||
DOMAIN-SUFFIX,hightail.com
|
||||
DOMAIN-SUFFIX,hk01.com
|
||||
DOMAIN-SUFFIX,hkbf.org
|
||||
DOMAIN-SUFFIX,hkbookcity.com
|
||||
DOMAIN-SUFFIX,hkej.com
|
||||
DOMAIN-SUFFIX,hket.com
|
||||
DOMAIN-SUFFIX,hkgolden.com
|
||||
DOMAIN-SUFFIX,hootsuite.com
|
||||
DOMAIN-SUFFIX,hudson.org
|
||||
DOMAIN-SUFFIX,hyread.com.tw
|
||||
DOMAIN-SUFFIX,ibtimes.com
|
||||
DOMAIN-SUFFIX,i-cable.com
|
||||
DOMAIN-SUFFIX,icij.org
|
||||
DOMAIN-SUFFIX,icoco.com
|
||||
DOMAIN-SUFFIX,imgur.com
|
||||
DOMAIN-SUFFIX,initiummall.com
|
||||
DOMAIN-SUFFIX,insecam.org
|
||||
DOMAIN-SUFFIX,ipfs.io
|
||||
DOMAIN-SUFFIX,issuu.com
|
||||
DOMAIN-SUFFIX,istockphoto.com
|
||||
DOMAIN-SUFFIX,japantimes.co.jp
|
||||
DOMAIN-SUFFIX,jiji.com
|
||||
DOMAIN-SUFFIX,jinx.com
|
||||
DOMAIN-SUFFIX,jkforum.net
|
||||
DOMAIN-SUFFIX,joinmastodon.org
|
||||
DOMAIN-SUFFIX,justmysocks.net
|
||||
DOMAIN-SUFFIX,justpaste.it
|
||||
DOMAIN-SUFFIX,kakao.com
|
||||
DOMAIN-SUFFIX,kakaocorp.com
|
||||
DOMAIN-SUFFIX,kik.com
|
||||
DOMAIN-SUFFIX,kobo.com
|
||||
DOMAIN-SUFFIX,kobobooks.com
|
||||
DOMAIN-SUFFIX,kodingen.com
|
||||
DOMAIN-SUFFIX,lemonde.fr
|
||||
DOMAIN-SUFFIX,lepoint.fr
|
||||
DOMAIN-SUFFIX,lihkg.com
|
||||
DOMAIN-SUFFIX,listennotes.com
|
||||
DOMAIN-SUFFIX,livestream.com
|
||||
DOMAIN-SUFFIX,logmein.com
|
||||
DOMAIN-SUFFIX,mail.ru
|
||||
DOMAIN-SUFFIX,mailchimp.com
|
||||
DOMAIN-SUFFIX,marc.info
|
||||
DOMAIN-SUFFIX,matters.news
|
||||
DOMAIN-SUFFIX,maying.co
|
||||
DOMAIN-SUFFIX,medium.com
|
||||
DOMAIN-SUFFIX,mega.nz
|
||||
DOMAIN-SUFFIX,mil
|
||||
DOMAIN-SUFFIX,mingpao.com
|
||||
DOMAIN-SUFFIX,mobile01.com
|
||||
DOMAIN-SUFFIX,myspace.com
|
||||
DOMAIN-SUFFIX,myspacecdn.com
|
||||
DOMAIN-SUFFIX,nanyang.com
|
||||
DOMAIN-SUFFIX,naver.com
|
||||
DOMAIN-SUFFIX,neowin.net
|
||||
DOMAIN-SUFFIX,newstapa.org
|
||||
DOMAIN-SUFFIX,nexitally.com
|
||||
DOMAIN-SUFFIX,nhk.or.jp
|
||||
DOMAIN-SUFFIX,nicovideo.jp
|
||||
DOMAIN-SUFFIX,nii.ac.jp
|
||||
DOMAIN-SUFFIX,nikkei.com
|
||||
DOMAIN-SUFFIX,nofile.io
|
||||
DOMAIN-SUFFIX,now.com
|
||||
DOMAIN-SUFFIX,nrk.no
|
||||
DOMAIN-SUFFIX,nyt.com
|
||||
DOMAIN-SUFFIX,nytchina.com
|
||||
DOMAIN-SUFFIX,nytcn.me
|
||||
DOMAIN-SUFFIX,nytco.com
|
||||
DOMAIN-SUFFIX,nytimes.com
|
||||
DOMAIN-SUFFIX,nytimg.com
|
||||
DOMAIN-SUFFIX,nytlog.com
|
||||
DOMAIN-SUFFIX,nytstyle.com
|
||||
DOMAIN-SUFFIX,ok.ru
|
||||
DOMAIN-SUFFIX,okex.com
|
||||
DOMAIN-SUFFIX,on.cc
|
||||
DOMAIN-SUFFIX,orientaldaily.com.my
|
||||
DOMAIN-SUFFIX,overcast.fm
|
||||
DOMAIN-SUFFIX,paltalk.com
|
||||
DOMAIN-SUFFIX,pao-pao.net
|
||||
DOMAIN-SUFFIX,parsevideo.com
|
||||
DOMAIN-SUFFIX,pbxes.com
|
||||
DOMAIN-SUFFIX,pcdvd.com.tw
|
||||
DOMAIN-SUFFIX,pchome.com.tw
|
||||
DOMAIN-SUFFIX,pcloud.com
|
||||
DOMAIN-SUFFIX,picacomic.com
|
||||
DOMAIN-SUFFIX,pinimg.com
|
||||
DOMAIN-SUFFIX,pixiv.net
|
||||
DOMAIN-SUFFIX,player.fm
|
||||
DOMAIN-SUFFIX,plurk.com
|
||||
DOMAIN-SUFFIX,po18.tw
|
||||
DOMAIN-SUFFIX,potato.im
|
||||
DOMAIN-SUFFIX,potatso.com
|
||||
DOMAIN-SUFFIX,prism-break.org
|
||||
DOMAIN-SUFFIX,proxifier.com
|
||||
DOMAIN-SUFFIX,pt.im
|
||||
DOMAIN-SUFFIX,pts.org.tw
|
||||
DOMAIN-SUFFIX,pubu.com.tw
|
||||
DOMAIN-SUFFIX,pubu.tw
|
||||
DOMAIN-SUFFIX,pureapk.com
|
||||
DOMAIN-SUFFIX,quora.com
|
||||
DOMAIN-SUFFIX,quoracdn.net
|
||||
DOMAIN-SUFFIX,rakuten.co.jp
|
||||
DOMAIN-SUFFIX,readingtimes.com.tw
|
||||
DOMAIN-SUFFIX,readmoo.com
|
||||
DOMAIN-SUFFIX,redbubble.com
|
||||
DOMAIN-SUFFIX,reddit.com
|
||||
DOMAIN-SUFFIX,redditmedia.com
|
||||
DOMAIN-SUFFIX,resilio.com
|
||||
DOMAIN-SUFFIX,reuters.com
|
||||
DOMAIN-SUFFIX,reutersmedia.net
|
||||
DOMAIN-SUFFIX,rfi.fr
|
||||
DOMAIN-SUFFIX,rixcloud.com
|
||||
DOMAIN-SUFFIX,roadshow.hk
|
||||
DOMAIN-SUFFIX,scmp.com
|
||||
DOMAIN-SUFFIX,scribd.com
|
||||
DOMAIN-SUFFIX,seatguru.com
|
||||
DOMAIN-SUFFIX,shadowsocks.org
|
||||
DOMAIN-SUFFIX,shopee.tw
|
||||
DOMAIN-SUFFIX,slideshare.net
|
||||
DOMAIN-SUFFIX,softfamous.com
|
||||
DOMAIN-SUFFIX,soundcloud.com
|
||||
DOMAIN-SUFFIX,ssrcloud.org
|
||||
DOMAIN-SUFFIX,startpage.com
|
||||
DOMAIN-SUFFIX,steamcommunity.com
|
||||
DOMAIN-SUFFIX,steemit.com
|
||||
DOMAIN-SUFFIX,steemitwallet.com
|
||||
DOMAIN-SUFFIX,t66y.com
|
||||
DOMAIN-SUFFIX,tapatalk.com
|
||||
DOMAIN-SUFFIX,teco-hk.org
|
||||
DOMAIN-SUFFIX,teco-mo.org
|
||||
DOMAIN-SUFFIX,teddysun.com
|
||||
DOMAIN-SUFFIX,textnow.me
|
||||
DOMAIN-SUFFIX,theguardian.com
|
||||
DOMAIN-SUFFIX,theinitium.com
|
||||
DOMAIN-SUFFIX,thetvdb.com
|
||||
DOMAIN-SUFFIX,tineye.com
|
||||
DOMAIN-SUFFIX,torproject.org
|
||||
DOMAIN-SUFFIX,tumblr.com
|
||||
DOMAIN-SUFFIX,turbobit.net
|
||||
DOMAIN-SUFFIX,tutanota.com
|
||||
DOMAIN-SUFFIX,tvboxnow.com
|
||||
DOMAIN-SUFFIX,udn.com
|
||||
DOMAIN-SUFFIX,unseen.is
|
||||
DOMAIN-SUFFIX,upmedia.mg
|
||||
DOMAIN-SUFFIX,uptodown.com
|
||||
DOMAIN-SUFFIX,urbandictionary.com
|
||||
DOMAIN-SUFFIX,ustream.tv
|
||||
DOMAIN-SUFFIX,uwants.com
|
||||
DOMAIN-SUFFIX,v2ray.com
|
||||
DOMAIN-SUFFIX,viber.com
|
||||
DOMAIN-SUFFIX,videopress.com
|
||||
DOMAIN-SUFFIX,vimeo.com
|
||||
DOMAIN-SUFFIX,voachinese.com
|
||||
DOMAIN-SUFFIX,voanews.com
|
||||
DOMAIN-SUFFIX,voxer.com
|
||||
DOMAIN-SUFFIX,vzw.com
|
||||
DOMAIN-SUFFIX,w3schools.com
|
||||
DOMAIN-SUFFIX,washingtonpost.com
|
||||
DOMAIN-SUFFIX,wattpad.com
|
||||
DOMAIN-SUFFIX,whoer.net
|
||||
DOMAIN-SUFFIX,wikimapia.org
|
||||
DOMAIN-SUFFIX,wikipedia.org
|
||||
DOMAIN-SUFFIX,wikiquote.org
|
||||
DOMAIN-SUFFIX,wikiwand.com
|
||||
DOMAIN-SUFFIX,winudf.com
|
||||
DOMAIN-SUFFIX,wire.com
|
||||
DOMAIN-SUFFIX,wordpress.com
|
||||
DOMAIN-SUFFIX,workflow.is
|
||||
DOMAIN-SUFFIX,worldcat.org
|
||||
DOMAIN-SUFFIX,wsj.com
|
||||
DOMAIN-SUFFIX,wsj.net
|
||||
DOMAIN-SUFFIX,xhamster.com
|
||||
DOMAIN-SUFFIX,xn--90wwvt03e.com
|
||||
DOMAIN-SUFFIX,xn--i2ru8q2qg.com
|
||||
DOMAIN-SUFFIX,xnxx.com
|
||||
DOMAIN-SUFFIX,xvideos.com
|
||||
DOMAIN-SUFFIX,yahoo.com
|
||||
DOMAIN-SUFFIX,yandex.ru
|
||||
DOMAIN-SUFFIX,ycombinator.com
|
||||
DOMAIN-SUFFIX,yesasia.com
|
||||
DOMAIN-SUFFIX,yes-news.com
|
||||
DOMAIN-SUFFIX,yomiuri.co.jp
|
||||
DOMAIN-SUFFIX,you-get.org
|
||||
DOMAIN-SUFFIX,zaobao.com
|
||||
DOMAIN-SUFFIX,zb.com
|
||||
DOMAIN-SUFFIX,zello.com
|
||||
DOMAIN-SUFFIX,zeronet.io
|
||||
DOMAIN-SUFFIX,zoom.us
|
||||
DOMAIN-KEYWORD,github
|
||||
DOMAIN-KEYWORD,jav
|
||||
DOMAIN-KEYWORD,pinterest
|
||||
DOMAIN-KEYWORD,porn
|
||||
DOMAIN-KEYWORD,wikileaks
|
||||
|
||||
# (Region-Restricted Access Denied)
|
||||
DOMAIN-SUFFIX,apartmentratings.com
|
||||
DOMAIN-SUFFIX,apartments.com
|
||||
DOMAIN-SUFFIX,bankmobilevibe.com
|
||||
DOMAIN-SUFFIX,bing.com
|
||||
DOMAIN-SUFFIX,booktopia.com.au
|
||||
DOMAIN-SUFFIX,cccat.io
|
||||
DOMAIN-SUFFIX,centauro.com.br
|
||||
DOMAIN-SUFFIX,clearsurance.com
|
||||
DOMAIN-SUFFIX,costco.com
|
||||
DOMAIN-SUFFIX,crackle.com
|
||||
DOMAIN-SUFFIX,depositphotos.cn
|
||||
DOMAIN-SUFFIX,dish.com
|
||||
DOMAIN-SUFFIX,dmm.co.jp
|
||||
DOMAIN-SUFFIX,dmm.com
|
||||
DOMAIN-SUFFIX,dnvod.tv
|
||||
DOMAIN-SUFFIX,esurance.com
|
||||
DOMAIN-SUFFIX,extmatrix.com
|
||||
DOMAIN-SUFFIX,fastpic.ru
|
||||
DOMAIN-SUFFIX,flipboard.com
|
||||
DOMAIN-SUFFIX,fnac.be
|
||||
DOMAIN-SUFFIX,fnac.com
|
||||
DOMAIN-SUFFIX,funkyimg.com
|
||||
DOMAIN-SUFFIX,fxnetworks.com
|
||||
DOMAIN-SUFFIX,gettyimages.com
|
||||
DOMAIN-SUFFIX,go.com
|
||||
DOMAIN-SUFFIX,here.com
|
||||
DOMAIN-SUFFIX,jcpenney.com
|
||||
DOMAIN-SUFFIX,jiehua.tv
|
||||
DOMAIN-SUFFIX,mailfence.com
|
||||
DOMAIN-SUFFIX,nationwide.com
|
||||
DOMAIN-SUFFIX,nbc.com
|
||||
DOMAIN-SUFFIX,nexon.com
|
||||
DOMAIN-SUFFIX,nordstrom.com
|
||||
DOMAIN-SUFFIX,nordstromimage.com
|
||||
DOMAIN-SUFFIX,nordstromrack.com
|
||||
DOMAIN-SUFFIX,superpages.com
|
||||
DOMAIN-SUFFIX,target.com
|
||||
DOMAIN-SUFFIX,thinkgeek.com
|
||||
DOMAIN-SUFFIX,tracfone.com
|
||||
DOMAIN-SUFFIX,unity3d.com
|
||||
DOMAIN-SUFFIX,uploader.jp
|
||||
DOMAIN-SUFFIX,vevo.com
|
||||
DOMAIN-SUFFIX,viu.tv
|
||||
DOMAIN-SUFFIX,vk.com
|
||||
DOMAIN-SUFFIX,vsco.co
|
||||
DOMAIN-SUFFIX,xfinity.com
|
||||
DOMAIN-SUFFIX,zattoo.com
|
||||
USER-AGENT,Roam*
|
||||
|
||||
# (The Most Popular Sites)
|
||||
# > Apple
|
||||
# >> TestFlight
|
||||
DOMAIN,testflight.apple.com
|
||||
# >> Apple URL Shortener
|
||||
DOMAIN-SUFFIX,appsto.re
|
||||
# >> iBooks Store download
|
||||
DOMAIN,books.itunes.apple.com
|
||||
# >> iTunes Store Moveis Trailers
|
||||
DOMAIN,hls.itunes.apple.com
|
||||
# >> App Store Preview
|
||||
DOMAIN,apps.apple.com
|
||||
DOMAIN,itunes.apple.com
|
||||
# >> Spotlight
|
||||
DOMAIN,api-glb-sea.smoot.apple.com
|
||||
# >> Dictionary
|
||||
DOMAIN,lookup-api.apple.com
|
||||
PROCESS-NAME,LookupViewService
|
||||
# > Google
|
||||
DOMAIN-SUFFIX,abc.xyz
|
||||
DOMAIN-SUFFIX,android.com
|
||||
DOMAIN-SUFFIX,androidify.com
|
||||
DOMAIN-SUFFIX,dialogflow.com
|
||||
DOMAIN-SUFFIX,autodraw.com
|
||||
DOMAIN-SUFFIX,capitalg.com
|
||||
DOMAIN-SUFFIX,certificate-transparency.org
|
||||
DOMAIN-SUFFIX,chrome.com
|
||||
DOMAIN-SUFFIX,chromeexperiments.com
|
||||
DOMAIN-SUFFIX,chromestatus.com
|
||||
DOMAIN-SUFFIX,chromium.org
|
||||
DOMAIN-SUFFIX,creativelab5.com
|
||||
DOMAIN-SUFFIX,debug.com
|
||||
DOMAIN-SUFFIX,deepmind.com
|
||||
DOMAIN-SUFFIX,firebaseio.com
|
||||
DOMAIN-SUFFIX,getmdl.io
|
||||
DOMAIN-SUFFIX,ggpht.com
|
||||
DOMAIN-SUFFIX,gmail.com
|
||||
DOMAIN-SUFFIX,gmodules.com
|
||||
DOMAIN-SUFFIX,godoc.org
|
||||
DOMAIN-SUFFIX,golang.org
|
||||
DOMAIN-SUFFIX,gstatic.com
|
||||
DOMAIN-SUFFIX,gv.com
|
||||
DOMAIN-SUFFIX,gwtproject.org
|
||||
DOMAIN-SUFFIX,itasoftware.com
|
||||
DOMAIN-SUFFIX,madewithcode.com
|
||||
DOMAIN-SUFFIX,material.io
|
||||
DOMAIN-SUFFIX,polymer-project.org
|
||||
DOMAIN-SUFFIX,admin.recaptcha.net
|
||||
DOMAIN-SUFFIX,recaptcha.net
|
||||
DOMAIN-SUFFIX,shattered.io
|
||||
DOMAIN-SUFFIX,synergyse.com
|
||||
DOMAIN-SUFFIX,tensorflow.org
|
||||
DOMAIN-SUFFIX,tfhub.dev
|
||||
DOMAIN-SUFFIX,tiltbrush.com
|
||||
DOMAIN-SUFFIX,waveprotocol.org
|
||||
DOMAIN-SUFFIX,waymo.com
|
||||
DOMAIN-SUFFIX,webmproject.org
|
||||
DOMAIN-SUFFIX,webrtc.org
|
||||
DOMAIN-SUFFIX,whatbrowser.org
|
||||
DOMAIN-SUFFIX,widevine.com
|
||||
DOMAIN-SUFFIX,x.company
|
||||
DOMAIN-SUFFIX,youtu.be
|
||||
DOMAIN-SUFFIX,yt.be
|
||||
DOMAIN-SUFFIX,ytimg.com
|
||||
# > Microsoft
|
||||
# >> Microsoft OneDrive
|
||||
DOMAIN-SUFFIX,1drv.com
|
||||
DOMAIN-SUFFIX,1drv.ms
|
||||
DOMAIN-SUFFIX,blob.core.windows.net
|
||||
DOMAIN-SUFFIX,livefilestore.com
|
||||
DOMAIN-SUFFIX,onedrive.com
|
||||
DOMAIN-SUFFIX,storage.live.com
|
||||
DOMAIN-SUFFIX,storage.msn.com
|
||||
DOMAIN,oneclient.sfx.ms
|
||||
# > Other
|
||||
DOMAIN-SUFFIX,0rz.tw
|
||||
DOMAIN-SUFFIX,4bluestones.biz
|
||||
DOMAIN-SUFFIX,9bis.net
|
||||
DOMAIN-SUFFIX,allconnected.co
|
||||
DOMAIN-SUFFIX,aol.com
|
||||
DOMAIN-SUFFIX,bcc.com.tw
|
||||
DOMAIN-SUFFIX,bit.ly
|
||||
DOMAIN-SUFFIX,bitshare.com
|
||||
DOMAIN-SUFFIX,blog.jp
|
||||
DOMAIN-SUFFIX,blogimg.jp
|
||||
DOMAIN-SUFFIX,blogtd.org
|
||||
DOMAIN-SUFFIX,broadcast.co.nz
|
||||
DOMAIN-SUFFIX,camfrog.com
|
||||
DOMAIN-SUFFIX,cfos.de
|
||||
DOMAIN-SUFFIX,citypopulation.de
|
||||
DOMAIN-SUFFIX,cloudfront.net
|
||||
DOMAIN-SUFFIX,ctitv.com.tw
|
||||
DOMAIN-SUFFIX,cuhk.edu.hk
|
||||
DOMAIN-SUFFIX,cusu.hk
|
||||
DOMAIN-SUFFIX,discord.gg
|
||||
DOMAIN-SUFFIX,discuss.com.hk
|
||||
DOMAIN-SUFFIX,dropboxapi.com
|
||||
DOMAIN-SUFFIX,duolingo.cn
|
||||
DOMAIN-SUFFIX,edditstatic.com
|
||||
DOMAIN-SUFFIX,flickriver.com
|
||||
DOMAIN-SUFFIX,focustaiwan.tw
|
||||
DOMAIN-SUFFIX,free.fr
|
||||
DOMAIN-SUFFIX,gigacircle.com
|
||||
DOMAIN-SUFFIX,hk-pub.com
|
||||
DOMAIN-SUFFIX,hosting.co.uk
|
||||
DOMAIN-SUFFIX,hwcdn.net
|
||||
DOMAIN-SUFFIX,ifixit.com
|
||||
DOMAIN-SUFFIX,iphone4hongkong.com
|
||||
DOMAIN-SUFFIX,iphonetaiwan.org
|
||||
DOMAIN-SUFFIX,iptvbin.com
|
||||
DOMAIN-SUFFIX,jtvnw.net
|
||||
DOMAIN-SUFFIX,linksalpha.com
|
||||
DOMAIN-SUFFIX,manyvids.com
|
||||
DOMAIN-SUFFIX,myactimes.com
|
||||
DOMAIN-SUFFIX,newsblur.com
|
||||
DOMAIN-SUFFIX,now.im
|
||||
DOMAIN-SUFFIX,nowe.com
|
||||
DOMAIN-SUFFIX,redditlist.com
|
||||
DOMAIN-SUFFIX,s3.amazonaws.com
|
||||
DOMAIN-SUFFIX,signal.org
|
||||
DOMAIN-SUFFIX,smartmailcloud.com
|
||||
DOMAIN-SUFFIX,sparknotes.com
|
||||
DOMAIN-SUFFIX,streetvoice.com
|
||||
DOMAIN-SUFFIX,supertop.co
|
||||
DOMAIN-SUFFIX,tv.com
|
||||
DOMAIN-SUFFIX,typepad.com
|
||||
DOMAIN-SUFFIX,udnbkk.com
|
||||
DOMAIN-SUFFIX,urbanairship.com
|
||||
DOMAIN-SUFFIX,whispersystems.org
|
||||
DOMAIN-SUFFIX,wikia.com
|
||||
DOMAIN-SUFFIX,wn.com
|
||||
DOMAIN-SUFFIX,wolframalpha.com
|
||||
DOMAIN-SUFFIX,x-art.com
|
||||
DOMAIN-SUFFIX,yimg.com
|
||||
DOMAIN,api.steampowered.com
|
||||
DOMAIN,store.steampowered.com
|
||||
203
rules/ConnersHua/Surge/Ruleset/GlobalMedia.list
Normal file
203
rules/ConnersHua/Surge/Ruleset/GlobalMedia.list
Normal file
@@ -0,0 +1,203 @@
|
||||
# (GlobalMedia)
|
||||
# (Music)
|
||||
# > Deezer
|
||||
USER-AGENT,Deezer*
|
||||
DOMAIN-SUFFIX,deezer.com
|
||||
DOMAIN-SUFFIX,dzcdn.net
|
||||
# > KKBOX
|
||||
DOMAIN-SUFFIX,kkbox.com
|
||||
DOMAIN-SUFFIX,kkbox.com.tw
|
||||
DOMAIN-SUFFIX,kfs.io
|
||||
# > JOOX
|
||||
USER-AGENT,WeMusic*
|
||||
USER-AGENT,JOOX*
|
||||
DOMAIN-SUFFIX,joox.com
|
||||
# > Pandora
|
||||
USER-AGENT,Pandora*
|
||||
DOMAIN-SUFFIX,pandora.com
|
||||
# > SoundCloud
|
||||
USER-AGENT,SoundCloud*
|
||||
DOMAIN-SUFFIX,p-cdn.us
|
||||
DOMAIN-SUFFIX,sndcdn.com
|
||||
DOMAIN-SUFFIX,soundcloud.com
|
||||
# > Spotify
|
||||
USER-AGENT,Spotify*
|
||||
DOMAIN-SUFFIX,pscdn.co
|
||||
DOMAIN-SUFFIX,scdn.co
|
||||
DOMAIN-SUFFIX,spotify.com
|
||||
DOMAIN-SUFFIX,spoti.fi
|
||||
# > TIDAL
|
||||
USER-AGENT,TIDAL*
|
||||
DOMAIN-SUFFIX,tidal.com
|
||||
# > YouTubeMusic
|
||||
USER-AGENT,com.google.ios.youtubemusic*
|
||||
USER-AGENT,YouTubeMusic*
|
||||
# (Video)
|
||||
# > All4
|
||||
USER-AGENT,All4*
|
||||
DOMAIN-SUFFIX,c4assets.com
|
||||
DOMAIN-SUFFIX,channel4.com
|
||||
# > AbemaTV
|
||||
USER-AGENT,AbemaTV*
|
||||
DOMAIN-SUFFIX,abema.io
|
||||
DOMAIN-SUFFIX,ameba.jp
|
||||
DOMAIN-SUFFIX,abema.tv
|
||||
DOMAIN-SUFFIX,hayabusa.io
|
||||
DOMAIN,abematv.akamaized.net
|
||||
DOMAIN,ds-linear-abematv.akamaized.net
|
||||
DOMAIN,ds-vod-abematv.akamaized.net
|
||||
DOMAIN,linear-abematv.akamaized.net
|
||||
# > Amazon Prime Video
|
||||
USER-AGENT,InstantVideo.US*
|
||||
USER-AGENT,Prime%20Video*
|
||||
DOMAIN-SUFFIX,aiv-cdn.net
|
||||
DOMAIN-SUFFIX,aiv-delivery.net
|
||||
DOMAIN-SUFFIX,amazonvideo.com
|
||||
DOMAIN-SUFFIX,media-amazon.com
|
||||
DOMAIN-SUFFIX,primevideo.com
|
||||
# > Bahamut
|
||||
USER-AGENT,Anime*
|
||||
DOMAIN-SUFFIX,bahamut.com.tw
|
||||
DOMAIN-SUFFIX,gamer.com.tw
|
||||
DOMAIN,gamer-cds.cdn.hinet.net
|
||||
DOMAIN,gamer2-cds.cdn.hinet.net
|
||||
# > BBC iPlayer
|
||||
USER-AGENT,BBCiPlayer*
|
||||
DOMAIN-SUFFIX,bbc.co.uk
|
||||
DOMAIN-SUFFIX,bbci.co.uk
|
||||
DOMAIN-KEYWORD,bbcfmt
|
||||
DOMAIN-KEYWORD,uk-live
|
||||
# > DAZN
|
||||
USER-AGENT,DAZN*
|
||||
DOMAIN-SUFFIX,dazn.com
|
||||
DOMAIN-SUFFIX,dazn-api.com
|
||||
DOMAIN,d151l6v8er5bdm.cloudfront.net
|
||||
DOMAIN-KEYWORD,voddazn
|
||||
# > Disney+
|
||||
USER-AGENT,Disney+*
|
||||
DOMAIN-SUFFIX,bamgrid.com
|
||||
DOMAIN-SUFFIX,disney-plus.net
|
||||
DOMAIN-SUFFIX,disneyplus.com
|
||||
DOMAIN-SUFFIX,dssott.com
|
||||
DOMAIN,cdn.registerdisney.go.com
|
||||
# > encoreTVB
|
||||
USER-AGENT,encoreTVB*
|
||||
DOMAIN-SUFFIX,encoretvb.com
|
||||
DOMAIN,edge.api.brightcove.com
|
||||
DOMAIN,bcbolt446c5271-a.akamaihd.net
|
||||
# > Fox+ & Fox Now
|
||||
USER-AGENT,FOX%20NOW*
|
||||
USER-AGENT,FOXPlus*
|
||||
DOMAIN-SUFFIX,dashasiafox.akamaized.net
|
||||
DOMAIN-SUFFIX,fox.com
|
||||
DOMAIN-SUFFIX,foxdcg.com
|
||||
DOMAIN-SUFFIX,foxplus.com
|
||||
DOMAIN-SUFFIX,staticasiafox.akamaized.net
|
||||
DOMAIN-SUFFIX,theplatform.com
|
||||
DOMAIN-SUFFIX,uplynk.com
|
||||
# > HBO Now & HBO GO
|
||||
USER-AGENT,HBO%20NOW*
|
||||
USER-AGENT,HBO%20GO*
|
||||
USER-AGENT,HBOAsia*
|
||||
DOMAIN-SUFFIX,hbo.com
|
||||
DOMAIN-SUFFIX,hbogo.com
|
||||
DOMAIN-SUFFIX,hboasia.com
|
||||
DOMAIN-SUFFIX,hbogo.com
|
||||
DOMAIN-SUFFIX,hbogoasia.hk
|
||||
DOMAIN,44wilhpljf.execute-api.ap-southeast-1.amazonaws.com
|
||||
DOMAIN,bcbolthboa-a.akamaihd.net
|
||||
DOMAIN,cf-images.ap-southeast-1.prod.boltdns.net
|
||||
DOMAIN,manifest.prod.boltdns.net
|
||||
DOMAIN,s3-ap-southeast-1.amazonaws.com
|
||||
# > 华文电视
|
||||
USER-AGENT,HWTVMobile*
|
||||
DOMAIN-SUFFIX,5itv.tv
|
||||
DOMAIN-SUFFIX,ocnttv.com
|
||||
# > Hulu
|
||||
DOMAIN-SUFFIX,hulu.com
|
||||
DOMAIN-SUFFIX,huluim.com
|
||||
DOMAIN-SUFFIX,hulustream.com
|
||||
# > Hulu(フールー)
|
||||
DOMAIN-SUFFIX,happyon.jp
|
||||
DOMAIN-SUFFIX,hulu.jp
|
||||
# > ITV
|
||||
USER-AGENT,ITV_Player*
|
||||
DOMAIN-SUFFIX,itv.com
|
||||
DOMAIN-SUFFIX,itvstatic.com
|
||||
DOMAIN,itvpnpmobile-a.akamaihd.net
|
||||
# > KKTV
|
||||
USER-AGENT,KKTV*
|
||||
USER-AGENT,com.kktv.ios.kktv*
|
||||
DOMAIN-SUFFIX,kktv.com.tw
|
||||
DOMAIN-SUFFIX,kktv.me
|
||||
DOMAIN,kktv-theater.kk.stream
|
||||
# > Line TV
|
||||
USER-AGENT,LINE%20TV*
|
||||
DOMAIN-SUFFIX,linetv.tw
|
||||
DOMAIN,d3c7rimkq79yfu.cloudfront.net
|
||||
# > LiTV
|
||||
DOMAIN-SUFFIX,litv.tv
|
||||
DOMAIN,litvfreemobile-hichannel.cdn.hinet.net
|
||||
# > My5
|
||||
USER-AGENT,My5*
|
||||
DOMAIN-SUFFIX,channel5.com
|
||||
DOMAIN-SUFFIX,my5.tv
|
||||
DOMAIN,d349g9zuie06uo.cloudfront.net
|
||||
# > myTV SUPER
|
||||
USER-AGENT,mytv*
|
||||
DOMAIN-SUFFIX,mytvsuper.com
|
||||
DOMAIN-SUFFIX,tvb.com
|
||||
# > Netflix
|
||||
USER-AGENT,Argo*
|
||||
DOMAIN-SUFFIX,netflix.com
|
||||
DOMAIN-SUFFIX,netflix.net
|
||||
DOMAIN-SUFFIX,nflxext.com
|
||||
DOMAIN-SUFFIX,nflximg.com
|
||||
DOMAIN-SUFFIX,nflximg.net
|
||||
DOMAIN-SUFFIX,nflxso.net
|
||||
DOMAIN-SUFFIX,nflxvideo.net
|
||||
IP-CIDR,23.246.0.0/18,no-resolve
|
||||
IP-CIDR,37.77.184.0/21,no-resolve
|
||||
IP-CIDR,45.57.0.0/17,no-resolve
|
||||
IP-CIDR,64.120.128.0/17,no-resolve
|
||||
IP-CIDR,66.197.128.0/17,no-resolve
|
||||
IP-CIDR,108.175.32.0/20,no-resolve
|
||||
IP-CIDR,192.173.64.0/18,no-resolve
|
||||
IP-CIDR,198.38.96.0/19,no-resolve
|
||||
IP-CIDR,198.45.48.0/20,no-resolve
|
||||
# > niconico
|
||||
USER-AGENT,Niconico*
|
||||
DOMAIN-SUFFIX,dmc.nico
|
||||
DOMAIN-SUFFIX,nicovideo.jp
|
||||
DOMAIN-SUFFIX,nimg.jp
|
||||
DOMAIN-SUFFIX,socdm.com
|
||||
# > PBS
|
||||
USER-AGENT,PBS*
|
||||
DOMAIN-SUFFIX,pbs.org
|
||||
# > Pornhub
|
||||
DOMAIN-SUFFIX,phncdn.com
|
||||
DOMAIN-SUFFIX,pornhub.com
|
||||
DOMAIN-SUFFIX,pornhubpremium.com
|
||||
# > 台湾好
|
||||
USER-AGENT,TaiwanGood*
|
||||
DOMAIN-SUFFIX,skyking.com.tw
|
||||
DOMAIN,hamifans.emome.net
|
||||
# > Twitch
|
||||
DOMAIN-SUFFIX,twitch.tv
|
||||
DOMAIN-SUFFIX,twitchcdn.net
|
||||
DOMAIN-SUFFIX,ttvnw.net
|
||||
# > ViuTV
|
||||
USER-AGENT,Viu*
|
||||
USER-AGENT,ViuTV*
|
||||
DOMAIN-SUFFIX,viu.com
|
||||
DOMAIN-SUFFIX,viu.tv
|
||||
DOMAIN,api.viu.now.com
|
||||
DOMAIN,d1k2us671qcoau.cloudfront.net
|
||||
DOMAIN,d2anahhhmp1ffz.cloudfront.net
|
||||
DOMAIN,dfp6rglgjqszk.cloudfront.net
|
||||
# > YouTube
|
||||
USER-AGENT,com.google.ios.youtube*
|
||||
USER-AGENT,YouTube*
|
||||
DOMAIN-SUFFIX,googlevideo.com
|
||||
DOMAIN-SUFFIX,youtube.com
|
||||
DOMAIN,youtubei.googleapis.com
|
||||
56
rules/ConnersHua/Surge/Ruleset/Google.list
Normal file
56
rules/ConnersHua/Surge/Ruleset/Google.list
Normal file
@@ -0,0 +1,56 @@
|
||||
# > Google
|
||||
DOMAIN-SUFFIX,abc.xyz
|
||||
DOMAIN-SUFFIX,android.com
|
||||
DOMAIN-SUFFIX,androidify.com
|
||||
DOMAIN-SUFFIX,dialogflow.com
|
||||
DOMAIN-SUFFIX,autodraw.com
|
||||
DOMAIN-SUFFIX,capitalg.com
|
||||
DOMAIN-SUFFIX,certificate-transparency.org
|
||||
DOMAIN-SUFFIX,chrome.com
|
||||
DOMAIN-SUFFIX,chromeexperiments.com
|
||||
DOMAIN-SUFFIX,chromestatus.com
|
||||
DOMAIN-SUFFIX,chromium.org
|
||||
DOMAIN-SUFFIX,creativelab5.com
|
||||
DOMAIN-SUFFIX,debug.com
|
||||
DOMAIN-SUFFIX,deepmind.com
|
||||
DOMAIN-SUFFIX,firebaseio.com
|
||||
DOMAIN-SUFFIX,getmdl.io
|
||||
DOMAIN-SUFFIX,ggpht.com
|
||||
DOMAIN-SUFFIX,gmail.com
|
||||
DOMAIN-SUFFIX,gmodules.com
|
||||
DOMAIN-SUFFIX,godoc.org
|
||||
DOMAIN-SUFFIX,golang.org
|
||||
DOMAIN-SUFFIX,gstatic.com
|
||||
DOMAIN-SUFFIX,gv.com
|
||||
DOMAIN-SUFFIX,gwtproject.org
|
||||
DOMAIN-SUFFIX,itasoftware.com
|
||||
DOMAIN-SUFFIX,madewithcode.com
|
||||
DOMAIN-SUFFIX,material.io
|
||||
DOMAIN-SUFFIX,polymer-project.org
|
||||
DOMAIN-SUFFIX,admin.recaptcha.net
|
||||
DOMAIN-SUFFIX,recaptcha.net
|
||||
DOMAIN-SUFFIX,shattered.io
|
||||
DOMAIN-SUFFIX,synergyse.com
|
||||
DOMAIN-SUFFIX,tensorflow.org
|
||||
DOMAIN-SUFFIX,tfhub.dev
|
||||
DOMAIN-SUFFIX,tiltbrush.com
|
||||
DOMAIN-SUFFIX,waveprotocol.org
|
||||
DOMAIN-SUFFIX,waymo.com
|
||||
DOMAIN-SUFFIX,webmproject.org
|
||||
DOMAIN-SUFFIX,webrtc.org
|
||||
DOMAIN-SUFFIX,whatbrowser.org
|
||||
DOMAIN-SUFFIX,widevine.com
|
||||
DOMAIN-SUFFIX,x.company
|
||||
DOMAIN-SUFFIX,youtu.be
|
||||
DOMAIN-SUFFIX,yt.be
|
||||
DOMAIN-SUFFIX,ytimg.com
|
||||
# (DNS Cache Pollution Protection)
|
||||
DOMAIN-SUFFIX,appspot.com
|
||||
DOMAIN-SUFFIX,blogger.com
|
||||
DOMAIN-SUFFIX,getoutline.org
|
||||
DOMAIN-SUFFIX,gvt0.com
|
||||
DOMAIN-SUFFIX,gvt1.com
|
||||
DOMAIN-SUFFIX,gvt3.com
|
||||
DOMAIN-SUFFIX,xn--ngstr-lra8j.com
|
||||
DOMAIN-KEYWORD,google
|
||||
DOMAIN-KEYWORD,blogspot
|
||||
7
rules/ConnersHua/Surge/Ruleset/HKMTMedia.list
Normal file
7
rules/ConnersHua/Surge/Ruleset/HKMTMedia.list
Normal file
@@ -0,0 +1,7 @@
|
||||
# (HKMTMedia)
|
||||
# > 愛奇藝台灣站
|
||||
DOMAIN-SUFFIX,iqiyi.com
|
||||
DOMAIN-SUFFIX,71.am
|
||||
# > bilibili
|
||||
DOMAIN-SUFFIX,bilibili.com
|
||||
DOMAIN,upos-hz-mirrorakam.akamaized.net
|
||||
211
rules/ConnersHua/Surge/Ruleset/Hijacking.list
Normal file
211
rules/ConnersHua/Surge/Ruleset/Hijacking.list
Normal file
@@ -0,0 +1,211 @@
|
||||
# Internet Service Provider Hijacking 运营商劫持
|
||||
DOMAIN-SUFFIX,17gouwuba.com
|
||||
DOMAIN-SUFFIX,186078.com
|
||||
DOMAIN-SUFFIX,189zj.cn
|
||||
DOMAIN-SUFFIX,285680.com
|
||||
DOMAIN-SUFFIX,3721zh.com
|
||||
DOMAIN-SUFFIX,4336wang.cn
|
||||
DOMAIN-SUFFIX,51chumoping.com
|
||||
DOMAIN-SUFFIX,51mld.cn
|
||||
DOMAIN-SUFFIX,51mypc.cn
|
||||
DOMAIN-SUFFIX,58mingri.cn
|
||||
DOMAIN-SUFFIX,58mingtian.cn
|
||||
DOMAIN-SUFFIX,5vl58stm.com
|
||||
DOMAIN-SUFFIX,6d63d3.com
|
||||
DOMAIN-SUFFIX,7gg.cc
|
||||
DOMAIN-SUFFIX,91veg.com
|
||||
DOMAIN-SUFFIX,9s6q.cn
|
||||
DOMAIN-SUFFIX,adsame.com
|
||||
DOMAIN-SUFFIX,aiclk.com
|
||||
DOMAIN-SUFFIX,akuai.top
|
||||
DOMAIN-SUFFIX,atplay.cn
|
||||
DOMAIN-SUFFIX,baiwanchuangyi.com
|
||||
DOMAIN-SUFFIX,beerto.cn
|
||||
DOMAIN-SUFFIX,beilamusi.com
|
||||
DOMAIN-SUFFIX,benshiw.net
|
||||
DOMAIN-SUFFIX,bianxianmao.com
|
||||
DOMAIN-SUFFIX,bryonypie.com
|
||||
DOMAIN-SUFFIX,cishantao.com
|
||||
DOMAIN-SUFFIX,cszlks.com
|
||||
DOMAIN-SUFFIX,cudaojia.com
|
||||
DOMAIN-SUFFIX,dafapromo.com
|
||||
DOMAIN-SUFFIX,daitdai.com
|
||||
DOMAIN-SUFFIX,dsaeerf.com
|
||||
DOMAIN-SUFFIX,dugesheying.com
|
||||
DOMAIN-SUFFIX,dv8c1t.cn
|
||||
DOMAIN-SUFFIX,echatu.com
|
||||
DOMAIN-SUFFIX,erdoscs.com
|
||||
DOMAIN-SUFFIX,fan-yong.com
|
||||
DOMAIN-SUFFIX,feih.com.cn
|
||||
DOMAIN-SUFFIX,fjlqqc.com
|
||||
DOMAIN-SUFFIX,fkku194.com
|
||||
DOMAIN-SUFFIX,freedrive.cn
|
||||
DOMAIN-SUFFIX,gclick.cn
|
||||
DOMAIN-SUFFIX,goufanli100.com
|
||||
DOMAIN-SUFFIX,goupaoerdai.com
|
||||
DOMAIN-SUFFIX,gouwubang.com
|
||||
DOMAIN-SUFFIX,gzxnlk.com
|
||||
DOMAIN-SUFFIX,haoshengtoys.com
|
||||
DOMAIN-SUFFIX,hyunke.com
|
||||
DOMAIN-SUFFIX,ichaosheng.com
|
||||
DOMAIN-SUFFIX,ishop789.com
|
||||
DOMAIN-SUFFIX,jdkic.com
|
||||
DOMAIN-SUFFIX,jiubuhua.com
|
||||
DOMAIN-SUFFIX,jwg365.cn
|
||||
DOMAIN-SUFFIX,kawo77.com
|
||||
DOMAIN-SUFFIX,kualianyingxiao.cn
|
||||
DOMAIN-SUFFIX,kumihua.com
|
||||
DOMAIN-SUFFIX,ltheanine.cn
|
||||
DOMAIN-SUFFIX,maipinshangmao.com
|
||||
DOMAIN-SUFFIX,minisplat.cn
|
||||
DOMAIN-SUFFIX,mkitgfs.com
|
||||
DOMAIN-SUFFIX,mlnbike.com
|
||||
DOMAIN-SUFFIX,mobjump.com
|
||||
DOMAIN-SUFFIX,nbkbgd.cn
|
||||
DOMAIN-SUFFIX,newapi.com
|
||||
DOMAIN-SUFFIX,pinzhitmall.com
|
||||
DOMAIN-SUFFIX,poppyta.com
|
||||
DOMAIN-SUFFIX,qianchuanghr.com
|
||||
DOMAIN-SUFFIX,qichexin.com
|
||||
DOMAIN-SUFFIX,qinchugudao.com
|
||||
DOMAIN-SUFFIX,quanliyouxi.cn
|
||||
DOMAIN-SUFFIX,qutaobi.com
|
||||
DOMAIN-SUFFIX,ry51w.cn
|
||||
DOMAIN-SUFFIX,sg536.cn
|
||||
DOMAIN-SUFFIX,sifubo.cn
|
||||
DOMAIN-SUFFIX,sifuce.cn
|
||||
DOMAIN-SUFFIX,sifuda.cn
|
||||
DOMAIN-SUFFIX,sifufu.cn
|
||||
DOMAIN-SUFFIX,sifuge.cn
|
||||
DOMAIN-SUFFIX,sifugu.cn
|
||||
DOMAIN-SUFFIX,sifuhe.cn
|
||||
DOMAIN-SUFFIX,sifuhu.cn
|
||||
DOMAIN-SUFFIX,sifuji.cn
|
||||
DOMAIN-SUFFIX,sifuka.cn
|
||||
DOMAIN-SUFFIX,smgru.net
|
||||
DOMAIN-SUFFIX,taoggou.com
|
||||
DOMAIN-SUFFIX,tcxshop.com
|
||||
DOMAIN-SUFFIX,tjqonline.cn
|
||||
DOMAIN-SUFFIX,topitme.com
|
||||
DOMAIN-SUFFIX,tt3sm4.cn
|
||||
DOMAIN-SUFFIX,tuia.cn
|
||||
DOMAIN-SUFFIX,tuipenguin.com
|
||||
DOMAIN-SUFFIX,tuitiger.com
|
||||
DOMAIN-SUFFIX,websd8.com
|
||||
DOMAIN-SUFFIX,wx16999.com
|
||||
DOMAIN-SUFFIX,xiaohuau.xyz
|
||||
DOMAIN-SUFFIX,yinmong.com
|
||||
DOMAIN-SUFFIX,yitaopt.com
|
||||
DOMAIN-SUFFIX,yjqiqi.com
|
||||
DOMAIN-SUFFIX,yukhj.com
|
||||
DOMAIN-SUFFIX,zhaozecheng.cn
|
||||
DOMAIN-SUFFIX,zhenxinet.com
|
||||
DOMAIN-SUFFIX,zlne800.com
|
||||
DOMAIN-SUFFIX,zunmi.cn
|
||||
DOMAIN-SUFFIX,zzd6.com
|
||||
IP-CIDR,39.107.15.115/32,no-resolve
|
||||
IP-CIDR,47.89.59.182/32,no-resolve
|
||||
IP-CIDR,103.49.209.27/32,no-resolve
|
||||
IP-CIDR,123.56.152.96/32,no-resolve
|
||||
# > ChinaNet
|
||||
IP-CIDR,61.160.200.223/32,no-resolve
|
||||
IP-CIDR,61.160.200.242/32,no-resolve
|
||||
IP-CIDR,61.160.200.252/32,no-resolve
|
||||
IP-CIDR,61.174.50.214/32,no-resolve
|
||||
IP-CIDR,111.175.220.163/32,no-resolve
|
||||
IP-CIDR,111.175.220.164/32,no-resolve
|
||||
IP-CIDR,124.232.160.178/32,no-resolve
|
||||
IP-CIDR,175.6.223.15/32,no-resolve
|
||||
IP-CIDR,183.59.53.237/32,no-resolve
|
||||
IP-CIDR,218.93.127.37/32,no-resolve
|
||||
IP-CIDR,221.228.17.152/32,no-resolve
|
||||
IP-CIDR,221.231.6.79/32,no-resolve
|
||||
IP-CIDR,222.186.61.91/32,no-resolve
|
||||
IP-CIDR,222.186.61.95/32,no-resolve
|
||||
IP-CIDR,222.186.61.96/32,no-resolve
|
||||
IP-CIDR,222.186.61.97/32,no-resolve
|
||||
# > ChinaUnicom
|
||||
IP-CIDR,106.75.231.48/32,no-resolve
|
||||
IP-CIDR,119.4.249.166/32,no-resolve
|
||||
IP-CIDR,220.196.52.141/32,no-resolve
|
||||
IP-CIDR,221.6.4.148/32,no-resolve
|
||||
# > ChinaMobile
|
||||
IP-CIDR,114.247.28.96/32,no-resolve
|
||||
IP-CIDR,221.179.131.72/32,no-resolve
|
||||
IP-CIDR,221.179.140.145/32,no-resolve
|
||||
# > Dr.Peng
|
||||
IP-CIDR,10.72.25.0/24,no-resolve
|
||||
IP-CIDR,115.182.16.79/32,no-resolve
|
||||
IP-CIDR,118.144.88.126/32,no-resolve
|
||||
IP-CIDR,118.144.88.215/32,no-resolve
|
||||
IP-CIDR,118.144.88.216/32,no-resolve
|
||||
IP-CIDR,120.76.189.132/32,no-resolve
|
||||
IP-CIDR,124.14.21.147/32,no-resolve
|
||||
IP-CIDR,124.14.21.151/32,no-resolve
|
||||
IP-CIDR,180.166.52.24/32,no-resolve
|
||||
IP-CIDR,211.161.101.106/32,no-resolve
|
||||
IP-CIDR,220.115.251.25/32,no-resolve
|
||||
IP-CIDR,222.73.156.235/32,no-resolve
|
||||
|
||||
# Infamous 声名狼藉
|
||||
DOMAIN-SUFFIX,kuaizip.com
|
||||
DOMAIN-SUFFIX,mackeeper.com
|
||||
# > Adobe 奥多比
|
||||
DOMAIN-SUFFIX,flash.cn
|
||||
DOMAIN,geo2.adobe.com
|
||||
# > CJ Marketing 思杰马克丁软件
|
||||
DOMAIN-SUFFIX,4009997658.com
|
||||
DOMAIN-SUFFIX,abbyychina.com
|
||||
DOMAIN-SUFFIX,bartender.cc
|
||||
DOMAIN-SUFFIX,betterzip.net
|
||||
DOMAIN-SUFFIX,beyondcompare.cc
|
||||
DOMAIN-SUFFIX,bingdianhuanyuan.cn
|
||||
DOMAIN-SUFFIX,chemdraw.com.cn
|
||||
DOMAIN-SUFFIX,cjmakeding.com
|
||||
DOMAIN-SUFFIX,cjmkt.com
|
||||
DOMAIN-SUFFIX,codesoftchina.com
|
||||
DOMAIN-SUFFIX,coreldrawchina.com
|
||||
DOMAIN-SUFFIX,crossoverchina.com
|
||||
DOMAIN-SUFFIX,dongmansoft.com
|
||||
DOMAIN-SUFFIX,earmasterchina.cn
|
||||
DOMAIN-SUFFIX,easyrecoverychina.com
|
||||
DOMAIN-SUFFIX,ediuschina.com
|
||||
DOMAIN-SUFFIX,flstudiochina.com
|
||||
DOMAIN-SUFFIX,formysql.com
|
||||
DOMAIN-SUFFIX,guitarpro.cc
|
||||
DOMAIN-SUFFIX,huishenghuiying.com.cn
|
||||
DOMAIN-SUFFIX,hypersnap.net
|
||||
DOMAIN-SUFFIX,iconworkshop.cn
|
||||
DOMAIN-SUFFIX,imindmap.cc
|
||||
DOMAIN-SUFFIX,jihehuaban.com.cn
|
||||
DOMAIN-SUFFIX,keyshot.cc
|
||||
DOMAIN-SUFFIX,kingdeecn.cn
|
||||
DOMAIN-SUFFIX,logoshejishi.com
|
||||
DOMAIN-SUFFIX,luping.net.cn
|
||||
DOMAIN-SUFFIX,mairuan.cn
|
||||
DOMAIN-SUFFIX,mairuan.com
|
||||
DOMAIN-SUFFIX,mairuan.com.cn
|
||||
DOMAIN-SUFFIX,mairuan.net
|
||||
DOMAIN-SUFFIX,mairuanwang.com
|
||||
DOMAIN-SUFFIX,makeding.com
|
||||
DOMAIN-SUFFIX,mathtype.cn
|
||||
DOMAIN-SUFFIX,mindmanager.cc
|
||||
DOMAIN-SUFFIX,mindmanager.cn
|
||||
DOMAIN-SUFFIX,mindmapper.cc
|
||||
DOMAIN-SUFFIX,mycleanmymac.com
|
||||
DOMAIN-SUFFIX,nicelabel.cc
|
||||
DOMAIN-SUFFIX,ntfsformac.cc
|
||||
DOMAIN-SUFFIX,ntfsformac.cn
|
||||
DOMAIN-SUFFIX,overturechina.com
|
||||
DOMAIN-SUFFIX,passwordrecovery.cn
|
||||
DOMAIN-SUFFIX,pdfexpert.cc
|
||||
DOMAIN-SUFFIX,photozoomchina.com
|
||||
DOMAIN-SUFFIX,shankejingling.com
|
||||
DOMAIN-SUFFIX,ultraiso.net
|
||||
DOMAIN-SUFFIX,vegaschina.cn
|
||||
DOMAIN-SUFFIX,xmindchina.net
|
||||
DOMAIN-SUFFIX,xshellcn.com
|
||||
DOMAIN-SUFFIX,yihuifu.cn
|
||||
DOMAIN-SUFFIX,yuanchengxiezuo.com
|
||||
DOMAIN-SUFFIX,zbrushcn.com
|
||||
DOMAIN-SUFFIX,zhzzx.com
|
||||
9
rules/ConnersHua/Surge/Ruleset/Mail.list
Normal file
9
rules/ConnersHua/Surge/Ruleset/Mail.list
Normal file
@@ -0,0 +1,9 @@
|
||||
# > Gmail
|
||||
DOMAIN,pop.gmail.com
|
||||
DOMAIN,imap.gmail.com
|
||||
DOMAIN,smtp.gmail.com
|
||||
# > Outlook
|
||||
DOMAIN,outlook.office365.com
|
||||
DOMAIN,smtp.office365.com
|
||||
DOMAIN,imap-mail.outlook.com
|
||||
DOMAIN,smtp-mail.outlook.com
|
||||
10
rules/ConnersHua/Surge/Ruleset/Media/AbemaTV.list
Normal file
10
rules/ConnersHua/Surge/Ruleset/Media/AbemaTV.list
Normal file
@@ -0,0 +1,10 @@
|
||||
# > AbemaTV
|
||||
USER-AGENT,AbemaTV*
|
||||
DOMAIN-SUFFIX,abema.io
|
||||
DOMAIN-SUFFIX,abema.tv
|
||||
DOMAIN-SUFFIX,ameba.jp
|
||||
DOMAIN-SUFFIX,hayabusa.io
|
||||
DOMAIN,abematv.akamaized.net
|
||||
DOMAIN,ds-linear-abematv.akamaized.net
|
||||
DOMAIN,ds-vod-abematv.akamaized.net
|
||||
DOMAIN,linear-abematv.akamaized.net
|
||||
4
rules/ConnersHua/Surge/Ruleset/Media/All4.list
Normal file
4
rules/ConnersHua/Surge/Ruleset/Media/All4.list
Normal file
@@ -0,0 +1,4 @@
|
||||
# > All4
|
||||
USER-AGENT,All4*
|
||||
DOMAIN-SUFFIX,c4assets.com
|
||||
DOMAIN-SUFFIX,channel4.com
|
||||
8
rules/ConnersHua/Surge/Ruleset/Media/Amazon.list
Normal file
8
rules/ConnersHua/Surge/Ruleset/Media/Amazon.list
Normal file
@@ -0,0 +1,8 @@
|
||||
# > Amazon Prime Video
|
||||
USER-AGENT,InstantVideo.US*
|
||||
USER-AGENT,Prime%20Video*
|
||||
DOMAIN-SUFFIX,aiv-cdn.net
|
||||
DOMAIN-SUFFIX,aiv-delivery.net
|
||||
DOMAIN-SUFFIX,amazonvideo.com
|
||||
DOMAIN-SUFFIX,media-amazon.com
|
||||
DOMAIN-SUFFIX,primevideo.com
|
||||
6
rules/ConnersHua/Surge/Ruleset/Media/BBC_iPlayer.list
Normal file
6
rules/ConnersHua/Surge/Ruleset/Media/BBC_iPlayer.list
Normal file
@@ -0,0 +1,6 @@
|
||||
# > BBC iPlayer
|
||||
USER-AGENT,BBCiPlayer*
|
||||
DOMAIN-SUFFIX,bbc.co.uk
|
||||
DOMAIN-SUFFIX,bbci.co.uk
|
||||
DOMAIN-KEYWORD,bbcfmt
|
||||
DOMAIN-KEYWORD,uk-live
|
||||
6
rules/ConnersHua/Surge/Ruleset/Media/Bahamut.list
Normal file
6
rules/ConnersHua/Surge/Ruleset/Media/Bahamut.list
Normal file
@@ -0,0 +1,6 @@
|
||||
# > Bahamut
|
||||
USER-AGENT,Anime*
|
||||
DOMAIN-SUFFIX,bahamut.com.tw
|
||||
DOMAIN-SUFFIX,gamer.com.tw
|
||||
DOMAIN,gamer-cds.cdn.hinet.net
|
||||
DOMAIN,gamer2-cds.cdn.hinet.net
|
||||
6
rules/ConnersHua/Surge/Ruleset/Media/DAZN.list
Normal file
6
rules/ConnersHua/Surge/Ruleset/Media/DAZN.list
Normal file
@@ -0,0 +1,6 @@
|
||||
# > DAZN
|
||||
USER-AGENT,DAZN*
|
||||
DOMAIN-SUFFIX,dazn.com
|
||||
DOMAIN-SUFFIX,dazn-api.com
|
||||
DOMAIN,d151l6v8er5bdm.cloudfront.net
|
||||
DOMAIN-KEYWORD,voddazn
|
||||
4
rules/ConnersHua/Surge/Ruleset/Media/Deezer.list
Normal file
4
rules/ConnersHua/Surge/Ruleset/Media/Deezer.list
Normal file
@@ -0,0 +1,4 @@
|
||||
# > Deezer
|
||||
USER-AGENT,Deezer*
|
||||
DOMAIN-SUFFIX,deezer.com
|
||||
DOMAIN-SUFFIX,dzcdn.net
|
||||
7
rules/ConnersHua/Surge/Ruleset/Media/DisneyPlus.list
Normal file
7
rules/ConnersHua/Surge/Ruleset/Media/DisneyPlus.list
Normal file
@@ -0,0 +1,7 @@
|
||||
# > Disney+
|
||||
USER-AGENT,Disney+*
|
||||
DOMAIN-SUFFIX,bamgrid.com
|
||||
DOMAIN-SUFFIX,disney-plus.net
|
||||
DOMAIN-SUFFIX,disneyplus.com
|
||||
DOMAIN-SUFFIX,dssott.com
|
||||
DOMAIN,cdn.registerdisney.go.com
|
||||
9
rules/ConnersHua/Surge/Ruleset/Media/Fox.list
Normal file
9
rules/ConnersHua/Surge/Ruleset/Media/Fox.list
Normal file
@@ -0,0 +1,9 @@
|
||||
# > Fox+ & Fox Now
|
||||
USER-AGENT,FOX%20NOW*
|
||||
USER-AGENT,FOXPlus*
|
||||
DOMAIN-SUFFIX,dashasiafox.akamaized.net
|
||||
DOMAIN-SUFFIX,fox.com
|
||||
DOMAIN-SUFFIX,foxdcg.com
|
||||
DOMAIN-SUFFIX,foxplus.com
|
||||
DOMAIN-SUFFIX,staticasiafox.akamaized.net
|
||||
DOMAIN-SUFFIX,theplatform.com
|
||||
14
rules/ConnersHua/Surge/Ruleset/Media/HBO.list
Normal file
14
rules/ConnersHua/Surge/Ruleset/Media/HBO.list
Normal file
@@ -0,0 +1,14 @@
|
||||
# > HBO NOW & HBO GO
|
||||
USER-AGENT,HBO%20NOW*
|
||||
USER-AGENT,HBO%20GO*
|
||||
USER-AGENT,HBOAsia*
|
||||
DOMAIN-SUFFIX,hbo.com
|
||||
DOMAIN-SUFFIX,hbogo.com
|
||||
DOMAIN-SUFFIX,hboasia.com
|
||||
DOMAIN-SUFFIX,hbogo.com
|
||||
DOMAIN-SUFFIX,hbogoasia.hk
|
||||
DOMAIN,44wilhpljf.execute-api.ap-southeast-1.amazonaws.com
|
||||
DOMAIN,bcbolthboa-a.akamaihd.net
|
||||
DOMAIN,cf-images.ap-southeast-1.prod.boltdns.net
|
||||
DOMAIN,manifest.prod.boltdns.net
|
||||
DOMAIN,s3-ap-southeast-1.amazonaws.com
|
||||
4
rules/ConnersHua/Surge/Ruleset/Media/HWTV.list
Normal file
4
rules/ConnersHua/Surge/Ruleset/Media/HWTV.list
Normal file
@@ -0,0 +1,4 @@
|
||||
# > 华文电视
|
||||
USER-AGENT,HWTVMobile*
|
||||
DOMAIN-SUFFIX,5itv.tv
|
||||
DOMAIN-SUFFIX,ocnttv.com
|
||||
4
rules/ConnersHua/Surge/Ruleset/Media/Hulu.list
Normal file
4
rules/ConnersHua/Surge/Ruleset/Media/Hulu.list
Normal file
@@ -0,0 +1,4 @@
|
||||
# > Hulu
|
||||
DOMAIN-SUFFIX,hulu.com
|
||||
DOMAIN-SUFFIX,huluim.com
|
||||
DOMAIN-SUFFIX,hulustream.com
|
||||
3
rules/ConnersHua/Surge/Ruleset/Media/Hulu_Japan.list
Normal file
3
rules/ConnersHua/Surge/Ruleset/Media/Hulu_Japan.list
Normal file
@@ -0,0 +1,3 @@
|
||||
# > Hulu(フールー)
|
||||
DOMAIN-SUFFIX,happyon.jp
|
||||
DOMAIN-SUFFIX,hulu.jp
|
||||
5
rules/ConnersHua/Surge/Ruleset/Media/ITV.list
Normal file
5
rules/ConnersHua/Surge/Ruleset/Media/ITV.list
Normal file
@@ -0,0 +1,5 @@
|
||||
# > ITV
|
||||
USER-AGENT,ITV_Player*
|
||||
DOMAIN-SUFFIX,itv.com
|
||||
DOMAIN-SUFFIX,itvstatic.com
|
||||
DOMAIN,itvpnpmobile-a.akamaihd.net
|
||||
4
rules/ConnersHua/Surge/Ruleset/Media/JOOX.list
Normal file
4
rules/ConnersHua/Surge/Ruleset/Media/JOOX.list
Normal file
@@ -0,0 +1,4 @@
|
||||
# > JOOX
|
||||
USER-AGENT,WeMusic*
|
||||
USER-AGENT,JOOX*
|
||||
DOMAIN-SUFFIX,joox.com
|
||||
4
rules/ConnersHua/Surge/Ruleset/Media/KKBOX.list
Normal file
4
rules/ConnersHua/Surge/Ruleset/Media/KKBOX.list
Normal file
@@ -0,0 +1,4 @@
|
||||
# > KKBOX
|
||||
DOMAIN-SUFFIX,kkbox.com
|
||||
DOMAIN-SUFFIX,kkbox.com.tw
|
||||
DOMAIN-SUFFIX,kfs.io
|
||||
6
rules/ConnersHua/Surge/Ruleset/Media/KKTV.list
Normal file
6
rules/ConnersHua/Surge/Ruleset/Media/KKTV.list
Normal file
@@ -0,0 +1,6 @@
|
||||
# > KKTV
|
||||
USER-AGENT,KKTV*
|
||||
USER-AGENT,com.kktv.ios.kktv*
|
||||
DOMAIN-SUFFIX,kktv.com.tw
|
||||
DOMAIN-SUFFIX,kktv.me
|
||||
DOMAIN,kktv-theater.kk.stream
|
||||
3
rules/ConnersHua/Surge/Ruleset/Media/LiTV.list
Normal file
3
rules/ConnersHua/Surge/Ruleset/Media/LiTV.list
Normal file
@@ -0,0 +1,3 @@
|
||||
# > LiTV
|
||||
DOMAIN-SUFFIX,litv.tv
|
||||
DOMAIN,litvfreemobile-hichannel.cdn.hinet.net
|
||||
4
rules/ConnersHua/Surge/Ruleset/Media/LineTV.list
Normal file
4
rules/ConnersHua/Surge/Ruleset/Media/LineTV.list
Normal file
@@ -0,0 +1,4 @@
|
||||
# > LineTV
|
||||
USER-AGENT,LINE%20TV*
|
||||
DOMAIN-SUFFIX,linetv.tw
|
||||
DOMAIN,d3c7rimkq79yfu.cloudfront.net
|
||||
5
rules/ConnersHua/Surge/Ruleset/Media/My5.list
Normal file
5
rules/ConnersHua/Surge/Ruleset/Media/My5.list
Normal file
@@ -0,0 +1,5 @@
|
||||
# > My5
|
||||
USER-AGENT,My5*
|
||||
DOMAIN-SUFFIX,channel5.com
|
||||
DOMAIN-SUFFIX,my5.tv
|
||||
DOMAIN,d349g9zuie06uo.cloudfront.net
|
||||
18
rules/ConnersHua/Surge/Ruleset/Media/Netflix.list
Normal file
18
rules/ConnersHua/Surge/Ruleset/Media/Netflix.list
Normal file
@@ -0,0 +1,18 @@
|
||||
# > Netflix
|
||||
USER-AGENT,Argo*
|
||||
DOMAIN-SUFFIX,netflix.com
|
||||
DOMAIN-SUFFIX,netflix.net
|
||||
DOMAIN-SUFFIX,nflxext.com
|
||||
DOMAIN-SUFFIX,nflximg.com
|
||||
DOMAIN-SUFFIX,nflximg.net
|
||||
DOMAIN-SUFFIX,nflxso.net
|
||||
DOMAIN-SUFFIX,nflxvideo.net
|
||||
IP-CIDR,23.246.0.0/18,no-resolve
|
||||
IP-CIDR,37.77.184.0/21,no-resolve
|
||||
IP-CIDR,45.57.0.0/17,no-resolve
|
||||
IP-CIDR,64.120.128.0/17,no-resolve
|
||||
IP-CIDR,66.197.128.0/17,no-resolve
|
||||
IP-CIDR,108.175.32.0/20,no-resolve
|
||||
IP-CIDR,192.173.64.0/18,no-resolve
|
||||
IP-CIDR,198.38.96.0/19,no-resolve
|
||||
IP-CIDR,198.45.48.0/20,no-resolve
|
||||
3
rules/ConnersHua/Surge/Ruleset/Media/PBS.list
Normal file
3
rules/ConnersHua/Surge/Ruleset/Media/PBS.list
Normal file
@@ -0,0 +1,3 @@
|
||||
# > PBS
|
||||
USER-AGENT,PBS*
|
||||
DOMAIN-SUFFIX,pbs.org
|
||||
3
rules/ConnersHua/Surge/Ruleset/Media/Pandora.list
Normal file
3
rules/ConnersHua/Surge/Ruleset/Media/Pandora.list
Normal file
@@ -0,0 +1,3 @@
|
||||
# > Pandora
|
||||
USER-AGENT,Pandora*
|
||||
DOMAIN-SUFFIX,pandora.com
|
||||
4
rules/ConnersHua/Surge/Ruleset/Media/Pornhub.list
Normal file
4
rules/ConnersHua/Surge/Ruleset/Media/Pornhub.list
Normal file
@@ -0,0 +1,4 @@
|
||||
# > Pornhub
|
||||
DOMAIN-SUFFIX,phncdn.com
|
||||
DOMAIN-SUFFIX,pornhub.com
|
||||
DOMAIN-SUFFIX,pornhubpremium.com
|
||||
5
rules/ConnersHua/Surge/Ruleset/Media/SoundCloud.list
Normal file
5
rules/ConnersHua/Surge/Ruleset/Media/SoundCloud.list
Normal file
@@ -0,0 +1,5 @@
|
||||
# > SoundCloud
|
||||
USER-AGENT,SoundCloud*
|
||||
DOMAIN-SUFFIX,p-cdn.us
|
||||
DOMAIN-SUFFIX,sndcdn.com
|
||||
DOMAIN-SUFFIX,soundcloud.com
|
||||
7
rules/ConnersHua/Surge/Ruleset/Media/Spotify.list
Normal file
7
rules/ConnersHua/Surge/Ruleset/Media/Spotify.list
Normal file
@@ -0,0 +1,7 @@
|
||||
# > Spotify
|
||||
USER-AGENT,Spotify*
|
||||
DOMAIN-SUFFIX,pscdn.co
|
||||
DOMAIN-SUFFIX,scdn.co
|
||||
DOMAIN-SUFFIX,spotify.com
|
||||
DOMAIN-SUFFIX,spoti.fi
|
||||
IP-CIDR,35.186.224.47/32,no-resolve
|
||||
3
rules/ConnersHua/Surge/Ruleset/Media/TIDAL.list
Normal file
3
rules/ConnersHua/Surge/Ruleset/Media/TIDAL.list
Normal file
@@ -0,0 +1,3 @@
|
||||
# > TIDAL
|
||||
USER-AGENT,TIDAL*dia
|
||||
DOMAIN-SUFFIX,tidal.comdia
|
||||
4
rules/ConnersHua/Surge/Ruleset/Media/TaiWanGood.list
Normal file
4
rules/ConnersHua/Surge/Ruleset/Media/TaiWanGood.list
Normal file
@@ -0,0 +1,4 @@
|
||||
# > 台湾好
|
||||
USER-AGENT,TaiwanGood*
|
||||
DOMAIN-SUFFIX,skyking.com.tw
|
||||
DOMAIN,hamifans.emome.net
|
||||
7
rules/ConnersHua/Surge/Ruleset/Media/TikTok.list
Normal file
7
rules/ConnersHua/Surge/Ruleset/Media/TikTok.list
Normal file
@@ -0,0 +1,7 @@
|
||||
# > TikTok
|
||||
USER-AGENT,TikTok*
|
||||
DOMAIN-SUFFIX,muscdn.com
|
||||
DOMAIN-SUFFIX,musical.ly
|
||||
DOMAIN-SUFFIX,tiktokv.com
|
||||
DOMAIN-SUFFIX,tiktokcdn.com
|
||||
DOMAIN-KEYWORD,-tiktokcdn-com
|
||||
4
rules/ConnersHua/Surge/Ruleset/Media/Twitch.list
Normal file
4
rules/ConnersHua/Surge/Ruleset/Media/Twitch.list
Normal file
@@ -0,0 +1,4 @@
|
||||
# > Twitch
|
||||
DOMAIN-SUFFIX,twitch.tv
|
||||
DOMAIN-SUFFIX,twitchcdn.net
|
||||
DOMAIN-SUFFIX,ttvnw.net
|
||||
9
rules/ConnersHua/Surge/Ruleset/Media/ViuTV.list
Normal file
9
rules/ConnersHua/Surge/Ruleset/Media/ViuTV.list
Normal file
@@ -0,0 +1,9 @@
|
||||
# > Viu(TV)
|
||||
USER-AGENT,Viu*
|
||||
USER-AGENT,ViuTV*
|
||||
DOMAIN-SUFFIX,viu.com
|
||||
DOMAIN-SUFFIX,viu.tv
|
||||
DOMAIN,api.viu.now.com
|
||||
DOMAIN,d1k2us671qcoau.cloudfront.net
|
||||
DOMAIN,d2anahhhmp1ffz.cloudfront.net
|
||||
DOMAIN,dfp6rglgjqszk.cloudfront.net
|
||||
6
rules/ConnersHua/Surge/Ruleset/Media/YouTube.list
Normal file
6
rules/ConnersHua/Surge/Ruleset/Media/YouTube.list
Normal file
@@ -0,0 +1,6 @@
|
||||
# > YouTube
|
||||
USER-AGENT,com.google.ios.youtube*
|
||||
USER-AGENT,YouTube*
|
||||
DOMAIN-SUFFIX,googlevideo.com
|
||||
DOMAIN-SUFFIX,youtube.com
|
||||
DOMAIN,youtubei.googleapis.com
|
||||
3
rules/ConnersHua/Surge/Ruleset/Media/YouTubeMusic.list
Normal file
3
rules/ConnersHua/Surge/Ruleset/Media/YouTubeMusic.list
Normal file
@@ -0,0 +1,3 @@
|
||||
# > YouTubeMusic
|
||||
USER-AGENT,com.google.ios.youtubemusic*
|
||||
USER-AGENT,YouTubeMusic*
|
||||
5
rules/ConnersHua/Surge/Ruleset/Media/encoreTVB.list
Normal file
5
rules/ConnersHua/Surge/Ruleset/Media/encoreTVB.list
Normal file
@@ -0,0 +1,5 @@
|
||||
# > encoreTVB
|
||||
USER-AGENT,encoreTVB*
|
||||
DOMAIN-SUFFIX,encoretvb.com
|
||||
DOMAIN,edge.api.brightcove.com
|
||||
DOMAIN,bcbolt446c5271-a.akamaihd.net
|
||||
4
rules/ConnersHua/Surge/Ruleset/Media/myTV_SUPER.list
Normal file
4
rules/ConnersHua/Surge/Ruleset/Media/myTV_SUPER.list
Normal file
@@ -0,0 +1,4 @@
|
||||
# > myTV_SUPER
|
||||
USER-AGENT,mytv*
|
||||
DOMAIN-SUFFIX,mytvsuper.com
|
||||
DOMAIN-SUFFIX,tvb.com
|
||||
6
rules/ConnersHua/Surge/Ruleset/Media/niconico.list
Normal file
6
rules/ConnersHua/Surge/Ruleset/Media/niconico.list
Normal file
@@ -0,0 +1,6 @@
|
||||
# > niconico
|
||||
USER-AGENT,Niconico*
|
||||
DOMAIN-SUFFIX,dmc.nico
|
||||
DOMAIN-SUFFIX,nicovideo.jp
|
||||
DOMAIN-SUFFIX,nimg.jp
|
||||
DOMAIN-SUFFIX,socdm.com
|
||||
5
rules/ConnersHua/Surge/Ruleset/OneDrive.list
Normal file
5
rules/ConnersHua/Surge/Ruleset/OneDrive.list
Normal file
@@ -0,0 +1,5 @@
|
||||
# > OneDrive
|
||||
PROCESS-NAME,OneDrive
|
||||
PROCESS-NAME,OneDriveUpdater
|
||||
USER-AGENT,OneDrive*
|
||||
USER-AGENT,OneDriveiOSApp*
|
||||
4
rules/ConnersHua/Surge/Ruleset/PayPal.list
Normal file
4
rules/ConnersHua/Surge/Ruleset/PayPal.list
Normal file
@@ -0,0 +1,4 @@
|
||||
# > PayPal
|
||||
USER-AGENT,PayPal*
|
||||
DOMAIN-KEYWORD,paypal
|
||||
DOMAIN-SUFFIX,paypal.com
|
||||
3
rules/ConnersHua/Surge/Ruleset/Speedtest.list
Normal file
3
rules/ConnersHua/Surge/Ruleset/Speedtest.list
Normal file
@@ -0,0 +1,3 @@
|
||||
# > Speedtest by Ookla
|
||||
USER-AGENT,SpeedTest*
|
||||
DOMAIN-KEYWORD,speedtest
|
||||
14
rules/ConnersHua/Surge/Ruleset/Telegram.list
Normal file
14
rules/ConnersHua/Surge/Ruleset/Telegram.list
Normal file
@@ -0,0 +1,14 @@
|
||||
DOMAIN-SUFFIX,t.me
|
||||
DOMAIN-SUFFIX,tdesktop.com
|
||||
DOMAIN-SUFFIX,telegra.ph
|
||||
DOMAIN-SUFFIX,telegram.me
|
||||
DOMAIN-SUFFIX,telegram.org
|
||||
IP-CIDR,67.198.55.0/24,no-resolve
|
||||
IP-CIDR,91.108.4.0/22,no-resolve
|
||||
IP-CIDR,91.108.8.0/22,no-resolve
|
||||
IP-CIDR,91.108.12.0/22,no-resolve
|
||||
IP-CIDR,91.108.16.0/22,no-resolve
|
||||
IP-CIDR,91.108.56.0/22,no-resolve
|
||||
IP-CIDR,109.239.140.0/24,no-resolve
|
||||
IP-CIDR,149.154.160.0/20,no-resolve
|
||||
IP-CIDR,205.172.60.0/22,no-resolve
|
||||
17
rules/ConnersHua/Surge/Ruleset/Unbreak.list
Normal file
17
rules/ConnersHua/Surge/Ruleset/Unbreak.list
Normal file
@@ -0,0 +1,17 @@
|
||||
# Unbreak
|
||||
# > General
|
||||
USER-AGENT,coffeecorp*
|
||||
USER-AGENT,restaurant-mobile*
|
||||
DOMAIN,app.adjust.com
|
||||
# > Google
|
||||
DOMAIN-SUFFIX,googletraveladservices.com
|
||||
DOMAIN,dl.google.com
|
||||
DOMAIN,mtalk.google.com
|
||||
# > Tencent
|
||||
DOMAIN,livew.l.qq.com
|
||||
DOMAIN,vd.l.qq.com
|
||||
# > Strava
|
||||
DOMAIN,analytics.strava.com
|
||||
# > Umeng
|
||||
DOMAIN,msg.umeng.com
|
||||
DOMAIN,msg.umengcloud.com
|
||||
8687
rules/NobyDa/Surge/AdRule.list
Normal file
8687
rules/NobyDa/Surge/AdRule.list
Normal file
File diff suppressed because it is too large
Load Diff
802
rules/NobyDa/Surge/AdRuleRegex.list
Normal file
802
rules/NobyDa/Surge/AdRuleRegex.list
Normal file
File diff suppressed because one or more lines are too long
1303
rules/NobyDa/Surge/AdRuleTest.list
Normal file
1303
rules/NobyDa/Surge/AdRuleTest.list
Normal file
File diff suppressed because it is too large
Load Diff
24
rules/NobyDa/Surge/Download.list
Normal file
24
rules/NobyDa/Surge/Download.list
Normal file
@@ -0,0 +1,24 @@
|
||||
# Mac Download
|
||||
PROCESS-NAME,aria2c
|
||||
PROCESS-NAME,fdm
|
||||
PROCESS-NAME,Folx
|
||||
PROCESS-NAME,NetTransport
|
||||
PROCESS-NAME,Thunder
|
||||
PROCESS-NAME,Transmission
|
||||
PROCESS-NAME,uTorrent
|
||||
PROCESS-NAME,WebTorrent
|
||||
PROCESS-NAME,WebTorrent Helper
|
||||
# bt
|
||||
DOMAIN-SUFFIX,smtp
|
||||
DOMAIN-KEYWORD,aria2
|
||||
URL-REGEX,(Subject|HELO|SMTP)
|
||||
URL-REGEX,(api|ps|sv|offnavi|newvector|ulog.imap|newloc)(.map|).(baidu|n.shifen).com
|
||||
URL-REGEX,(.+.|^)(360|so|qihoo|360safe|qhimg|360totalsecurity|yunpan).(cn|com)
|
||||
URL-REGEX,(.+.)?(torrent|announce.php?passkey=|tracker|BitTorrent|bt_key|ed2k|find_node|get_peers|info_hash|magnet:|peer_id=|xunlei)(..+)?
|
||||
# XunLei
|
||||
URL-REGEX,(.?)(xunlei|sandai|Thunder|XLLiveUD)(.)
|
||||
PROCESS-NAME,DownloadService
|
||||
# 360
|
||||
URL-REGEX,(.+\.|^)(360|so)\.(cn|com)
|
||||
# Tencent Weiyun
|
||||
PROCESS-NAME,Weiyun
|
||||
25
rules/lhie1/Surge3/Apple.list
Normal file
25
rules/lhie1/Surge3/Apple.list
Normal file
@@ -0,0 +1,25 @@
|
||||
PROCESS-NAME,trustd
|
||||
USER-AGENT,*com.apple.mobileme.fmip1
|
||||
USER-AGENT,*WeatherFoundation*
|
||||
USER-AGENT,%E5%9C%B0%E5%9B%BE*
|
||||
USER-AGENT,%E8%AE%BE%E7%BD%AE*
|
||||
USER-AGENT,AppStore*
|
||||
USER-AGENT,com.apple.appstored*
|
||||
USER-AGENT,com.apple.geod*
|
||||
USER-AGENT,com.apple.Maps
|
||||
USER-AGENT,FindMyFriends*
|
||||
USER-AGENT,FindMyiPhone*
|
||||
USER-AGENT,FMDClient*
|
||||
USER-AGENT,FMFD*
|
||||
USER-AGENT,fmflocatord*
|
||||
USER-AGENT,geod*
|
||||
USER-AGENT,locationd*
|
||||
USER-AGENT,Maps*
|
||||
USER-AGENT,TestFlight*
|
||||
DOMAIN-SUFFIX,apple.com
|
||||
DOMAIN-SUFFIX,icloud.com
|
||||
DOMAIN-SUFFIX,icloud-content.com
|
||||
DOMAIN-SUFFIX,itunes.com
|
||||
DOMAIN-SUFFIX,me.com
|
||||
DOMAIN-SUFFIX,mzstatic.com
|
||||
DOMAIN,api.smoot.apple.cn
|
||||
42
rules/lhie1/Surge3/AsianTV.list
Normal file
42
rules/lhie1/Surge3/AsianTV.list
Normal file
@@ -0,0 +1,42 @@
|
||||
# > Bilibili
|
||||
DOMAIN-KEYWORD,bilibili
|
||||
DOMAIN-SUFFIX,acg.tv
|
||||
DOMAIN-SUFFIX,acgvideo.com
|
||||
DOMAIN-SUFFIX,b23.tv
|
||||
DOMAIN-SUFFIX,biliapi.com
|
||||
DOMAIN-SUFFIX,biliapi.net
|
||||
DOMAIN-SUFFIX,bilibili.com
|
||||
DOMAIN-SUFFIX,biligame.com
|
||||
DOMAIN-SUFFIX,biligame.net
|
||||
DOMAIN-SUFFIX,hdslb.com
|
||||
DOMAIN-SUFFIX,im9.com
|
||||
USER-AGENT,*bili*
|
||||
|
||||
# > IQIYI
|
||||
USER-AGENT,QIYI*
|
||||
USER-AGENT,iQiYi*
|
||||
DOMAIN-KEYWORD,qiyi
|
||||
DOMAIN-SUFFIX,qy.net
|
||||
IP-CIDR,101.227.0.0/16,no-resolve
|
||||
IP-CIDR,101.224.0.0/13,no-resolve
|
||||
IP-CIDR,119.176.0.0/12,no-resolve
|
||||
|
||||
# > letv
|
||||
DOMAIN-SUFFIX,api.mob.app.letv.com
|
||||
|
||||
# > MOO
|
||||
USER-AGENT,MOO*
|
||||
USER-AGENT,TencentMidasConnect*
|
||||
|
||||
# > NeteaseMusic
|
||||
USER-AGENT,%E7%BD%91%E6%98%93%E4%BA%91%E9%9F%B3%E4%B9%90*
|
||||
USER-AGENT,NeteaseMusic*
|
||||
DOMAIN-SUFFIX,163yun.com
|
||||
DOMAIN-SUFFIX,music.126.net
|
||||
DOMAIN-SUFFIX,music.163.com
|
||||
|
||||
# > Tencent Video
|
||||
DOMAIN-SUFFIX,vv.video.qq.com
|
||||
|
||||
# > Youku
|
||||
IP-CIDR,106.11.0.0/16,no-resolve
|
||||
301
rules/lhie1/Surge3/Domestic.list
Normal file
301
rules/lhie1/Surge3/Domestic.list
Normal file
@@ -0,0 +1,301 @@
|
||||
# > Client
|
||||
PROCESS-NAME,ss-local
|
||||
|
||||
# > UA
|
||||
USER-AGENT,hide*
|
||||
USER-AGENT,MicroMessenger*
|
||||
USER-AGENT,PayPal*
|
||||
USER-AGENT,TeamViewer*
|
||||
USER-AGENT,TIM*
|
||||
USER-AGENT,ting_en
|
||||
USER-AGENT,WebTorrent*
|
||||
USER-AGENT,WeChat*
|
||||
|
||||
# > Beplay
|
||||
DOMAIN-KEYWORD,beplay
|
||||
|
||||
# > Blizzard
|
||||
DOMAIN-SUFFIX,battle.net
|
||||
DOMAIN-SUFFIX,battlenet.com
|
||||
DOMAIN-SUFFIX,blizzard.com
|
||||
|
||||
# > Prior
|
||||
DOMAIN,client.amplifi.com
|
||||
DOMAIN,ip.bjango.com
|
||||
DOMAIN-SUFFIX,alphassl.com
|
||||
DOMAIN-SUFFIX,edu.cn
|
||||
|
||||
# > Sony
|
||||
USER-AGENT,RemotePlay*
|
||||
DOMAIN-SUFFIX,playstation.com
|
||||
DOMAIN-SUFFIX,playstation.net
|
||||
DOMAIN-SUFFIX,playstationnetwork.com
|
||||
DOMAIN-SUFFIX,sony.com
|
||||
DOMAIN-SUFFIX,sonyentertainmentnetwork.com
|
||||
|
||||
# > Steam
|
||||
USER-AGENT,Steam*
|
||||
DOMAIN-SUFFIX,steamcontent.com
|
||||
|
||||
# > TeamViewer
|
||||
IP-CIDR,185.188.32.0/24,no-resolve
|
||||
IP-CIDR,185.188.33.0/24,no-resolve
|
||||
IP-CIDR,185.188.34.0/24,no-resolve
|
||||
IP-CIDR,185.188.35.0/24,no-resolve
|
||||
IP-CIDR6,2a0b:b580::/48,no-resolve
|
||||
IP-CIDR6,2a0b:b581::/48,no-resolve
|
||||
IP-CIDR6,2a0b:b582::/48,no-resolve
|
||||
IP-CIDR6,2a0b:b583::/48,no-resolve
|
||||
|
||||
# Domestic
|
||||
DOMAIN-SUFFIX,12306.cn
|
||||
DOMAIN-SUFFIX,12306.com
|
||||
DOMAIN-SUFFIX,126.net
|
||||
DOMAIN-SUFFIX,163.com
|
||||
DOMAIN-SUFFIX,360.cn
|
||||
DOMAIN-SUFFIX,360.com
|
||||
DOMAIN-SUFFIX,360buy.com
|
||||
DOMAIN-SUFFIX,360buyimg.com
|
||||
DOMAIN-SUFFIX,36kr.com
|
||||
DOMAIN-SUFFIX,51ym.me
|
||||
DOMAIN-SUFFIX,58.com
|
||||
DOMAIN-SUFFIX,8686c.com
|
||||
DOMAIN-SUFFIX,abercrombie.com
|
||||
DOMAIN-SUFFIX,acfun.tv
|
||||
DOMAIN-SUFFIX,adobesc.com
|
||||
DOMAIN-SUFFIX,air-matters.com
|
||||
DOMAIN-SUFFIX,air-matters.io
|
||||
DOMAIN-SUFFIX,aixifan.com
|
||||
DOMAIN-SUFFIX,akadns.net
|
||||
DOMAIN-SUFFIX,alicdn.com
|
||||
DOMAIN-SUFFIX,alipay.com
|
||||
DOMAIN-SUFFIX,alipayobjects.com
|
||||
DOMAIN-SUFFIX,aliyun.com
|
||||
DOMAIN-SUFFIX,amap.com
|
||||
DOMAIN-SUFFIX,apache.org
|
||||
DOMAIN-SUFFIX,api.crisp.chat
|
||||
DOMAIN-SUFFIX,api.termius.com
|
||||
DOMAIN-SUFFIX,appshike.com
|
||||
DOMAIN-SUFFIX,appstore.com
|
||||
DOMAIN-SUFFIX,autonavi.com
|
||||
DOMAIN-SUFFIX,aweme.snssdk.com
|
||||
DOMAIN-SUFFIX,bababian.com
|
||||
DOMAIN-SUFFIX,baidu.com
|
||||
DOMAIN-SUFFIX,battle.net
|
||||
DOMAIN-SUFFIX,bdimg.com
|
||||
DOMAIN-SUFFIX,bdstatic.com
|
||||
DOMAIN-SUFFIX,beatsbydre.com
|
||||
DOMAIN-SUFFIX,bet365.com
|
||||
DOMAIN-SUFFIX,broadcasthe.net
|
||||
DOMAIN-SUFFIX,caiyunapp.com
|
||||
DOMAIN-SUFFIX,ccgslb.com
|
||||
DOMAIN-SUFFIX,ccgslb.net
|
||||
DOMAIN-SUFFIX,chinacache.net
|
||||
DOMAIN-SUFFIX,chunbo.com
|
||||
DOMAIN-SUFFIX,chunboimg.com
|
||||
DOMAIN-SUFFIX,clashroyaleapp.com
|
||||
DOMAIN-SUFFIX,clouddn.com
|
||||
DOMAIN-SUFFIX,cloudsigma.com
|
||||
DOMAIN-SUFFIX,cloudxns.net
|
||||
DOMAIN-SUFFIX,cmct.tv
|
||||
DOMAIN-SUFFIX,cmfu.com
|
||||
DOMAIN-SUFFIX,cnbeta.com
|
||||
DOMAIN-SUFFIX,cnbetacdn.com
|
||||
DOMAIN-SUFFIX,chdbits.co
|
||||
DOMAIN-SUFFIX,cnlang.org
|
||||
DOMAIN-SUFFIX,culturedcode.com
|
||||
DOMAIN-SUFFIX,dct-cloud.com
|
||||
DOMAIN-SUFFIX,didialift.com
|
||||
DOMAIN-SUFFIX,digicert.com
|
||||
DOMAIN-SUFFIX,douban.com
|
||||
DOMAIN-SUFFIX,doubanio.com
|
||||
DOMAIN-SUFFIX,douyu.com
|
||||
DOMAIN-SUFFIX,douyu.tv
|
||||
DOMAIN-SUFFIX,douyutv.com
|
||||
DOMAIN-SUFFIX,duokan.com
|
||||
DOMAIN-SUFFIX,duoshuo.com
|
||||
DOMAIN-SUFFIX,dytt8.net
|
||||
DOMAIN-SUFFIX,easou.com
|
||||
DOMAIN-SUFFIX,ecitic.com
|
||||
DOMAIN-SUFFIX,ecitic.net
|
||||
DOMAIN-SUFFIX,eclipse.org
|
||||
DOMAIN-SUFFIX,eudic.net
|
||||
DOMAIN-SUFFIX,ewqcxz.com
|
||||
DOMAIN-SUFFIX,feng.com
|
||||
DOMAIN-SUFFIX,fir.im
|
||||
DOMAIN-SUFFIX,firefox.com
|
||||
DOMAIN-SUFFIX,frdic.com
|
||||
DOMAIN-SUFFIX,fresh-ideas.cc
|
||||
DOMAIN-SUFFIX,geetest.com
|
||||
DOMAIN-SUFFIX,godic.net
|
||||
DOMAIN-SUFFIX,goodread.com
|
||||
DOMAIN-SUFFIX,google.cn
|
||||
DOMAIN-SUFFIX,gtimg.com
|
||||
DOMAIN-SUFFIX,haibian.com
|
||||
DOMAIN-SUFFIX,hao123.com
|
||||
DOMAIN-SUFFIX,haosou.com
|
||||
DOMAIN-SUFFIX,hdchina.org
|
||||
DOMAIN-SUFFIX,hdcmct.org
|
||||
DOMAIN-SUFFIX,hollisterco.com
|
||||
DOMAIN-SUFFIX,hongxiu.com
|
||||
DOMAIN-SUFFIX,hxcdn.net
|
||||
DOMAIN-SUFFIX,icedropper.com
|
||||
DOMAIN-SUFFIX,iciba.com
|
||||
DOMAIN-SUFFIX,ifeng.com
|
||||
DOMAIN-SUFFIX,ifengimg.com
|
||||
DOMAIN-SUFFIX,images.unsplash.com
|
||||
DOMAIN-SUFFIX,images-amazon.com
|
||||
DOMAIN-SUFFIX,img4me.com
|
||||
DOMAIN-SUFFIX,ipify.org
|
||||
DOMAIN-SUFFIX,ipip.net
|
||||
DOMAIN-SUFFIX,ithome.com
|
||||
DOMAIN-SUFFIX,ixdzs.com
|
||||
DOMAIN-SUFFIX,jd.com
|
||||
DOMAIN-SUFFIX,jd.hk
|
||||
DOMAIN-SUFFIX,jianshu.com
|
||||
DOMAIN-SUFFIX,jianshu.io
|
||||
DOMAIN-SUFFIX,jianshuapi.com
|
||||
DOMAIN-SUFFIX,jiathis.com
|
||||
DOMAIN-SUFFIX,jomodns.com
|
||||
DOMAIN-SUFFIX,jsboxbbs.com
|
||||
DOMAIN-SUFFIX,knewone.com
|
||||
DOMAIN-SUFFIX,kuaidi100.com
|
||||
DOMAIN-SUFFIX,kugou.com
|
||||
DOMAIN-SUFFIX,lecloud.com
|
||||
DOMAIN-SUFFIX,lemicp.com
|
||||
DOMAIN-SUFFIX,letv.com
|
||||
DOMAIN-SUFFIX,letvcloud.com
|
||||
DOMAIN-SUFFIX,lizhi.io
|
||||
DOMAIN-SUFFIX,localizecdn.com
|
||||
DOMAIN-SUFFIX,lucifr.com
|
||||
DOMAIN-SUFFIX,luoo.net
|
||||
DOMAIN-SUFFIX,lxdns.com
|
||||
DOMAIN-SUFFIX,mai.tn
|
||||
DOMAIN-SUFFIX,meizu.com
|
||||
DOMAIN-SUFFIX,mi.com
|
||||
DOMAIN-SUFFIX,miaopai.com
|
||||
DOMAIN-SUFFIX,miui.com
|
||||
DOMAIN-SUFFIX,miwifi.com
|
||||
DOMAIN-SUFFIX,mob.com
|
||||
DOMAIN-SUFFIX,moji.com
|
||||
DOMAIN-SUFFIX,moke.com
|
||||
DOMAIN-SUFFIX,mtalk.google.com
|
||||
DOMAIN-SUFFIX,mxhichina.com
|
||||
DOMAIN-SUFFIX,myqcloud.com
|
||||
DOMAIN-SUFFIX,myunlu.com
|
||||
DOMAIN-SUFFIX,ngabbs.com
|
||||
DOMAIN-SUFFIX,netease.com
|
||||
DOMAIN-SUFFIX,nfoservers.com
|
||||
DOMAIN-SUFFIX,nssurge.com
|
||||
DOMAIN-SUFFIX,nuomi.com
|
||||
DOMAIN-SUFFIX,ourbits.club
|
||||
DOMAIN-SUFFIX,ourdvs.com
|
||||
DOMAIN-SUFFIX,passthepopcorn.me
|
||||
DOMAIN-SUFFIX,paypal.com
|
||||
DOMAIN-SUFFIX,paypalobjects.com
|
||||
DOMAIN-SUFFIX,pgyer.com
|
||||
DOMAIN-SUFFIX,pniao.com
|
||||
DOMAIN-SUFFIX,privatehd.to
|
||||
DOMAIN-SUFFIX,pstatp.com
|
||||
DOMAIN-SUFFIX,qbox.me
|
||||
DOMAIN-SUFFIX,qcloud.com
|
||||
DOMAIN-SUFFIX,qdaily.com
|
||||
DOMAIN-SUFFIX,qdmm.com
|
||||
DOMAIN-SUFFIX,qhimg.com
|
||||
DOMAIN-SUFFIX,qidian.com
|
||||
DOMAIN-SUFFIX,qihucdn.com
|
||||
DOMAIN-SUFFIX,qin.io
|
||||
DOMAIN-SUFFIX,qingmang.me
|
||||
DOMAIN-SUFFIX,qingmang.mobi
|
||||
DOMAIN-SUFFIX,qiniucdn.com
|
||||
DOMAIN-SUFFIX,qiniudn.com
|
||||
DOMAIN-SUFFIX,qq.com
|
||||
DOMAIN-SUFFIX,qqurl.com
|
||||
DOMAIN-SUFFIX,rarbg.to
|
||||
DOMAIN-SUFFIX,redacted.ch
|
||||
DOMAIN-SUFFIX,rrmj.tv
|
||||
DOMAIN-SUFFIX,ruguoapp.com
|
||||
DOMAIN-SUFFIX,sandai.net
|
||||
DOMAIN-SUFFIX,sf-express.com
|
||||
DOMAIN-SUFFIX,sinaapp.com
|
||||
DOMAIN-SUFFIX,sinaimg.cn
|
||||
DOMAIN-SUFFIX,sinaimg.com
|
||||
DOMAIN-SUFFIX,sm.ms
|
||||
DOMAIN-SUFFIX,smzdm.com
|
||||
DOMAIN-SUFFIX,snssdk.com
|
||||
DOMAIN-SUFFIX,snwx.com
|
||||
DOMAIN-SUFFIX,so.com
|
||||
DOMAIN-SUFFIX,sogou.com
|
||||
DOMAIN-SUFFIX,sogoucdn.com
|
||||
DOMAIN-SUFFIX,sohu.com
|
||||
DOMAIN-SUFFIX,soku.com
|
||||
DOMAIN-SUFFIX,soso.com
|
||||
DOMAIN-SUFFIX,sspai.com
|
||||
DOMAIN-SUFFIX,startssl.com
|
||||
DOMAIN-SUFFIX,store.steampowered.com
|
||||
DOMAIN-SUFFIX,suning.com
|
||||
DOMAIN-SUFFIX,symcd.com
|
||||
DOMAIN-SUFFIX,taobao.com
|
||||
DOMAIN-SUFFIX,tawk.link
|
||||
DOMAIN-SUFFIX,tawk.to
|
||||
DOMAIN-SUFFIX,teamviewer.com
|
||||
DOMAIN-SUFFIX,tenpay.com
|
||||
DOMAIN-SUFFIX,tietuku.com
|
||||
DOMAIN-SUFFIX,tmall.com
|
||||
DOMAIN-SUFFIX,tmzvps.com
|
||||
DOMAIN-SUFFIX,trello.com
|
||||
DOMAIN-SUFFIX,trellocdn.com
|
||||
DOMAIN-SUFFIX,totheglory.im
|
||||
DOMAIN-SUFFIX,tp.m-team.cc
|
||||
DOMAIN-SUFFIX,ttmeiju.com
|
||||
DOMAIN-SUFFIX,tudou.com
|
||||
DOMAIN-SUFFIX,udache.com
|
||||
DOMAIN-SUFFIX,umengcloud.com
|
||||
DOMAIN-SUFFIX,upaiyun.com
|
||||
DOMAIN-SUFFIX,upyun.com
|
||||
DOMAIN-SUFFIX,uxengine.net
|
||||
DOMAIN-SUFFIX,wandoujia.com
|
||||
DOMAIN-SUFFIX,weather.bjango.com
|
||||
DOMAIN-SUFFIX,weather.com
|
||||
DOMAIN-SUFFIX,webqxs.com
|
||||
DOMAIN-SUFFIX,weibo.cn
|
||||
DOMAIN-SUFFIX,weibo.com
|
||||
DOMAIN-SUFFIX,weico.cc
|
||||
DOMAIN-SUFFIX,weiphone.com
|
||||
DOMAIN-SUFFIX,weiphone.net
|
||||
DOMAIN-SUFFIX,wenku8.net
|
||||
DOMAIN-SUFFIX,werewolf.53site.com
|
||||
DOMAIN-SUFFIX,windowsupdate.com
|
||||
DOMAIN-SUFFIX,wkcdn.com
|
||||
DOMAIN-SUFFIX,workflowy.com
|
||||
DOMAIN-SUFFIX,xdrig.com
|
||||
DOMAIN-SUFFIX,xhostfire.com
|
||||
DOMAIN-SUFFIX,xiami.com
|
||||
DOMAIN-SUFFIX,xiami.net
|
||||
DOMAIN-SUFFIX,xiaojukeji.com
|
||||
DOMAIN-SUFFIX,xiaomi.com
|
||||
DOMAIN-SUFFIX,xiaomi.net
|
||||
DOMAIN-SUFFIX,xiaomicp.com
|
||||
DOMAIN-SUFFIX,ximalaya.com
|
||||
DOMAIN-SUFFIX,xitek.com
|
||||
DOMAIN-SUFFIX,xmcdn.com
|
||||
DOMAIN-SUFFIX,xslb.net
|
||||
DOMAIN-SUFFIX,xteko.com
|
||||
DOMAIN-SUFFIX,xunlei.com
|
||||
DOMAIN-SUFFIX,yach.me
|
||||
DOMAIN-SUFFIX,yeepay.com
|
||||
DOMAIN-SUFFIX,yhd.com
|
||||
DOMAIN-SUFFIX,yinxiang.com
|
||||
DOMAIN-SUFFIX,yixia.com
|
||||
DOMAIN-SUFFIX,ykimg.com
|
||||
DOMAIN-SUFFIX,youdao.com
|
||||
DOMAIN-SUFFIX,youku.com
|
||||
DOMAIN-SUFFIX,yunjiasu-cdn.net
|
||||
DOMAIN-SUFFIX,zealer.com
|
||||
DOMAIN-SUFFIX,zgslb.net
|
||||
DOMAIN-SUFFIX,zhihu.com
|
||||
DOMAIN-SUFFIX,zhimg.com
|
||||
DOMAIN-SUFFIX,zimuzu.tv
|
||||
DOMAIN-SUFFIX,zmz002.com
|
||||
|
||||
IP-CIDR,1.255.62.0/24,no-resolve
|
||||
146
rules/lhie1/Surge3/GlobalTV.list
Normal file
146
rules/lhie1/Surge3/GlobalTV.list
Normal file
@@ -0,0 +1,146 @@
|
||||
# > ABC
|
||||
DOMAIN-SUFFIX,edgedatg.com
|
||||
DOMAIN-SUFFIX,go.com
|
||||
|
||||
# > AbemaTV
|
||||
USER-AGENT,AbemaTV*
|
||||
DOMAIN-SUFFIX,abema.io
|
||||
DOMAIN-SUFFIX,ameba.jp
|
||||
DOMAIN-SUFFIX,hayabusa.io
|
||||
DOMAIN,abematv.akamaized.net
|
||||
DOMAIN,ds-linear-abematv.akamaized.net
|
||||
DOMAIN,ds-vod-abematv.akamaized.net
|
||||
DOMAIN,linear-abematv.akamaized.net
|
||||
|
||||
# > Amazon Prime Video
|
||||
USER-AGENT,InstantVideo.US*
|
||||
USER-AGENT,Prime%20Video*
|
||||
DOMAIN-SUFFIX,aiv-cdn.net
|
||||
DOMAIN-SUFFIX,amazonaws.com
|
||||
DOMAIN-SUFFIX,amazonvideo.com
|
||||
DOMAIN-SUFFIX,llnwd.net
|
||||
|
||||
# > Bahamut
|
||||
USER-AGENT,Anime*
|
||||
DOMAIN-SUFFIX,bahamut.com.tw
|
||||
DOMAIN-SUFFIX,gamer.com.tw
|
||||
DOMAIN-SUFFIX,hinet.net
|
||||
|
||||
# > BBC
|
||||
USER-AGENT,BBCiPlayer*
|
||||
DOMAIN-KEYWORD,bbcfmt
|
||||
DOMAIN-KEYWORD,co.uk
|
||||
DOMAIN-KEYWORD,uk-live
|
||||
DOMAIN-SUFFIX,bbc.co
|
||||
DOMAIN-SUFFIX,bbc.co.uk
|
||||
DOMAIN-SUFFIX,bbc.com
|
||||
DOMAIN-SUFFIX,bbci.co
|
||||
DOMAIN-SUFFIX,bbci.co.uk
|
||||
|
||||
# > CHOCO TV
|
||||
USER-AGENT,TwDramas*
|
||||
DOMAIN-SUFFIX,chocotv.com.tw
|
||||
|
||||
# > Disney Plus
|
||||
USER-AGENT,Disney*
|
||||
DOMAIN,cdn.registerdisney.go.com
|
||||
DOMAIN-SUFFIX,disneyplus.com
|
||||
DOMAIN-SUFFIX,disney-plus.net
|
||||
DOMAIN-SUFFIX,dssott.com
|
||||
DOMAIN-SUFFIX,bamgrid.com
|
||||
DOMAIN-SUFFIX,execute-api.us-east-1.amazonaws.com
|
||||
|
||||
# > Now E
|
||||
USER-AGENT,PCCW*
|
||||
DOMAIN-KEYWORD,nowe
|
||||
DOMAIN,bcbolthboa-a.akamaihd.net
|
||||
DOMAIN-SUFFIX,nowe.com
|
||||
DOMAIN-SUFFIX,youboranqs01.com
|
||||
|
||||
# > Epicgames
|
||||
DOMAIN-KEYWORD,epicgames
|
||||
DOMAIN-SUFFIX,helpshift.com
|
||||
|
||||
# > Fox+
|
||||
USER-AGENT,FOX%20NOW*
|
||||
USER-AGENT,FOXPlus*
|
||||
DOMAIN-KEYWORD,foxplus
|
||||
DOMAIN-SUFFIX,config.fox.com
|
||||
DOMAIN-SUFFIX,emome.net
|
||||
DOMAIN-SUFFIX,fox.com
|
||||
DOMAIN-SUFFIX,foxdcg.com
|
||||
DOMAIN-SUFFIX,foxnow.com
|
||||
DOMAIN-SUFFIX,foxplus.com
|
||||
DOMAIN-SUFFIX,foxplay.com
|
||||
DOMAIN-SUFFIX,ipinfo.io
|
||||
DOMAIN-SUFFIX,mstage.io
|
||||
DOMAIN-SUFFIX,now.com
|
||||
DOMAIN-SUFFIX,theplatform.com
|
||||
DOMAIN-SUFFIX,urlload.net
|
||||
|
||||
# > HBO && HBO Go
|
||||
USER-AGENT,HBO%20NOW*
|
||||
DOMAIN-SUFFIX,execute-api.ap-southeast-1.amazonaws.com
|
||||
DOMAIN-SUFFIX,hbo.com
|
||||
DOMAIN-SUFFIX,hboasia.com
|
||||
DOMAIN-SUFFIX,hbogo.com
|
||||
DOMAIN-SUFFIX,hbogoasia.hk
|
||||
|
||||
# > Hulu
|
||||
USER-AGENT,Hulu*
|
||||
DOMAIN-SUFFIX,happyon.jp
|
||||
DOMAIN-SUFFIX,hulu.com
|
||||
DOMAIN-SUFFIX,huluim.com
|
||||
DOMAIN-SUFFIX,hulustream.com
|
||||
|
||||
# > Imkan
|
||||
DOMAIN-SUFFIX,imkan.tv
|
||||
|
||||
# > JOOX
|
||||
USER-AGENT,WeMusic*
|
||||
USER-AGENT,JOOX*
|
||||
DOMAIN-SUFFIX,joox.com
|
||||
|
||||
# > MytvSUPER
|
||||
USER-AGENT,mytv*
|
||||
DOMAIN-KEYWORD,nowtv100
|
||||
DOMAIN-KEYWORD,rthklive
|
||||
DOMAIN-SUFFIX,mytvsuper.com
|
||||
DOMAIN-SUFFIX,tvb.com
|
||||
|
||||
# > Netflix
|
||||
DOMAIN-SUFFIX,netflix.com
|
||||
DOMAIN-SUFFIX,netflix.net
|
||||
DOMAIN-SUFFIX,nflxext.com
|
||||
DOMAIN-SUFFIX,nflximg.com
|
||||
DOMAIN-SUFFIX,nflximg.net
|
||||
DOMAIN-SUFFIX,nflxso.net
|
||||
DOMAIN-SUFFIX,nflxvideo.net
|
||||
|
||||
# > Pandora
|
||||
DOMAIN-SUFFIX,pandora.com
|
||||
|
||||
# > Sky GO
|
||||
USER-AGENT,skygo*
|
||||
DOMAIN-SUFFIX,sky.com
|
||||
DOMAIN-SUFFIX,skygo.co.nz
|
||||
|
||||
# > SoundCloud
|
||||
USER-AGENT,SoundCloud*
|
||||
|
||||
# > Spotify
|
||||
USER-AGENT,*Spotify*
|
||||
DOMAIN-KEYWORD,spotify
|
||||
DOMAIN-SUFFIX,scdn.co
|
||||
DOMAIN-SUFFIX,spoti.fi
|
||||
|
||||
# > viuTV
|
||||
DOMAIN-SUFFIX,viu.tv
|
||||
|
||||
# > Youtube
|
||||
USER-AGENT,*youtube*
|
||||
USER-AGENT,YouTube*
|
||||
DOMAIN-KEYWORD,youtube
|
||||
DOMAIN-SUFFIX,googlevideo.com
|
||||
DOMAIN-SUFFIX,gvt2.com
|
||||
DOMAIN-SUFFIX,youtu.be
|
||||
7
rules/lhie1/Surge3/Media/AbemaTV.list
Normal file
7
rules/lhie1/Surge3/Media/AbemaTV.list
Normal file
@@ -0,0 +1,7 @@
|
||||
# > AbemaTV
|
||||
USER-AGENT,AbemaTV*
|
||||
DOMAIN-SUFFIX,abema.io
|
||||
DOMAIN-SUFFIX,abema.tv
|
||||
DOMAIN-SUFFIX,akamaized.net
|
||||
DOMAIN-SUFFIX,ameba.jp
|
||||
DOMAIN-SUFFIX,hayabusa.io
|
||||
3
rules/lhie1/Surge3/Media/Amazon.list
Normal file
3
rules/lhie1/Surge3/Media/Amazon.list
Normal file
@@ -0,0 +1,3 @@
|
||||
# > Amazon Prime Video
|
||||
USER-AGENT,InstantVideo.US*
|
||||
USER-AGENT,Prime%20Video*
|
||||
12
rules/lhie1/Surge3/Media/AppleNews.list
Normal file
12
rules/lhie1/Surge3/Media/AppleNews.list
Normal file
@@ -0,0 +1,12 @@
|
||||
# > Apple News and Apple Map TOMTOM Version
|
||||
DOMAIN,gspe1-ssl.ls.apple.com
|
||||
PROCESS-NAME,News
|
||||
USER-AGENT,AppleNews*
|
||||
USER-AGENT,com.apple.news*
|
||||
#USER-AGENT,News*
|
||||
#DOMAIN,gateway.icloud.com
|
||||
#DOMAIN,news-events.apple.com
|
||||
#DOMAIN,apple.comscoreresearch.com
|
||||
#DOMAIN-SUFFIX,apple.news
|
||||
#DOMAIN,news-client.apple.com
|
||||
#DOMAIN,news-edge.apple.com
|
||||
6
rules/lhie1/Surge3/Media/BBC_iPlayer.list
Normal file
6
rules/lhie1/Surge3/Media/BBC_iPlayer.list
Normal file
@@ -0,0 +1,6 @@
|
||||
# > BBC iPlayer
|
||||
USER-AGENT,BBCiPlayer*
|
||||
DOMAIN-SUFFIX,bbc.co.uk
|
||||
DOMAIN-SUFFIX,bbci.co.uk
|
||||
DOMAIN-KEYWORD,bbcfmt
|
||||
DOMAIN-KEYWORD,uk-live
|
||||
5
rules/lhie1/Surge3/Media/Bahamut.list
Normal file
5
rules/lhie1/Surge3/Media/Bahamut.list
Normal file
@@ -0,0 +1,5 @@
|
||||
# > Bahamut
|
||||
USER-AGENT,Anime*
|
||||
DOMAIN-SUFFIX,bahamut.com.tw
|
||||
DOMAIN-SUFFIX,gamer.com.tw
|
||||
DOMAIN-SUFFIX,hinet.net
|
||||
12
rules/lhie1/Surge3/Media/Bilibili.list
Normal file
12
rules/lhie1/Surge3/Media/Bilibili.list
Normal file
@@ -0,0 +1,12 @@
|
||||
# > Bilibili
|
||||
USER-AGENT,*bili*
|
||||
DOMAIN-SUFFIX,acg.tv
|
||||
DOMAIN-SUFFIX,acgvideo.com
|
||||
DOMAIN-SUFFIX,b23.tv
|
||||
DOMAIN-SUFFIX,biliapi.com
|
||||
DOMAIN-SUFFIX,biliapi.net
|
||||
DOMAIN-SUFFIX,bilibili.com
|
||||
DOMAIN-SUFFIX,biligame.com
|
||||
DOMAIN-SUFFIX,biligame.net
|
||||
DOMAIN-SUFFIX,hdslb.com
|
||||
DOMAIN-SUFFIX,im9.com
|
||||
8
rules/lhie1/Surge3/Media/DisneyPlus.list
Normal file
8
rules/lhie1/Surge3/Media/DisneyPlus.list
Normal file
@@ -0,0 +1,8 @@
|
||||
# > Disney Plus
|
||||
USER-AGENT,Disney*
|
||||
DOMAIN-SUFFIX,disneyplus.com
|
||||
DOMAIN-SUFFIX,disney-plus.net
|
||||
DOMAIN-SUFFIX,dssott.com
|
||||
DOMAIN-SUFFIX,bamgrid.com
|
||||
DOMAIN-SUFFIX,execute-api.us-east-1.amazonaws.com
|
||||
DOMAIN,cdn.registerdisney.go.com
|
||||
5
rules/lhie1/Surge3/Media/FoxPlus.list
Normal file
5
rules/lhie1/Surge3/Media/FoxPlus.list
Normal file
@@ -0,0 +1,5 @@
|
||||
# > Fox+ (HK|TW|SG)
|
||||
USER-AGENT,FOXPlus*
|
||||
DOMAIN-SUFFIX,akamaized.net
|
||||
DOMAIN-SUFFIX,foxplus.com
|
||||
DOMAIN-SUFFIX,theplatform.com
|
||||
5
rules/lhie1/Surge3/Media/Fox_Now.list
Normal file
5
rules/lhie1/Surge3/Media/Fox_Now.list
Normal file
@@ -0,0 +1,5 @@
|
||||
# > Fox Now
|
||||
USER-AGENT,FOX%20NOW*
|
||||
DOMAIN-SUFFIX,fox.com
|
||||
DOMAIN-SUFFIX,foxdcg.com
|
||||
DOMAIN-SUFFIX,uplynk.com
|
||||
8
rules/lhie1/Surge3/Media/HBO.list
Normal file
8
rules/lhie1/Surge3/Media/HBO.list
Normal file
@@ -0,0 +1,8 @@
|
||||
# > HBO NOW & HBO GO
|
||||
USER-AGENT,HBO%20NOW*
|
||||
DOMAIN-SUFFIX,execute-api.ap-southeast-1.amazonaws.com
|
||||
DOMAIN-SUFFIX,hbo.com
|
||||
DOMAIN-SUFFIX,hbogo.com
|
||||
DOMAIN-SUFFIX,hboasia.com
|
||||
DOMAIN-SUFFIX,hbogo.com
|
||||
DOMAIN-SUFFIX,hbogoasia.hk
|
||||
4
rules/lhie1/Surge3/Media/Hulu.list
Normal file
4
rules/lhie1/Surge3/Media/Hulu.list
Normal file
@@ -0,0 +1,4 @@
|
||||
# > Hulu
|
||||
DOMAIN-SUFFIX,hulu.com
|
||||
DOMAIN-SUFFIX,huluim.com
|
||||
DOMAIN-SUFFIX,hulustream.com
|
||||
3
rules/lhie1/Surge3/Media/Hulu_Japan.list
Normal file
3
rules/lhie1/Surge3/Media/Hulu_Japan.list
Normal file
@@ -0,0 +1,3 @@
|
||||
# > Hulu(フールー)
|
||||
DOMAIN-SUFFIX,happyon.jp
|
||||
DOMAIN-SUFFIX,hulu.jp
|
||||
4
rules/lhie1/Surge3/Media/JOOX.list
Normal file
4
rules/lhie1/Surge3/Media/JOOX.list
Normal file
@@ -0,0 +1,4 @@
|
||||
# > JOOX
|
||||
USER-AGENT,WeMusic*
|
||||
USER-AGENT,JOOX*
|
||||
DOMAIN-SUFFIX,joox.com
|
||||
11
rules/lhie1/Surge3/Media/Japonx.list
Normal file
11
rules/lhie1/Surge3/Media/Japonx.list
Normal file
@@ -0,0 +1,11 @@
|
||||
# > Japonx
|
||||
DOMAIN-KEYWORD,japonx
|
||||
DOMAIN-KEYWORD,japronx
|
||||
DOMAIN-SUFFIX,japonx.com
|
||||
DOMAIN-SUFFIX,japonx.tv
|
||||
DOMAIN-SUFFIX,japonx.net
|
||||
DOMAIN-SUFFIX,japonx.vip
|
||||
DOMAIN-SUFFIX,japronx.com
|
||||
DOMAIN-SUFFIX,japronx.tv
|
||||
DOMAIN-SUFFIX,japronx.net
|
||||
DOMAIN-SUFFIX,japronx.vip
|
||||
4
rules/lhie1/Surge3/Media/KKBOX.list
Normal file
4
rules/lhie1/Surge3/Media/KKBOX.list
Normal file
@@ -0,0 +1,4 @@
|
||||
# > KKBOX
|
||||
DOMAIN-SUFFIX,kkbox.com
|
||||
DOMAIN-SUFFIX,kkbox.com.tw
|
||||
DOMAIN-SUFFIX,kfs.io
|
||||
4
rules/lhie1/Surge3/Media/Line_TV.list
Normal file
4
rules/lhie1/Surge3/Media/Line_TV.list
Normal file
@@ -0,0 +1,4 @@
|
||||
# > Line TV
|
||||
USER-AGENT,LINE*
|
||||
DOMAIN-SUFFIX,d3c7rimkq79yfu.cloudfront.net
|
||||
DOMAIN-SUFFIX,linetv.tw
|
||||
9
rules/lhie1/Surge3/Media/Netflix.list
Normal file
9
rules/lhie1/Surge3/Media/Netflix.list
Normal file
@@ -0,0 +1,9 @@
|
||||
# > Netflix
|
||||
USER-AGENT,Argo*
|
||||
DOMAIN-SUFFIX,netflix.com
|
||||
DOMAIN-SUFFIX,netflix.net
|
||||
DOMAIN-SUFFIX,nflxext.com
|
||||
DOMAIN-SUFFIX,nflximg.com
|
||||
DOMAIN-SUFFIX,nflximg.net
|
||||
DOMAIN-SUFFIX,nflxso.net
|
||||
DOMAIN-SUFFIX,nflxvideo.net
|
||||
3
rules/lhie1/Surge3/Media/PBS.list
Normal file
3
rules/lhie1/Surge3/Media/PBS.list
Normal file
@@ -0,0 +1,3 @@
|
||||
# > PBS
|
||||
USER-AGENT,PBS*
|
||||
DOMAIN-SUFFIX,pbs.org
|
||||
2
rules/lhie1/Surge3/Media/Pandora.list
Normal file
2
rules/lhie1/Surge3/Media/Pandora.list
Normal file
@@ -0,0 +1,2 @@
|
||||
# > Pandora
|
||||
DOMAIN-SUFFIX,pandora.com
|
||||
6
rules/lhie1/Surge3/Media/Spotify.list
Normal file
6
rules/lhie1/Surge3/Media/Spotify.list
Normal file
@@ -0,0 +1,6 @@
|
||||
# > Spotify
|
||||
USER-AGENT,Spotify*
|
||||
DOMAIN-SUFFIX,pscdn.co
|
||||
DOMAIN-SUFFIX,scdn.co
|
||||
DOMAIN-SUFFIX,spotify.com
|
||||
DOMAIN-SUFFIX,spoti.fi
|
||||
4
rules/lhie1/Surge3/Media/ViuTV.list
Normal file
4
rules/lhie1/Surge3/Media/ViuTV.list
Normal file
@@ -0,0 +1,4 @@
|
||||
# > ViuTV
|
||||
USER-AGENT,ViuTV*
|
||||
DOMAIN-SUFFIX,viu.tv
|
||||
DOMAIN,api.viu.now.com
|
||||
7
rules/lhie1/Surge3/Media/YouTube.list
Normal file
7
rules/lhie1/Surge3/Media/YouTube.list
Normal file
@@ -0,0 +1,7 @@
|
||||
# > Youtube
|
||||
USER-AGENT,*youtube*
|
||||
USER-AGENT,YouTube*
|
||||
DOMAIN-KEYWORD,youtube
|
||||
DOMAIN-SUFFIX,googlevideo.com
|
||||
DOMAIN-SUFFIX,gvt2.com
|
||||
DOMAIN-SUFFIX,youtu.be
|
||||
4
rules/lhie1/Surge3/Media/YouTube_Music.list
Normal file
4
rules/lhie1/Surge3/Media/YouTube_Music.list
Normal file
@@ -0,0 +1,4 @@
|
||||
# > Youtube_Music
|
||||
USER-AGENT,*YouTubeMusic*
|
||||
USER-AGENT,*com.google.ios.youtubemusic*
|
||||
PROCESS-NAME,YT Music
|
||||
5
rules/lhie1/Surge3/Media/encoreTVB.list
Normal file
5
rules/lhie1/Surge3/Media/encoreTVB.list
Normal file
@@ -0,0 +1,5 @@
|
||||
# > encoreTVB
|
||||
USER-AGENT,encoreTVB*
|
||||
DOMAIN-SUFFIX,encoretvb.com
|
||||
DOMAIN,content.jwplatform.com
|
||||
DOMAIN,videos-f.jwpsrv.com
|
||||
8
rules/lhie1/Surge3/Media/iQiyi.list
Normal file
8
rules/lhie1/Surge3/Media/iQiyi.list
Normal file
@@ -0,0 +1,8 @@
|
||||
# > iQiyi
|
||||
USER-AGENT,QIYI*
|
||||
USER-AGENT,iQiYi*
|
||||
DOMAIN-KEYWORD,qiyi
|
||||
DOMAIN-SUFFIX,qy.net
|
||||
IP-CIDR,101.227.0.0/16,no-resolve
|
||||
IP-CIDR,101.224.0.0/13,no-resolve
|
||||
IP-CIDR,119.176.0.0/12,no-resolve
|
||||
4
rules/lhie1/Surge3/Media/myTV_SUPER.list
Normal file
4
rules/lhie1/Surge3/Media/myTV_SUPER.list
Normal file
@@ -0,0 +1,4 @@
|
||||
# > myTV_SUPER
|
||||
USER-AGENT,mytv*
|
||||
DOMAIN-SUFFIX,mytvsuper.com
|
||||
DOMAIN-SUFFIX,tvb.com
|
||||
774
rules/lhie1/Surge3/Proxy.list
Normal file
774
rules/lhie1/Surge3/Proxy.list
Normal file
@@ -0,0 +1,774 @@
|
||||
# > Client
|
||||
PROCESS-NAME,Backup and Sync
|
||||
PROCESS-NAME,Day One
|
||||
PROCESS-NAME,Dropbox
|
||||
PROCESS-NAME,LINE
|
||||
PROCESS-NAME,node-webkit
|
||||
PROCESS-NAME,Resilio Sync
|
||||
PROCESS-NAME,Tweetbot
|
||||
PROCESS-NAME,Twitter
|
||||
PROCESS-NAME,Twitterrific
|
||||
|
||||
# > UA
|
||||
USER-AGENT,%E7%BA%BD%E7%BA%A6%E6%97%B6%E6%8A%A5*
|
||||
USER-AGENT,AwemeI18n*
|
||||
USER-AGENT,Coinbase*
|
||||
USER-AGENT,Instagram*
|
||||
USER-AGENT,Resilio Sync*
|
||||
USER-AGENT,WhatsApp*
|
||||
|
||||
# > Line
|
||||
DOMAIN-SUFFIX,lin.ee
|
||||
DOMAIN-SUFFIX,line.me
|
||||
DOMAIN-SUFFIX,line.naver.jp
|
||||
DOMAIN-SUFFIX,line-apps.com
|
||||
DOMAIN-SUFFIX,line-cdn.net
|
||||
DOMAIN-SUFFIX,line-scdn.net
|
||||
DOMAIN-SUFFIX,nhncorp.jp
|
||||
|
||||
# > Microsoft
|
||||
USER-AGENT,OneDrive*
|
||||
DOMAIN-KEYWORD,microsoft
|
||||
DOMAIN-SUFFIX,hotmail.com
|
||||
DOMAIN-SUFFIX,live.com
|
||||
DOMAIN-SUFFIX,live.net
|
||||
DOMAIN-SUFFIX,msn.com
|
||||
DOMAIN-SUFFIX,office.com
|
||||
DOMAIN-SUFFIX,office.net
|
||||
DOMAIN-SUFFIX,outlook.com
|
||||
|
||||
# > Spark
|
||||
DOMAIN-SUFFIX,api.amplitude.com
|
||||
DOMAIN-SUFFIX,app.smartmailcloud.com
|
||||
DOMAIN-SUFFIX,gate.hockeyapp.net
|
||||
DOMAIN-SUFFIX,smartmailcloud.com
|
||||
|
||||
# > Steam
|
||||
DOMAIN-SUFFIX,fanatical.com
|
||||
DOMAIN-SUFFIX,humblebundle.com
|
||||
DOMAIN-SUFFIX,steamcommunity.com
|
||||
DOMAIN-SUFFIX,steampowered.com
|
||||
DOMAIN-SUFFIX,steamstatic.com
|
||||
|
||||
# > Top blocked sites
|
||||
DOMAIN-SUFFIX,2o7.net
|
||||
DOMAIN-SUFFIX,4everProxy.com
|
||||
DOMAIN-SUFFIX,4shared.com
|
||||
DOMAIN-SUFFIX,4sqi.net
|
||||
DOMAIN-SUFFIX,9to5mac.com
|
||||
DOMAIN-SUFFIX,abpchina.org
|
||||
DOMAIN-SUFFIX,accountkit.com
|
||||
DOMAIN-SUFFIX,adblockplus.org
|
||||
DOMAIN-SUFFIX,adobe.com
|
||||
DOMAIN-SUFFIX,adobedtm.com
|
||||
DOMAIN-SUFFIX,aerisapi.com
|
||||
DOMAIN-SUFFIX,akamaihd.net
|
||||
DOMAIN-SUFFIX,airtable.com
|
||||
DOMAIN-SUFFIX,alfredapp.com
|
||||
DOMAIN-SUFFIX,allconnected.co
|
||||
DOMAIN-SUFFIX,amazon.com
|
||||
DOMAIN-SUFFIX,amazonaws.com
|
||||
DOMAIN-SUFFIX,ampproject.com
|
||||
DOMAIN-SUFFIX,ampproject.net
|
||||
DOMAIN-SUFFIX,ampproject.org
|
||||
DOMAIN-SUFFIX,anaconda.com
|
||||
DOMAIN-SUFFIX,ancsconf.org
|
||||
DOMAIN-SUFFIX,android.com
|
||||
DOMAIN-SUFFIX,androidify.com
|
||||
DOMAIN-SUFFIX,android-x86.org
|
||||
DOMAIN-SUFFIX,angularjs.org
|
||||
DOMAIN-SUFFIX,anthonycalzadilla.com
|
||||
DOMAIN-SUFFIX,aol.com
|
||||
DOMAIN-SUFFIX,aolcdn.com
|
||||
DOMAIN-SUFFIX,api.mixpanel.com
|
||||
DOMAIN-SUFFIX,api.tiktokv.com
|
||||
DOMAIN-SUFFIX,api.urbandictionary.com
|
||||
DOMAIN-SUFFIX,apigee.com
|
||||
DOMAIN-SUFFIX,apk-dl.com
|
||||
DOMAIN-SUFFIX,apkpure.com
|
||||
DOMAIN-SUFFIX,appdownloader.net
|
||||
DOMAIN-SUFFIX,apple-dns.net
|
||||
DOMAIN-SUFFIX,app-measurement.com
|
||||
DOMAIN-SUFFIX,appshopper.com
|
||||
DOMAIN-SUFFIX,arcgis.com
|
||||
DOMAIN-SUFFIX,archive.is
|
||||
DOMAIN-SUFFIX,archive.org
|
||||
DOMAIN-SUFFIX,archives.gov
|
||||
DOMAIN-SUFFIX,armorgames.com
|
||||
DOMAIN-SUFFIX,aspnetcdn.com
|
||||
DOMAIN-SUFFIX,async.be
|
||||
DOMAIN-SUFFIX,att.com
|
||||
DOMAIN-SUFFIX,avgle.com
|
||||
DOMAIN-SUFFIX,awsstatic.com
|
||||
DOMAIN-SUFFIX,azure.com
|
||||
DOMAIN-SUFFIX,azureedge.net
|
||||
DOMAIN-SUFFIX,azurewebsites.net
|
||||
DOMAIN-SUFFIX,badoo.com
|
||||
DOMAIN-SUFFIX,bandisoft.com
|
||||
DOMAIN-SUFFIX,bbtoystore.com
|
||||
DOMAIN-SUFFIX,betvictor.com
|
||||
DOMAIN-SUFFIX,bigsound.org
|
||||
DOMAIN-SUFFIX,bing.com
|
||||
DOMAIN-SUFFIX,bing.net
|
||||
DOMAIN-SUFFIX,bintray.com
|
||||
DOMAIN-SUFFIX,bit.com
|
||||
DOMAIN-SUFFIX,bit.do
|
||||
DOMAIN-SUFFIX,bit.ly
|
||||
DOMAIN-SUFFIX,bitbucket.org
|
||||
DOMAIN-SUFFIX,bitcointalk.org
|
||||
DOMAIN-SUFFIX,bitshare.com
|
||||
DOMAIN-SUFFIX,bkrtx.com
|
||||
DOMAIN-SUFFIX,blog.com
|
||||
DOMAIN-SUFFIX,blogcdn.com
|
||||
DOMAIN-SUFFIX,blogger.com
|
||||
DOMAIN-SUFFIX,bloglovin.com
|
||||
DOMAIN-SUFFIX,blogsmithmedia.com
|
||||
DOMAIN-SUFFIX,blogspot.hk
|
||||
DOMAIN-SUFFIX,bloomberg.cn
|
||||
DOMAIN-SUFFIX,bloomberg.com
|
||||
DOMAIN-SUFFIX,books.com.tw
|
||||
DOMAIN-SUFFIX,boomtrain.com
|
||||
DOMAIN-SUFFIX,botanwang.com
|
||||
DOMAIN-SUFFIX,box.com
|
||||
DOMAIN-SUFFIX,box.net
|
||||
DOMAIN-SUFFIX,boxun.com
|
||||
DOMAIN-SUFFIX,cachefly.net
|
||||
DOMAIN-SUFFIX,cbc.ca
|
||||
DOMAIN-SUFFIX,cdn.segment.com
|
||||
DOMAIN-SUFFIX,cdnst.net
|
||||
DOMAIN-SUFFIX,celestrak.com
|
||||
DOMAIN-SUFFIX,census.gov
|
||||
DOMAIN-SUFFIX,certificate-transparency.org
|
||||
DOMAIN-SUFFIX,chinadigitaltimes.net
|
||||
DOMAIN-SUFFIX,chinatimes.com
|
||||
DOMAIN-SUFFIX,chrome.com
|
||||
DOMAIN-SUFFIX,chromecast.com
|
||||
DOMAIN-SUFFIX,chromercise.com
|
||||
DOMAIN-SUFFIX,chromestatus.com
|
||||
DOMAIN-SUFFIX,chromium.org
|
||||
DOMAIN-SUFFIX,cl.ly
|
||||
DOMAIN-SUFFIX,cloudflare.com
|
||||
DOMAIN-SUFFIX,cloudfront.net
|
||||
DOMAIN-SUFFIX,cloudgarage.jp
|
||||
DOMAIN-SUFFIX,cloudmagic.com
|
||||
DOMAIN-SUFFIX,cmail19.com
|
||||
DOMAIN-SUFFIX,cnet.com
|
||||
DOMAIN-SUFFIX,cnn.com
|
||||
DOMAIN-SUFFIX,cocoapods.org
|
||||
DOMAIN-SUFFIX,comodoca.com
|
||||
DOMAIN-SUFFIX,content.office.net
|
||||
DOMAIN-SUFFIX,culturedcode.com
|
||||
DOMAIN-SUFFIX,cygames.jp
|
||||
DOMAIN-SUFFIX,d.pr
|
||||
DOMAIN-SUFFIX,danilo.to
|
||||
DOMAIN-SUFFIX,daolan.net
|
||||
DOMAIN-SUFFIX,data-vocabulary.org
|
||||
DOMAIN-SUFFIX,dayone.me
|
||||
DOMAIN-SUFFIX,db.tt
|
||||
DOMAIN-SUFFIX,dcmilitary.com
|
||||
DOMAIN-SUFFIX,deja.com
|
||||
DOMAIN-SUFFIX,demdex.net
|
||||
DOMAIN-SUFFIX,deskconnect.com
|
||||
DOMAIN-SUFFIX,digisfera.com
|
||||
DOMAIN-SUFFIX,digitaltrends.com
|
||||
DOMAIN-SUFFIX,disconnect.me
|
||||
DOMAIN-SUFFIX,disq.us
|
||||
DOMAIN-SUFFIX,disqus.com
|
||||
DOMAIN-SUFFIX,disquscdn.com
|
||||
DOMAIN-SUFFIX,dmm.co.jp
|
||||
DOMAIN-SUFFIX,dnsimple.com
|
||||
DOMAIN-SUFFIX,docker.com
|
||||
DOMAIN-SUFFIX,doub.io
|
||||
DOMAIN-SUFFIX,dowjones.com
|
||||
DOMAIN-SUFFIX,dribbble.com
|
||||
DOMAIN-SUFFIX,droplr.com
|
||||
DOMAIN-SUFFIX,duckduckgo.com
|
||||
DOMAIN-SUFFIX,dueapp.com
|
||||
DOMAIN-SUFFIX,dw.com
|
||||
DOMAIN-SUFFIX,easybib.com
|
||||
DOMAIN-SUFFIX,economist.com
|
||||
DOMAIN-SUFFIX,edgecastcdn.net
|
||||
DOMAIN-SUFFIX,edgekey.net
|
||||
DOMAIN-SUFFIX,edgesuite.net
|
||||
DOMAIN-SUFFIX,engadget.com
|
||||
DOMAIN-SUFFIX,entrust.net
|
||||
DOMAIN-SUFFIX,eurekavpt.com
|
||||
DOMAIN-SUFFIX,evernote.com
|
||||
DOMAIN-SUFFIX,extmatrix.com
|
||||
DOMAIN-SUFFIX,eyny.com
|
||||
DOMAIN-SUFFIX,fabric.io
|
||||
DOMAIN-SUFFIX,fastly.net
|
||||
DOMAIN-SUFFIX,fastmail.com
|
||||
DOMAIN-SUFFIX,fc2.com
|
||||
DOMAIN-SUFFIX,feedburner.com
|
||||
DOMAIN-SUFFIX,feedly.com
|
||||
DOMAIN-SUFFIX,feedsportal.com
|
||||
DOMAIN-SUFFIX,fiftythree.com
|
||||
DOMAIN-SUFFIX,firebaseio.com
|
||||
DOMAIN-SUFFIX,flexibits.com
|
||||
DOMAIN-SUFFIX,flickr.com
|
||||
DOMAIN-SUFFIX,flipboard.com
|
||||
DOMAIN-SUFFIX,flipkart.com
|
||||
DOMAIN-SUFFIX,flitto.com
|
||||
DOMAIN-SUFFIX,flurry.com
|
||||
DOMAIN-SUFFIX,freeopenProxy.com
|
||||
DOMAIN-SUFFIX,fubo.tv
|
||||
DOMAIN-SUFFIX,fullstory.com
|
||||
DOMAIN-SUFFIX,fzlm.net
|
||||
DOMAIN-SUFFIX,g.co
|
||||
DOMAIN-SUFFIX,gabia.net
|
||||
DOMAIN-SUFFIX,garena.com
|
||||
DOMAIN-SUFFIX,gameloft.com
|
||||
DOMAIN-SUFFIX,geni.us
|
||||
DOMAIN-SUFFIX,get.how
|
||||
DOMAIN-SUFFIX,getcloudapp.com
|
||||
DOMAIN-SUFFIX,getfoxyProxy.org
|
||||
DOMAIN-SUFFIX,getlantern.org
|
||||
DOMAIN-SUFFIX,getmdl.io
|
||||
DOMAIN-SUFFIX,getpricetag.com
|
||||
DOMAIN-SUFFIX,gfw.press
|
||||
DOMAIN-SUFFIX,gfx.ms
|
||||
DOMAIN-SUFFIX,ggpht.com
|
||||
DOMAIN-SUFFIX,ghostnoteapp.com
|
||||
DOMAIN-SUFFIX,git.io
|
||||
DOMAIN-SUFFIX,gitbook.com
|
||||
DOMAIN-SUFFIX,globalsign.com
|
||||
DOMAIN-SUFFIX,gmocloud.com
|
||||
DOMAIN-SUFFIX,gmodules.com
|
||||
DOMAIN-SUFFIX,go.com
|
||||
DOMAIN-SUFFIX,go.jp
|
||||
DOMAIN-SUFFIX,godaddy.com
|
||||
DOMAIN-SUFFIX,golang.org
|
||||
DOMAIN-SUFFIX,gongm.in
|
||||
DOMAIN-SUFFIX,goo.gl
|
||||
DOMAIN-SUFFIX,goodreaders.com
|
||||
DOMAIN-SUFFIX,goodreads.com
|
||||
DOMAIN-SUFFIX,gravatar.com
|
||||
DOMAIN-SUFFIX,gstatic.cn
|
||||
DOMAIN-SUFFIX,gstatic.com
|
||||
DOMAIN-SUFFIX,gunsamerica.com
|
||||
DOMAIN-SUFFIX,gvt0.com
|
||||
DOMAIN-SUFFIX,gvt1.com
|
||||
DOMAIN-SUFFIX,helpshift.com
|
||||
DOMAIN-SUFFIX,hinet.net
|
||||
DOMAIN-SUFFIX,hockeyapp.net
|
||||
DOMAIN-SUFFIX,homedepot.com
|
||||
DOMAIN-SUFFIX,hootsuite.com
|
||||
DOMAIN-SUFFIX,howtoforge.com
|
||||
DOMAIN-SUFFIX,iam.soy
|
||||
DOMAIN-SUFFIX,icoco.com
|
||||
DOMAIN-SUFFIX,icons8.com
|
||||
DOMAIN-SUFFIX,ift.tt
|
||||
DOMAIN-SUFFIX,ifttt.com
|
||||
DOMAIN-SUFFIX,imageshack.us
|
||||
DOMAIN-SUFFIX,img.ly
|
||||
DOMAIN-SUFFIX,imgur.com
|
||||
DOMAIN-SUFFIX,imore.com
|
||||
DOMAIN-SUFFIX,ingress.com
|
||||
DOMAIN-SUFFIX,insder.co
|
||||
DOMAIN-SUFFIX,instapaper.com
|
||||
DOMAIN-SUFFIX,instructables.com
|
||||
DOMAIN-SUFFIX,io.io
|
||||
DOMAIN-SUFFIX,ip.sb
|
||||
DOMAIN-SUFFIX,ipaddress.com
|
||||
DOMAIN-SUFFIX,ipn.li
|
||||
DOMAIN-SUFFIX,is.gd
|
||||
DOMAIN-SUFFIX,ishowsapp.com
|
||||
DOMAIN-SUFFIX,issuu.com
|
||||
DOMAIN-SUFFIX,itgonglun.com
|
||||
DOMAIN-SUFFIX,itun.es
|
||||
DOMAIN-SUFFIX,ixquick.com
|
||||
DOMAIN-SUFFIX,j.mp
|
||||
DOMAIN-SUFFIX,javbus.com
|
||||
DOMAIN-SUFFIX,js.revsci.net
|
||||
DOMAIN-SUFFIX,jshint.com
|
||||
DOMAIN-SUFFIX,jtvnw.net
|
||||
DOMAIN-SUFFIX,justgetflux.com
|
||||
DOMAIN-SUFFIX,kakao.co.kr
|
||||
DOMAIN-SUFFIX,kakao.com
|
||||
DOMAIN-SUFFIX,kakaocdn.net
|
||||
DOMAIN-SUFFIX,kat.cr
|
||||
DOMAIN-SUFFIX,kenengba.com
|
||||
DOMAIN-SUFFIX,kik.com
|
||||
DOMAIN-SUFFIX,klip.me
|
||||
DOMAIN-SUFFIX,leancloud.com
|
||||
DOMAIN-SUFFIX,leetcode.com
|
||||
DOMAIN-SUFFIX,lhie1.com
|
||||
DOMAIN-SUFFIX,libsyn.com
|
||||
DOMAIN-SUFFIX,licdn.com
|
||||
DOMAIN-SUFFIX,lightboxcdn.com
|
||||
DOMAIN-SUFFIX,like.com
|
||||
DOMAIN-SUFFIX,linkedin.com
|
||||
DOMAIN-SUFFIX,linode.com
|
||||
DOMAIN-SUFFIX,lithium.com
|
||||
DOMAIN-SUFFIX,littlehj.com
|
||||
DOMAIN-SUFFIX,livefilestore.com
|
||||
DOMAIN-SUFFIX,llnwd.net
|
||||
DOMAIN-SUFFIX,localnetwork.uop
|
||||
DOMAIN-SUFFIX,logmein.com
|
||||
DOMAIN-SUFFIX,macid.co
|
||||
DOMAIN-SUFFIX,macromedia.com
|
||||
DOMAIN-SUFFIX,macrumors.com
|
||||
DOMAIN-SUFFIX,manhuaren.com
|
||||
DOMAIN-SUFFIX,marketwatch.com
|
||||
DOMAIN-SUFFIX,mashable.com
|
||||
DOMAIN-SUFFIX,mathjax.org
|
||||
DOMAIN-SUFFIX,maven.org
|
||||
DOMAIN-SUFFIX,medium.com
|
||||
DOMAIN-SUFFIX,mega.co.nz
|
||||
DOMAIN-SUFFIX,mega.nz
|
||||
DOMAIN-SUFFIX,megaupload.com
|
||||
DOMAIN-SUFFIX,microsofttranslator.com
|
||||
DOMAIN-SUFFIX,mindnode.com
|
||||
DOMAIN-SUFFIX,mlssoccer.com
|
||||
DOMAIN-SUFFIX,mobile01.com
|
||||
DOMAIN-SUFFIX,modmyi.com
|
||||
DOMAIN-SUFFIX,moves-export.com
|
||||
DOMAIN-SUFFIX,mp3buscador.com
|
||||
DOMAIN-SUFFIX,msedge.net
|
||||
DOMAIN-SUFFIX,mycnnews.com
|
||||
DOMAIN-SUFFIX,myfontastic.com
|
||||
DOMAIN-SUFFIX,name.com
|
||||
DOMAIN-SUFFIX,nasa.gov
|
||||
DOMAIN-SUFFIX,ndr.de
|
||||
DOMAIN-SUFFIX,netdna-cdn.com
|
||||
DOMAIN-SUFFIX,newipnow.com
|
||||
DOMAIN-SUFFIX,nextmedia.com
|
||||
DOMAIN-SUFFIX,nih.gov
|
||||
DOMAIN-SUFFIX,nintendo.com
|
||||
DOMAIN-SUFFIX,nintendo.net
|
||||
DOMAIN-SUFFIX,notion.so
|
||||
DOMAIN-SUFFIX,novafile.com
|
||||
DOMAIN-SUFFIX,nrk.no
|
||||
DOMAIN-SUFFIX,nsstatic.net
|
||||
DOMAIN-SUFFIX,nssurge.com
|
||||
DOMAIN-SUFFIX,nyt.com
|
||||
DOMAIN-SUFFIX,nytimes.com
|
||||
DOMAIN-SUFFIX,nytimg.com
|
||||
DOMAIN-SUFFIX,nytstyle.com
|
||||
DOMAIN-SUFFIX,office365.com
|
||||
DOMAIN-SUFFIX,omnigroup.com
|
||||
DOMAIN-SUFFIX,onedrive.com
|
||||
DOMAIN-SUFFIX,onenote.com
|
||||
DOMAIN-SUFFIX,ooyala.com
|
||||
DOMAIN-SUFFIX,openvpn.net
|
||||
DOMAIN-SUFFIX,openwrt.org
|
||||
DOMAIN-SUFFIX,optimizely.com
|
||||
DOMAIN-SUFFIX,orkut.com
|
||||
DOMAIN-SUFFIX,osha.gov
|
||||
DOMAIN-SUFFIX,osxdaily.com
|
||||
DOMAIN-SUFFIX,overcast.fm
|
||||
DOMAIN-SUFFIX,ow.ly
|
||||
DOMAIN-SUFFIX,paddle.com
|
||||
DOMAIN-SUFFIX,paddleapi.com
|
||||
DOMAIN-SUFFIX,panoramio.com
|
||||
DOMAIN-SUFFIX,parallels.com
|
||||
DOMAIN-SUFFIX,parse.com
|
||||
DOMAIN-SUFFIX,pdfexpert.com
|
||||
DOMAIN-SUFFIX,periscope.tv
|
||||
DOMAIN-SUFFIX,piaotian.net
|
||||
DOMAIN-SUFFIX,picacomic.com
|
||||
DOMAIN-SUFFIX,picasaweb.com
|
||||
DOMAIN-SUFFIX,pinboard.in
|
||||
DOMAIN-SUFFIX,ping.pe
|
||||
DOMAIN-SUFFIX,pinterest.com
|
||||
DOMAIN-SUFFIX,pixelmator.com
|
||||
DOMAIN-SUFFIX,pixiv.net
|
||||
DOMAIN-SUFFIX,pixnet.net
|
||||
DOMAIN-SUFFIX,playpcesor.com
|
||||
DOMAIN-SUFFIX,pokemon.com
|
||||
DOMAIN-SUFFIX,polymer-project.org
|
||||
DOMAIN-SUFFIX,popo.tw
|
||||
DOMAIN-SUFFIX,potato.im
|
||||
DOMAIN-SUFFIX,redd.it
|
||||
DOMAIN-SUFFIX,prfct.co
|
||||
DOMAIN-SUFFIX,proxfree.com
|
||||
DOMAIN-SUFFIX,psiphon3.com
|
||||
DOMAIN-SUFFIX,ptt.cc
|
||||
DOMAIN-SUFFIX,pubu.com.tw
|
||||
DOMAIN-SUFFIX,puffinbrowser.com
|
||||
DOMAIN-SUFFIX,pushbullet.com
|
||||
DOMAIN-SUFFIX,pushwoosh.com
|
||||
DOMAIN-SUFFIX,pximg.net
|
||||
DOMAIN-SUFFIX,quora.com
|
||||
DOMAIN-SUFFIX,quoracdn.net
|
||||
DOMAIN-SUFFIX,readingtimes.com.tw
|
||||
DOMAIN-SUFFIX,readmoo.com
|
||||
DOMAIN-SUFFIX,recaptcha.net
|
||||
DOMAIN-SUFFIX,reddit.com
|
||||
DOMAIN-SUFFIX,redditmedia.com
|
||||
DOMAIN-SUFFIX,reuters.com
|
||||
DOMAIN-SUFFIX,rfi.fr
|
||||
DOMAIN-SUFFIX,rileyguide.com
|
||||
DOMAIN-SUFFIX,rime.im
|
||||
DOMAIN-SUFFIX,rsf.org
|
||||
DOMAIN-SUFFIX,sciencedaily.com
|
||||
DOMAIN-SUFFIX,sciencemag.org
|
||||
DOMAIN-SUFFIX,scribd.com
|
||||
DOMAIN-SUFFIX,search.com
|
||||
DOMAIN-SUFFIX,servebom.com
|
||||
DOMAIN-SUFFIX,sfx.ms
|
||||
DOMAIN-SUFFIX,shadowsocks.org
|
||||
DOMAIN-SUFFIX,shadowverse.jp
|
||||
DOMAIN-SUFFIX,sharethis.com
|
||||
DOMAIN-SUFFIX,shazam.com
|
||||
DOMAIN-SUFFIX,shutterstock.com
|
||||
DOMAIN-SUFFIX,sidelinesnews.com
|
||||
DOMAIN-SUFFIX,simp.ly
|
||||
DOMAIN-SUFFIX,simplenote.com
|
||||
DOMAIN-SUFFIX,sketchappsources.com
|
||||
DOMAIN-SUFFIX,skype.com
|
||||
DOMAIN-SUFFIX,slack.com
|
||||
DOMAIN-SUFFIX,slack-edge.com
|
||||
DOMAIN-SUFFIX,slack-msgs.com
|
||||
DOMAIN-SUFFIX,slideshare.net
|
||||
DOMAIN-SUFFIX,smartdnsproxy.com
|
||||
DOMAIN-SUFFIX,smh.com.au
|
||||
DOMAIN-SUFFIX,snapchat.com
|
||||
DOMAIN-SUFFIX,sndcdn.com
|
||||
DOMAIN-SUFFIX,sockslist.net
|
||||
DOMAIN-SUFFIX,soundcloud.com
|
||||
DOMAIN-SUFFIX,sourceforge.net
|
||||
DOMAIN-SUFFIX,sowers.org.hk
|
||||
DOMAIN-SUFFIX,speedsmart.net
|
||||
DOMAIN-SUFFIX,spike.com
|
||||
DOMAIN-SUFFIX,squarespace.com
|
||||
DOMAIN-SUFFIX,ssa.gov
|
||||
DOMAIN-SUFFIX,sstatic.net
|
||||
DOMAIN-SUFFIX,st.luluku.pw
|
||||
DOMAIN-SUFFIX,stackoverflow.com
|
||||
DOMAIN-SUFFIX,starp2p.com
|
||||
DOMAIN-SUFFIX,startpage.com
|
||||
DOMAIN-SUFFIX,state.gov
|
||||
DOMAIN-SUFFIX,staticflickr.com
|
||||
DOMAIN-SUFFIX,storify.com
|
||||
DOMAIN-SUFFIX,stumbleupon.com
|
||||
DOMAIN-SUFFIX,sugarsync.com
|
||||
DOMAIN-SUFFIX,supermariorun.com
|
||||
DOMAIN-SUFFIX,surfeasy.com.au
|
||||
DOMAIN-SUFFIX,surge.run
|
||||
DOMAIN-SUFFIX,surrenderat20.net
|
||||
DOMAIN-SUFFIX,sydneytoday.com
|
||||
DOMAIN-SUFFIX,symauth.com
|
||||
DOMAIN-SUFFIX,symcb.com
|
||||
DOMAIN-SUFFIX,symcd.com
|
||||
DOMAIN-SUFFIX,t.me
|
||||
DOMAIN-SUFFIX,t66y.com
|
||||
DOMAIN-SUFFIX,tablesgenerator.com
|
||||
DOMAIN-SUFFIX,tabtter.jp
|
||||
DOMAIN-SUFFIX,talk853.com
|
||||
DOMAIN-SUFFIX,talkboxapp.com
|
||||
DOMAIN-SUFFIX,talkonly.net
|
||||
DOMAIN-SUFFIX,tapbots.com
|
||||
DOMAIN-SUFFIX,tapbots.net
|
||||
DOMAIN-SUFFIX,tdesktop.com
|
||||
DOMAIN-SUFFIX,techcrunch.com
|
||||
DOMAIN-SUFFIX,technorati.com
|
||||
DOMAIN-SUFFIX,techsmith.com
|
||||
DOMAIN-SUFFIX,teddysun.com
|
||||
DOMAIN-SUFFIX,telegra.ph
|
||||
DOMAIN-SUFFIX,textnow.me
|
||||
DOMAIN-SUFFIX,thebobs.com
|
||||
DOMAIN-SUFFIX,theinitium.com
|
||||
DOMAIN-SUFFIX,thepiratebay.org
|
||||
DOMAIN-SUFFIX,theverge.com
|
||||
DOMAIN-SUFFIX,thewgo.org
|
||||
DOMAIN-SUFFIX,tiltbrush.com
|
||||
DOMAIN-SUFFIX,time.com
|
||||
DOMAIN-SUFFIX,timeinc.net
|
||||
DOMAIN-SUFFIX,tinder.com
|
||||
DOMAIN-SUFFIX,tiny.cc
|
||||
DOMAIN-SUFFIX,tinychat.com
|
||||
DOMAIN-SUFFIX,tinypic.com
|
||||
DOMAIN-SUFFIX,tmblr.co
|
||||
DOMAIN-SUFFIX,todoist.com
|
||||
DOMAIN-SUFFIX,togetter.com
|
||||
DOMAIN-SUFFIX,tokyocn.com
|
||||
DOMAIN-SUFFIX,tomshardware.com
|
||||
DOMAIN-SUFFIX,torcn.com
|
||||
DOMAIN-SUFFIX,torrentprivacy.com
|
||||
DOMAIN-SUFFIX,torrentproject.se
|
||||
DOMAIN-SUFFIX,torrentz.eu
|
||||
DOMAIN-SUFFIX,traffichaus.com
|
||||
DOMAIN-SUFFIX,trakt.tv
|
||||
DOMAIN-SUFFIX,transparency.org
|
||||
DOMAIN-SUFFIX,trello.com
|
||||
DOMAIN-SUFFIX,trendsmap.com
|
||||
DOMAIN-SUFFIX,trulyergonomic.com
|
||||
DOMAIN-SUFFIX,trustasiassl.com
|
||||
DOMAIN-SUFFIX,tt-rss.org
|
||||
DOMAIN-SUFFIX,ttvnw.net
|
||||
DOMAIN-SUFFIX,tumblr.co
|
||||
DOMAIN-SUFFIX,tumblr.com
|
||||
DOMAIN-SUFFIX,turbobit.net
|
||||
DOMAIN-SUFFIX,tv.com
|
||||
DOMAIN-SUFFIX,tweetdeck.com
|
||||
DOMAIN-SUFFIX,tweetmarker.net
|
||||
DOMAIN-SUFFIX,twimg.co
|
||||
DOMAIN-SUFFIX,twitch.tv
|
||||
DOMAIN-SUFFIX,twitthat.com
|
||||
DOMAIN-SUFFIX,twtkr.com
|
||||
DOMAIN-SUFFIX,twttr.com
|
||||
DOMAIN-SUFFIX,txmblr.com
|
||||
DOMAIN-SUFFIX,typcn.com
|
||||
DOMAIN-SUFFIX,typekit.net
|
||||
DOMAIN-SUFFIX,typography.com
|
||||
DOMAIN-SUFFIX,ubertags.com
|
||||
DOMAIN-SUFFIX,ublock.org
|
||||
DOMAIN-SUFFIX,ubnt.com
|
||||
DOMAIN-SUFFIX,uchicago.edu
|
||||
DOMAIN-SUFFIX,udn.com
|
||||
DOMAIN-SUFFIX,ugo.com
|
||||
DOMAIN-SUFFIX,uhdwallpapers.org
|
||||
DOMAIN-SUFFIX,ulyssesapp.com
|
||||
DOMAIN-SUFFIX,unblockdmm.com
|
||||
DOMAIN-SUFFIX,unblocksites.co
|
||||
DOMAIN-SUFFIX,unpo.org
|
||||
DOMAIN-SUFFIX,unsplash.com
|
||||
DOMAIN-SUFFIX,untraceable.us
|
||||
DOMAIN-SUFFIX,uploaded.net
|
||||
DOMAIN-SUFFIX,uProxy.org
|
||||
DOMAIN-SUFFIX,upwork.com
|
||||
DOMAIN-SUFFIX,urchin.com
|
||||
DOMAIN-SUFFIX,urlparser.com
|
||||
DOMAIN-SUFFIX,us.to
|
||||
DOMAIN-SUFFIX,usertrust.com
|
||||
DOMAIN-SUFFIX,usgs.gov
|
||||
DOMAIN-SUFFIX,usma.edu
|
||||
DOMAIN-SUFFIX,uspto.gov
|
||||
DOMAIN-SUFFIX,ustream.tv
|
||||
DOMAIN-SUFFIX,v.gd
|
||||
DOMAIN-SUFFIX,v2ex.co
|
||||
DOMAIN-SUFFIX,v2ray.com
|
||||
DOMAIN-SUFFIX,van001.com
|
||||
DOMAIN-SUFFIX,vanpeople.com
|
||||
DOMAIN-SUFFIX,vansky.com
|
||||
DOMAIN-SUFFIX,vbstatic.co
|
||||
DOMAIN-SUFFIX,venchina.com
|
||||
DOMAIN-SUFFIX,venturebeat.com
|
||||
DOMAIN-SUFFIX,veoh.com
|
||||
DOMAIN-SUFFIX,verizonwireless.com
|
||||
DOMAIN-SUFFIX,viber.com
|
||||
DOMAIN-SUFFIX,vid.me
|
||||
DOMAIN-SUFFIX,videomega.tv
|
||||
DOMAIN-SUFFIX,vidinfo.org
|
||||
DOMAIN-SUFFIX,vimeo.com
|
||||
DOMAIN-SUFFIX,vimeocdn.com
|
||||
DOMAIN-SUFFIX,vimperator.org
|
||||
DOMAIN-SUFFIX,vine.co
|
||||
DOMAIN-SUFFIX,visibletweets.com
|
||||
DOMAIN-SUFFIX,viu.com
|
||||
DOMAIN-SUFFIX,vivaldi.com
|
||||
DOMAIN-SUFFIX,voachinese.com
|
||||
DOMAIN-SUFFIX,vocativ.com
|
||||
DOMAIN-SUFFIX,vox-cdn.com
|
||||
DOMAIN-SUFFIX,vpnaccount.org
|
||||
DOMAIN-SUFFIX,vpnbook.com
|
||||
DOMAIN-SUFFIX,vpngate.net
|
||||
DOMAIN-SUFFIX,vsco.co
|
||||
DOMAIN-SUFFIX,vultr.com
|
||||
DOMAIN-SUFFIX,vzw.com
|
||||
DOMAIN-SUFFIX,w.org
|
||||
DOMAIN-SUFFIX,w3schools.com
|
||||
DOMAIN-SUFFIX,wattpad.com
|
||||
DOMAIN-SUFFIX,web2project.net
|
||||
DOMAIN-SUFFIX,webfreer.com
|
||||
DOMAIN-SUFFIX,weblagu.com
|
||||
DOMAIN-SUFFIX,websnapr.com
|
||||
DOMAIN-SUFFIX,webtype.com
|
||||
DOMAIN-SUFFIX,webwarper.net
|
||||
DOMAIN-SUFFIX,wenxuecity.com
|
||||
DOMAIN-SUFFIX,westca.com
|
||||
DOMAIN-SUFFIX,westpoint.edu
|
||||
DOMAIN-SUFFIX,whatbrowser.org
|
||||
DOMAIN-SUFFIX,wikileaks.info
|
||||
DOMAIN-SUFFIX,wikileaks.org
|
||||
DOMAIN-SUFFIX,wikileaks-forum.com
|
||||
DOMAIN-SUFFIX,wikimedia.org
|
||||
DOMAIN-SUFFIX,wikipedia.com
|
||||
DOMAIN-SUFFIX,wikipedia.org
|
||||
DOMAIN-SUFFIX,windows.com
|
||||
DOMAIN-SUFFIX,windows.net
|
||||
DOMAIN-SUFFIX,wn.com
|
||||
DOMAIN-SUFFIX,wordpress.com
|
||||
DOMAIN-SUFFIX,workflow.is
|
||||
DOMAIN-SUFFIX,worldcat.org
|
||||
DOMAIN-SUFFIX,wow.com
|
||||
DOMAIN-SUFFIX,wp.com
|
||||
DOMAIN-SUFFIX,wsj.com
|
||||
DOMAIN-SUFFIX,wsj.net
|
||||
DOMAIN-SUFFIX,wwitv.com
|
||||
DOMAIN-SUFFIX,xanga.com
|
||||
DOMAIN-SUFFIX,xclient.info
|
||||
DOMAIN-SUFFIX,xda-developers.com
|
||||
DOMAIN-SUFFIX,xeeno.com
|
||||
DOMAIN-SUFFIX,xiti.com
|
||||
DOMAIN-SUFFIX,xuite.net
|
||||
DOMAIN-SUFFIX,xvideos.com
|
||||
DOMAIN-SUFFIX,yahoo.com
|
||||
DOMAIN-SUFFIX,yahooapis.com
|
||||
DOMAIN-SUFFIX,yasni.co.uk
|
||||
DOMAIN-SUFFIX,yastatic.net
|
||||
DOMAIN-SUFFIX,yeeyi.com
|
||||
DOMAIN-SUFFIX,yesasia.com
|
||||
DOMAIN-SUFFIX,yes-news.com
|
||||
DOMAIN-SUFFIX,yidio.com
|
||||
DOMAIN-SUFFIX,yimg.com
|
||||
DOMAIN-SUFFIX,ying.com
|
||||
DOMAIN-SUFFIX,yorkbbs.ca
|
||||
DOMAIN-SUFFIX,youmaker.com
|
||||
DOMAIN-SUFFIX,yourlisten.com
|
||||
DOMAIN-SUFFIX,youtu.be
|
||||
DOMAIN-SUFFIX,yoyo.org
|
||||
DOMAIN-SUFFIX,ytimg.com
|
||||
DOMAIN-SUFFIX,zacebook.com
|
||||
DOMAIN-SUFFIX,zalmos.com
|
||||
DOMAIN-SUFFIX,zaobao.com.sg
|
||||
DOMAIN-SUFFIX,zeutch.com
|
||||
DOMAIN-SUFFIX,zynamics.com
|
||||
|
||||
# > Force some domains which are fucked by GFW while resolving DNS,or do not respect the system Proxy
|
||||
DOMAIN-KEYWORD,appledaily
|
||||
DOMAIN-KEYWORD,beetalk
|
||||
DOMAIN-KEYWORD,blogspot
|
||||
DOMAIN-KEYWORD,dropbox
|
||||
DOMAIN-KEYWORD,facebook
|
||||
DOMAIN-KEYWORD,github
|
||||
DOMAIN-KEYWORD,instagram
|
||||
DOMAIN-KEYWORD,porn
|
||||
DOMAIN-KEYWORD,telegram
|
||||
DOMAIN-KEYWORD,twitter
|
||||
DOMAIN-KEYWORD,whatsapp
|
||||
DOMAIN-KEYWORD,google
|
||||
DOMAIN-SUFFIX,1e100.net
|
||||
DOMAIN-SUFFIX,2mdn.net
|
||||
DOMAIN-SUFFIX,abc.xyz
|
||||
DOMAIN-SUFFIX,akamai.net
|
||||
DOMAIN-SUFFIX,appspot.com
|
||||
DOMAIN-SUFFIX,autodraw.com
|
||||
DOMAIN-SUFFIX,bandwagonhost.com
|
||||
DOMAIN-SUFFIX,blogblog.com
|
||||
DOMAIN-SUFFIX,chromeexperiments.com
|
||||
DOMAIN-SUFFIX,creativelab5.com
|
||||
DOMAIN-SUFFIX,crittercism.com
|
||||
DOMAIN-SUFFIX,culturalspot.org
|
||||
DOMAIN-SUFFIX,dartlang.org
|
||||
DOMAIN-SUFFIX,fb.com
|
||||
DOMAIN-SUFFIX,fb.me
|
||||
DOMAIN-SUFFIX,fbcdn.net
|
||||
DOMAIN-SUFFIX,fbsbx.com
|
||||
DOMAIN-SUFFIX,gcr.io
|
||||
DOMAIN-SUFFIX,gmail.com
|
||||
DOMAIN-SUFFIX,gosetsuden.jp
|
||||
DOMAIN-SUFFIX,gvt1.com
|
||||
DOMAIN-SUFFIX,gwtproject.org
|
||||
DOMAIN-SUFFIX,heroku.com
|
||||
DOMAIN-SUFFIX,html5rocks.com
|
||||
DOMAIN-SUFFIX,keyhole.com
|
||||
DOMAIN-SUFFIX,kobo.com
|
||||
DOMAIN-SUFFIX,kobobooks.com
|
||||
DOMAIN-SUFFIX,madewithcode.com
|
||||
DOMAIN-SUFFIX,material.io
|
||||
DOMAIN-SUFFIX,messenger.com
|
||||
DOMAIN-SUFFIX,netmarble.com
|
||||
DOMAIN-SUFFIX,nianticlabs.com
|
||||
DOMAIN-SUFFIX,pinimg.com
|
||||
DOMAIN-SUFFIX,pubnub.com
|
||||
DOMAIN-SUFFIX,scdn.co
|
||||
DOMAIN-SUFFIX,t.co
|
||||
DOMAIN-SUFFIX,tensorflow.org
|
||||
DOMAIN-SUFFIX,toggleable.com
|
||||
DOMAIN-SUFFIX,torproject.org
|
||||
DOMAIN-SUFFIX,twimg.com
|
||||
DOMAIN-SUFFIX,twitpic.com
|
||||
DOMAIN-SUFFIX,unfiltered.news
|
||||
DOMAIN-SUFFIX,waveprotocol.org
|
||||
DOMAIN-SUFFIX,webmproject.org
|
||||
DOMAIN-SUFFIX,webrtc.org
|
||||
|
||||
# > V2EX
|
||||
DOMAIN-SUFFIX,v2ex.com
|
||||
|
||||
DOMAIN-KEYWORD,dlercloud
|
||||
DOMAIN-SUFFIX,dler.cloud
|
||||
|
||||
# > Amazon
|
||||
IP-CIDR,13.32.0.0/16,no-resolve
|
||||
IP-CIDR,13.33.0.0/16,no-resolve
|
||||
IP-CIDR,13.35.0.0/17,no-resolve
|
||||
IP-CIDR,18.184.0.0/15,no-resolve
|
||||
IP-CIDR,18.194.0.0/15,no-resolve
|
||||
IP-CIDR,18.208.0.0/13,no-resolve
|
||||
IP-CIDR,18.232.0.0/14,no-resolve
|
||||
IP-CIDR,52.200.0.0/13,no-resolve
|
||||
IP-CIDR,52.58.0.0/15,no-resolve
|
||||
IP-CIDR,52.74.0.0/16,no-resolve
|
||||
IP-CIDR,52.77.0.0/16,no-resolve
|
||||
IP-CIDR,52.84.0.0/15,no-resolve
|
||||
IP-CIDR,54.156.0.0/14,no-resolve
|
||||
IP-CIDR,54.226.0.0/15,no-resolve
|
||||
IP-CIDR,54.230.156.0/22,no-resolve
|
||||
IP-CIDR,54.93.0.0/16,no-resolve
|
||||
|
||||
# > Facebook
|
||||
IP-CIDR,103.4.96.0/22,no-resolve
|
||||
IP-CIDR,129.134.0.0/17,no-resolve
|
||||
IP-CIDR,157.240.0.0/17,no-resolve
|
||||
IP-CIDR,173.252.64.0/19,no-resolve
|
||||
IP-CIDR,173.252.96.0/19,no-resolve
|
||||
IP-CIDR,179.60.192.0/22,no-resolve
|
||||
IP-CIDR,185.60.216.0/22,no-resolve
|
||||
IP-CIDR,204.15.20.0/22,no-resolve
|
||||
IP-CIDR,31.13.24.0/21,no-resolve
|
||||
IP-CIDR,31.13.64.0/18,no-resolve
|
||||
IP-CIDR,45.64.40.0/22,no-resolve
|
||||
IP-CIDR,66.220.144.0/20,no-resolve
|
||||
IP-CIDR,69.171.224.0/19,no-resolve
|
||||
IP-CIDR,69.63.176.0/20,no-resolve
|
||||
IP-CIDR,74.119.76.0/22,no-resolve
|
||||
|
||||
# > Google
|
||||
IP-CIDR,173.194.0.0/16,no-resolve
|
||||
IP-CIDR,74.125.0.0/16,no-resolve
|
||||
|
||||
# > Kakao Talk
|
||||
IP-CIDR,1.201.0.0/24,no-resolve
|
||||
IP-CIDR,103.246.56.0/22,no-resolve
|
||||
IP-CIDR,103.27.148.0/22,no-resolve
|
||||
IP-CIDR,110.76.140.0/22,no-resolve
|
||||
IP-CIDR,113.61.104.0/22,no-resolve
|
||||
IP-CIDR,27.0.236.0/22,no-resolve
|
||||
|
||||
# > LINE
|
||||
IP-CIDR,103.2.28.0/22,no-resolve
|
||||
IP-CIDR,119.235.224.0/21,no-resolve
|
||||
IP-CIDR,119.235.232.0/23,no-resolve
|
||||
IP-CIDR,119.235.235.0/24,no-resolve
|
||||
IP-CIDR,119.235.236.0/23,no-resolve
|
||||
IP-CIDR,125.6.146.0/24,no-resolve
|
||||
IP-CIDR,125.6.149.0/24,no-resolve
|
||||
IP-CIDR,125.6.190.0/24,no-resolve
|
||||
IP-CIDR,125.209.208.0/20,no-resolve
|
||||
IP-CIDR,203.104.103.0/24,no-resolve
|
||||
IP-CIDR,203.104.128.0/20,no-resolve
|
||||
IP-CIDR,203.174.66.64/26,no-resolve
|
||||
IP-CIDR,203.174.77.0/24,no-resolve
|
||||
|
||||
# > Potato Chat
|
||||
IP-CIDR,13.251.24.157/24,no-resolve
|
||||
IP-CIDR,13.251.41.203/24,no-resolve
|
||||
IP-CIDR,17.252.156.147/24,no-resolve
|
||||
IP-CIDR,17.252.157.26/24,no-resolve
|
||||
|
||||
# > SoftLayer
|
||||
IP-CIDR,74.86.0.0/16,no-resolve
|
||||
IP-CIDR,75.126.0.0/16,no-resolve
|
||||
IP-CIDR,174.37.0.0/16,no-resolve
|
||||
IP-CIDR,208.43.0.0/16,no-resolve
|
||||
|
||||
# > Telegram
|
||||
IP-CIDR,91.108.4.0/22,no-resolve
|
||||
IP-CIDR,91.108.8.0/22,no-resolve
|
||||
IP-CIDR,91.108.56.0/22,no-resolve
|
||||
IP-CIDR,149.154.160.0/20,no-resolve
|
||||
IP-CIDR,149.154.164.0/22,no-resolve
|
||||
8488
rules/lhie1/Surge3/Reject.list
Normal file
8488
rules/lhie1/Surge3/Reject.list
Normal file
File diff suppressed because it is too large
Load Diff
6
rules/lhie1/Surge3/Speedtest.list
Normal file
6
rules/lhie1/Surge3/Speedtest.list
Normal file
@@ -0,0 +1,6 @@
|
||||
# > Fast
|
||||
DOMAIN-SUFFIX,fast.com
|
||||
|
||||
# > Speedtest
|
||||
DOMAIN-KEYWORD,speedtest
|
||||
DOMAIN-SUFFIX,ooklaserver.net
|
||||
@@ -29,7 +29,8 @@ std::string wsset_vmess = "{\"connectionReuse\":true,\"path\":\"?path?\",\"heade
|
||||
std::string tcpset_vmess = "{\"connectionReuse\":true,\"header\":{\"type\":\"?type?\",\"request\":{\"version\":\"1.1\",\"method\":\"GET\",\"path\":[\"?path?\"],\"headers\":{\"Host\":[\"?host?\"],\"User-Agent\":[\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.75 Safari/537.36\",\"Mozilla/5.0 (iPhone; CPU iPhone OS 10_0_2 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/53.0.2785.109 Mobile/14A456 Safari/601.1.46\"],\"Accept-Encoding\":[\"gzip, deflate\"],\"Connection\":[\"keep-alive\"],\"Pragma\":\"no-cache\"}}}}";
|
||||
std::string tlsset_vmess = "{\"serverName\":\"?serverName?\",\"allowInsecure\":false,\"allowInsecureCiphers\":false}";
|
||||
|
||||
std::vector<std::string> ss_ciphers = {"rc4-md5","aes-128-gcm","aes-192-gcm","aes-256-gcm","aes-128-cfb","aes-192-cfb","aes-256-cfb","aes-128-ctr","aes-192-ctr","aes-256-ctr","camellia-128-cfb","camellia-192-cfb","camellia-256-cfb","bf-cfb","chacha20-ietf-poly1305","xchacha20-ietf-poly1305","salsa20","chacha20","chacha20-ietf"};
|
||||
string_array ss_ciphers = {"rc4-md5", "aes-128-gcm", "aes-192-gcm", "aes-256-gcm", "aes-128-cfb", "aes-192-cfb", "aes-256-cfb", "aes-128-ctr", "aes-192-ctr", "aes-256-ctr", "camellia-128-cfb", "camellia-192-cfb", "camellia-256-cfb", "bf-cfb", "chacha20-ietf-poly1305", "xchacha20-ietf-poly1305", "salsa20", "chacha20", "chacha20-ietf"};
|
||||
string_array ssr_ciphers = {"none", "table", "rc4", "rc4-md5", "aes-128-cfb", "aes-192-cfb", "aes-256-cfb", "aes-128-ctr", "aes-192-ctr", "aes-256-ctr", "bf-cfb", "camellia-128-cfb", "camellia-192-cfb", "camellia-256-cfb", "cast5-cfb", "des-cfb", "idea-cfb", "rc2-cfb", "seed-cfb", "salsa20", "chacha20", "chacha20-ietf"};
|
||||
|
||||
std::map<std::string, std::string> parsedMD5;
|
||||
std::string modSSMD5 = "f7653207090ce3389115e9c88541afe0";
|
||||
@@ -555,8 +556,8 @@ void explodeSSR(std::string ssr, bool ss_libev, bool ssr_libev, std::string cust
|
||||
group = urlsafe_base64_decode(getUrlArg(strobfs, "group"));
|
||||
remarks = urlsafe_base64_decode(getUrlArg(strobfs, "remarks"));
|
||||
remarks_base64 = urlsafe_base64_reverse(getUrlArg(strobfs, "remarks"));
|
||||
obfsparam = urlsafe_base64_decode(getUrlArg(strobfs, "obfsparam"));
|
||||
protoparam = urlsafe_base64_decode(getUrlArg(strobfs, "protoparam"));
|
||||
obfsparam = regReplace(urlsafe_base64_decode(getUrlArg(strobfs, "obfsparam")), "\\s", "");
|
||||
protoparam = regReplace(urlsafe_base64_decode(getUrlArg(strobfs, "protoparam")), "\\s", "");
|
||||
}
|
||||
|
||||
ssr = regReplace(ssr, "(.*):(.*?):(.*?):(.*?):(.*?):(.*)", "$1,$2,$3,$4,$5,$6");
|
||||
|
||||
211
subexport.cpp
211
subexport.cpp
@@ -15,6 +15,7 @@ extern bool overwrite_original_rules;
|
||||
extern string_array renames, emojis;
|
||||
extern bool add_emoji, remove_old_emoji;
|
||||
extern bool api_mode;
|
||||
extern string_array ss_ciphers, ssr_ciphers;
|
||||
|
||||
std::string vmessConstruct(std::string add, std::string port, std::string type, std::string id, std::string aid, std::string net, std::string cipher, std::string path, std::string host, std::string tls, int local_port)
|
||||
{
|
||||
@@ -271,7 +272,7 @@ void rulesetToClash(YAML::Node &base_rule, std::vector<ruleset_content> &ruleset
|
||||
base_rule["Rule"] = Rules;
|
||||
}
|
||||
|
||||
void rulesetToSurge(INIReader &base_rule, string_array &ruleset_array, int surge_ver)
|
||||
void rulesetToSurge(INIReader &base_rule, std::vector<ruleset_content> &ruleset_content_array, int surge_ver)
|
||||
{
|
||||
string_array allRules, vArray;
|
||||
std::string rule_group, rule_path, retrived_rules, strLine;
|
||||
@@ -282,13 +283,10 @@ void rulesetToSurge(INIReader &base_rule, string_array &ruleset_array, int surge
|
||||
if(overwrite_original_rules)
|
||||
base_rule.EraseSection();
|
||||
|
||||
for(std::string &x : ruleset_array)
|
||||
for(ruleset_content &x : ruleset_content_array)
|
||||
{
|
||||
vArray = split(x, ",");
|
||||
if(vArray.size() != 2)
|
||||
continue;
|
||||
rule_group = trim(vArray[0]);
|
||||
rule_path = trim(vArray[1]);
|
||||
rule_group = x.rule_group;
|
||||
rule_path = x.rule_path;
|
||||
if(rule_path.find("[]") == 0)
|
||||
{
|
||||
strLine = rule_path.substr(2);
|
||||
@@ -303,25 +301,30 @@ void rulesetToSurge(INIReader &base_rule, string_array &ruleset_array, int surge
|
||||
{
|
||||
if(api_mode)
|
||||
continue;
|
||||
retrived_rules = fileGet(rule_path, false);
|
||||
char delimiter = count(retrived_rules.begin(), retrived_rules.end(), '\n') < 1 ? '\r' : '\n';
|
||||
|
||||
strStrm.clear();
|
||||
strStrm<<retrived_rules;
|
||||
while(getline(strStrm, strLine, delimiter))
|
||||
{
|
||||
strLine = replace_all_distinct(strLine, "\r", ""); //remove line break
|
||||
if(!strLine.size() || strLine.find("#") == 0 || strLine.find(";") == 0) //remove comments
|
||||
continue;
|
||||
if(surge_ver < 4 && strLine.find("IP-CIDR") == 0)
|
||||
strLine = replace_all_distinct(strLine, ",no-resolve", "");
|
||||
strLine += "," + rule_group;
|
||||
allRules.emplace_back(strLine);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
allRules.emplace_back("RULE-SET," + rule_path + "," + rule_group);
|
||||
if(surge_ver > 2)
|
||||
{
|
||||
allRules.emplace_back("RULE-SET," + rule_path + "," + rule_group);
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
retrived_rules = x.rule_content;
|
||||
char delimiter = count(retrived_rules.begin(), retrived_rules.end(), '\n') < 1 ? '\r' : '\n';
|
||||
|
||||
strStrm.clear();
|
||||
strStrm<<retrived_rules;
|
||||
while(getline(strStrm, strLine, delimiter))
|
||||
{
|
||||
strLine = replace_all_distinct(strLine, "\r", ""); //remove line break
|
||||
if(!strLine.size() || strLine.find("#") == 0 || strLine.find(";") == 0) //remove comments
|
||||
continue;
|
||||
if(surge_ver < 4 && strLine.find("IP-CIDR") == 0)
|
||||
strLine = replace_all_distinct(strLine, ",no-resolve", "");
|
||||
strLine += "," + rule_group;
|
||||
allRules.emplace_back(strLine);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -332,7 +335,7 @@ void rulesetToSurge(INIReader &base_rule, string_array &ruleset_array, int surge
|
||||
}
|
||||
}
|
||||
|
||||
std::string netchToClash(std::vector<nodeInfo> &nodes, std::string &baseConf, std::vector<ruleset_content> &ruleset_content_array, string_array &extra_proxy_group, bool clashR)
|
||||
std::string netchToClash(std::vector<nodeInfo> &nodes, std::string &base_conf, std::vector<ruleset_content> &ruleset_content_array, string_array &extra_proxy_group, bool clashR)
|
||||
{
|
||||
YAML::Node yamlnode, proxies, singleproxy, singlegroup, original_groups;
|
||||
rapidjson::Document json;
|
||||
@@ -347,7 +350,7 @@ std::string netchToClash(std::vector<nodeInfo> &nodes, std::string &baseConf, st
|
||||
|
||||
try
|
||||
{
|
||||
yamlnode = YAML::Load(baseConf);
|
||||
yamlnode = YAML::Load(base_conf);
|
||||
}
|
||||
catch (std::exception &e)
|
||||
{
|
||||
@@ -508,6 +511,7 @@ std::string netchToClash(std::vector<nodeInfo> &nodes, std::string &baseConf, st
|
||||
singlegroup["name"] = vArray[0];
|
||||
singlegroup["type"] = vArray[1];
|
||||
singlegroup["proxies"] = filtered_nodelist;
|
||||
//singlegroup.SetStyle(YAML::EmitterStyle::Flow);
|
||||
|
||||
for(unsigned int i = 0; i < original_groups.size(); i++)
|
||||
{
|
||||
@@ -529,7 +533,7 @@ std::string netchToClash(std::vector<nodeInfo> &nodes, std::string &baseConf, st
|
||||
return to_string(yamlnode);
|
||||
}
|
||||
|
||||
std::string netchToSurge(std::vector<nodeInfo> &nodes, std::string &base_conf, string_array &ruleset_array, string_array &extra_proxy_group, int surge_ver)
|
||||
std::string netchToSurge(std::vector<nodeInfo> &nodes, std::string &base_conf, std::vector<ruleset_content> &ruleset_content_array, string_array &extra_proxy_group, int surge_ver)
|
||||
{
|
||||
rapidjson::Document json;
|
||||
INIReader ini;
|
||||
@@ -688,7 +692,7 @@ std::string netchToSurge(std::vector<nodeInfo> &nodes, std::string &base_conf, s
|
||||
ini.Set("{NONAME}", vArray[0] + " = " + proxy); //insert order
|
||||
}
|
||||
|
||||
rulesetToSurge(ini, ruleset_array, surge_ver);
|
||||
rulesetToSurge(ini, ruleset_content_array, surge_ver);
|
||||
|
||||
return ini.ToString();
|
||||
}
|
||||
@@ -698,6 +702,7 @@ std::string netchToSS(std::vector<nodeInfo> &nodes)
|
||||
rapidjson::Document json;
|
||||
std::string remark, hostname, port, password, method;
|
||||
std::string plugin, pluginopts;
|
||||
std::string protocol, protoparam, obfs, obfsparam;
|
||||
std::string proxyStr, allLinks;
|
||||
for(nodeInfo &x : nodes)
|
||||
{
|
||||
@@ -709,17 +714,25 @@ std::string netchToSS(std::vector<nodeInfo> &nodes)
|
||||
method = GetMember(json, "EncryptMethod");
|
||||
plugin = GetMember(json, "Plugin");
|
||||
pluginopts = GetMember(json, "PluginOption");
|
||||
protocol = GetMember(json, "Protocol");
|
||||
protoparam = GetMember(json, "ProtocolParam");
|
||||
obfs = GetMember(json, "OBFS");
|
||||
obfsparam = GetMember(json, "OBFSParam");
|
||||
|
||||
switch(x.linkType)
|
||||
{
|
||||
case SPEEDTEST_MESSAGE_FOUNDSS:
|
||||
proxyStr = "ss://" + urlsafe_base64_encode(method + ":" + password + "@" + hostname + ":" + port);
|
||||
if(plugin.size() & pluginopts.size())
|
||||
if(plugin.size() && pluginopts.size())
|
||||
{
|
||||
proxyStr += "/?plugin=" + UrlEncode(plugin + ";" +pluginopts);
|
||||
}
|
||||
proxyStr += "#" + UrlEncode(remark);
|
||||
break;
|
||||
case SPEEDTEST_MESSAGE_FOUNDSSR:
|
||||
if(std::count(ss_ciphers.begin(), ss_ciphers.end(), method) > 0 && protocol == "origin" && obfs == "plain")
|
||||
proxyStr = "ss://" + urlsafe_base64_encode(method + ":" + password + "@" + hostname + ":" + port) + "#" + UrlEncode(remark);
|
||||
break;
|
||||
default:
|
||||
continue;
|
||||
}
|
||||
@@ -755,6 +768,11 @@ std::string netchToSSR(std::vector<nodeInfo> &nodes)
|
||||
+ "/?group=" + urlsafe_base64_encode(x.group) + "&remarks=" + urlsafe_base64_encode(remark) \
|
||||
+ "&obfsparam=" + urlsafe_base64_encode(obfsparam) + "&protoparam=" + urlsafe_base64_encode(protoparam));
|
||||
break;
|
||||
case SPEEDTEST_MESSAGE_FOUNDSS:
|
||||
if(std::count(ssr_ciphers.begin(), ssr_ciphers.end(), method) > 0 && !GetMember(json, "Plugin").size() && !GetMember(json, "Plugin").size())
|
||||
proxyStr = "ssr://" + urlsafe_base64_encode(hostname + ":" + port + ":origin:" + method + ":plain:" + urlsafe_base64_encode(password) \
|
||||
+ "/?group=" + urlsafe_base64_encode(x.group) + "&remarks=" + urlsafe_base64_encode(remark));
|
||||
break;
|
||||
default:
|
||||
continue;
|
||||
}
|
||||
@@ -934,6 +952,7 @@ std::string netchToSSD(std::vector<nodeInfo> &nodes, std::string &group)
|
||||
rapidjson::Writer<rapidjson::StringBuffer> writer(sb);
|
||||
std::string remark, hostname, password, method;
|
||||
std::string plugin, pluginopts;
|
||||
std::string protocol, protoparam, obfs, obfsparam;
|
||||
std::string proxyStr, allLinks;
|
||||
int port, index = 0;
|
||||
if(!group.size())
|
||||
@@ -953,17 +972,22 @@ std::string netchToSSD(std::vector<nodeInfo> &nodes, std::string &group)
|
||||
|
||||
for(nodeInfo &x : nodes)
|
||||
{
|
||||
json.Parse(x.proxyStr.data());
|
||||
remark = x.remarks = addEmoji(trim(removeEmoji(nodeRename(x.remarks))));
|
||||
hostname = GetMember(json, "Hostname");
|
||||
port = (unsigned short)stoi(GetMember(json, "Port"));
|
||||
password = GetMember(json, "Password");
|
||||
method = GetMember(json, "EncryptMethod");
|
||||
plugin = GetMember(json, "Plugin");
|
||||
pluginopts = GetMember(json, "PluginOption");
|
||||
protocol = GetMember(json, "Protocol");
|
||||
protoparam = GetMember(json, "ProtocolParam");
|
||||
obfs = GetMember(json, "OBFS");
|
||||
obfsparam = GetMember(json, "OBFSParam");
|
||||
|
||||
switch(x.linkType)
|
||||
{
|
||||
case SPEEDTEST_MESSAGE_FOUNDSS:
|
||||
json.Parse(x.proxyStr.data());
|
||||
remark = x.remarks = addEmoji(trim(removeEmoji(nodeRename(x.remarks))));
|
||||
hostname = GetMember(json, "Hostname");
|
||||
port = (unsigned short)stoi(GetMember(json, "Port"));
|
||||
password = GetMember(json, "Password");
|
||||
method = GetMember(json, "EncryptMethod");
|
||||
plugin = GetMember(json, "Plugin");
|
||||
pluginopts = GetMember(json, "PluginOption");
|
||||
writer.StartObject();
|
||||
writer.Key("server");
|
||||
writer.String(hostname.data());
|
||||
@@ -983,6 +1007,28 @@ std::string netchToSSD(std::vector<nodeInfo> &nodes, std::string &group)
|
||||
writer.Int(index);
|
||||
writer.EndObject();
|
||||
break;
|
||||
case SPEEDTEST_MESSAGE_FOUNDSSR:
|
||||
if(std::count(ss_ciphers.begin(), ss_ciphers.end(), method) > 0 && protocol == "origin" && obfs == "plain")
|
||||
{
|
||||
writer.StartObject();
|
||||
writer.Key("server");
|
||||
writer.String(hostname.data());
|
||||
writer.Key("port");
|
||||
writer.Int(port);
|
||||
writer.Key("encryption");
|
||||
writer.String(method.data());
|
||||
writer.Key("password");
|
||||
writer.String(password.data());
|
||||
writer.String(pluginopts.data());
|
||||
writer.Key("remarks");
|
||||
writer.String(remark.data());
|
||||
writer.Key("id");
|
||||
writer.Int(index);
|
||||
writer.EndObject();
|
||||
break;
|
||||
}
|
||||
else
|
||||
continue;
|
||||
default:
|
||||
continue;
|
||||
}
|
||||
@@ -1014,7 +1060,7 @@ std::string buildGistData(std::string name, std::string content)
|
||||
return sb.GetString();
|
||||
}
|
||||
|
||||
int uploadGist(std::string path, std::string content, bool writeManageURL)
|
||||
int uploadGist(std::string name, std::string path, std::string content, bool writeManageURL)
|
||||
{
|
||||
INIReader ini;
|
||||
rapidjson::Document json;
|
||||
@@ -1028,52 +1074,58 @@ int uploadGist(std::string path, std::string content, bool writeManageURL)
|
||||
}
|
||||
|
||||
ini.ParseFile("gistconf.ini");
|
||||
if(ini.EnterSection("common") == 0)
|
||||
{
|
||||
token = ini.Get("token");
|
||||
if(!token.size())
|
||||
{
|
||||
std::cerr<<"No token is provided. Skipping...\n";
|
||||
return -1;
|
||||
}
|
||||
id = ini.Get("id");
|
||||
username = ini.Get("username");
|
||||
if(!id.size())
|
||||
{
|
||||
std::cerr<<"No gist id is provided. Creating new gist...\n";
|
||||
retVal = curlPost("https://api.github.com/gists", buildGistData(path, content), "", token, &retData);
|
||||
if(retVal != 201)
|
||||
{
|
||||
std::cerr<<"Create new Gist failed! Return data:\n"<<retData<<"\n";
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
url = ini.Get(path, "url");
|
||||
if(!url.size())
|
||||
url = "https://gist.githubusercontent.com/" + username + "/" + id + "/raw/" + path;
|
||||
std::cerr<<"Gist id provided. Modifying gist...\n";
|
||||
if(writeManageURL)
|
||||
content = "#!MANAGED-CONFIG "+ url + "\n" + content;
|
||||
retVal = curlPatch("https://api.github.com/gists/" + id, buildGistData(path, content), "", token, &retData);
|
||||
if(retVal != 200)
|
||||
{
|
||||
std::cerr<<"Modify gist failed! Return data:\n"<<retData<<"\n";
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
json.Parse(retData.data());
|
||||
GetMember(json, "id", id);
|
||||
if(json.HasMember("owner"))
|
||||
GetMember(json["owner"], "login", username);
|
||||
std::cerr<<"Writing to Gist success!\nPath: "<<path<<"\nRaw URL: "<<url<<"\nGist owner: "<<username<<"\n";
|
||||
}
|
||||
else
|
||||
if(ini.EnterSection("common") != 0)
|
||||
{
|
||||
std::cerr<<"gistconf.ini has incorrect format. Skipping...\n";
|
||||
return -1;
|
||||
}
|
||||
|
||||
token = ini.Get("token");
|
||||
if(!token.size())
|
||||
{
|
||||
std::cerr<<"No token is provided. Skipping...\n";
|
||||
return -1;
|
||||
}
|
||||
|
||||
id = ini.Get("id");
|
||||
username = ini.Get("username");
|
||||
if(!path.size())
|
||||
{
|
||||
if(ini.ItemExist("path"))
|
||||
path = ini.Get(name, "path");
|
||||
else
|
||||
path = name;
|
||||
}
|
||||
|
||||
if(!id.size())
|
||||
{
|
||||
std::cerr<<"No gist id is provided. Creating new gist...\n";
|
||||
retVal = curlPost("https://api.github.com/gists", buildGistData(path, content), getSystemProxy(), token, &retData);
|
||||
if(retVal != 201)
|
||||
{
|
||||
std::cerr<<"Create new Gist failed! Return data:\n"<<retData<<"\n";
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
url = "https://gist.githubusercontent.com/" + username + "/" + id + "/raw/" + path;
|
||||
std::cerr<<"Gist id provided. Modifying gist...\n";
|
||||
if(writeManageURL)
|
||||
content = "#!MANAGED-CONFIG "+ url + "\n" + content;
|
||||
retVal = curlPatch("https://api.github.com/gists/" + id, buildGistData(path, content), getSystemProxy(), token, &retData);
|
||||
if(retVal != 200)
|
||||
{
|
||||
std::cerr<<"Modify gist failed! Return data:\n"<<retData<<"\n";
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
json.Parse(retData.data());
|
||||
GetMember(json, "id", id);
|
||||
if(json.HasMember("owner"))
|
||||
GetMember(json["owner"], "login", username);
|
||||
std::cerr<<"Writing to Gist success!\nGenerator: "<<name<<"\nPath: "<<path<<"\nRaw URL: "<<url<<"\nGist owner: "<<username<<"\n";
|
||||
|
||||
ini.EraseSection();
|
||||
ini.Set("token", token);
|
||||
ini.Set("id", id);
|
||||
@@ -1081,6 +1133,7 @@ int uploadGist(std::string path, std::string content, bool writeManageURL)
|
||||
|
||||
ini.SetCurrentSection(path);
|
||||
ini.EraseSection();
|
||||
ini.Set("type", name);
|
||||
ini.Set("url", url);
|
||||
|
||||
ini.ToFile("gistconf.ini");
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user