├── .gitignore ├── README.md ├── archive ├── docker │ ├── Dockerfile │ └── build.sh ├── prog │ ├── format.php │ ├── route.sh │ └── scutweb.sh └── start.sh ├── cleardns ├── AdGuardHome │ └── AdGuardHome.yaml ├── custom.sh ├── list │ ├── china_ip_list.txt │ ├── chinalist.txt │ └── gfwlist.txt ├── start.sh └── upstream │ └── domestic.conf ├── freedom ├── check.sh └── start.sh ├── nginx ├── conf.d │ ├── adg.conf │ ├── ap.conf │ ├── cert.conf │ ├── default.conf │ ├── relay.conf │ ├── route.conf │ ├── st.conf │ ├── switch.conf │ ├── v2a.conf │ └── zip.conf ├── fastcgi.conf ├── fastcgi_params ├── koi-utf ├── koi-win ├── mime.types ├── modules-enabled │ ├── 50-mod-http-auth-pam.conf │ ├── 50-mod-http-dav-ext.conf │ ├── 50-mod-http-echo.conf │ ├── 50-mod-http-geoip.conf │ ├── 50-mod-http-image-filter.conf │ ├── 50-mod-http-subs-filter.conf │ ├── 50-mod-http-upstream-fair.conf │ ├── 50-mod-http-xslt-filter.conf │ ├── 50-mod-mail.conf │ └── 50-mod-stream.conf ├── nginx.conf ├── nginx.conf.dpkg-dist ├── proxy_params ├── scgi_params ├── sites-available │ └── default ├── sites-enabled │ └── default ├── snippets │ ├── fastcgi-php.conf │ └── snakeoil.conf ├── uwsgi_params └── win-utf ├── route ├── asset │ ├── geoip.dat │ ├── geosite.dat │ └── update.sh ├── config │ ├── dns.json │ ├── inbounds.json │ ├── outbounds.json │ └── routing.json ├── custom.sh ├── log │ ├── ipv4.sh │ ├── ipv6.sh │ ├── level │ └── view.sh ├── mode │ ├── check.sh │ ├── direct.sh │ ├── mode.json │ ├── proxy.sh │ ├── route.sh │ └── set.sh ├── network │ ├── bypass │ │ ├── ipv4 │ │ └── ipv6 │ ├── dns │ ├── interface │ │ ├── ipv4 │ │ └── ipv6 │ └── radvd │ │ ├── config │ │ ├── disable.sh │ │ └── enable.sh ├── rules │ ├── block_domain │ ├── block_ip │ ├── direct_domain │ ├── direct_ipv4 │ ├── direct_ipv6 │ ├── proxy_domain │ ├── proxy_ipv4 │ └── proxy_ipv6 ├── scan.sh └── start.sh └── scutweb ├── asset ├── geoip.dat ├── geosite.dat └── update.sh ├── check.sh ├── config ├── dns.json ├── inbounds.json └── routing.json ├── custom.sh ├── log └── view.sh ├── network ├── bypass │ ├── ipv4 │ └── ipv6 ├── dns ├── interface │ ├── ipv4 │ └── ipv6 └── radvd │ ├── config │ └── ignore └── start.sh /.gitignore: -------------------------------------------------------------------------------- 1 | /cleardns/AdGuardHome/data 2 | /cleardns/frpc/ 3 | /cleardns/upstream/foreign.conf 4 | 5 | /freedom/boltv4.db 6 | /freedom/config.json 7 | 8 | /route/client.json 9 | /route/log/access.log 10 | /route/log/archive/ 11 | /route/log/connection.log 12 | /route/log/error.log 13 | 14 | /scutweb/config/outbounds.json 15 | /scutweb/log/access.log 16 | /scutweb/log/archive/ 17 | /scutweb/log/error.log 18 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## 华南理工大学校园网破解 2 | 3 | 自用服务,可实现免缴费、免登录、不限时、不限速的联网,同时兼具IPv4与IPv6双栈、无污染DNS、分流代理境外流量等功能。 4 | 5 | 网络拓扑为单臂旁路由模型,借助macvlan实现虚拟旁路由透明代理,系统为原生Debian。 6 | 7 | + `scutweb` :核心破解容器,以 `http` 、`socks5` 与 `tproxy` 形式提供IPv4与IPv6出口; 8 | 9 | + `cleardns` :无污染DNS服务,提供分流请求、广告拦截、域名劫持等功能; 10 | 11 | + `route` :内网虚拟路由,根据规则分流与拦截客户端流量,同时可对客户端进行管理; 12 | 13 | + `freedom` :出境代理流量服务,支持多种加密翻墙协议; 14 | 15 | + `archive` :日志模块,主要分析与打包 `scutweb` 与 `route` 模块的日志; 16 | 17 | + `nginx` :网页管理服务,带https反向代理,内外网环境下均可进行管理; 18 | 19 | > 注:仓库中已屏蔽日志记录与部分敏感信息 20 | 21 | 本项目不会提供具体讲解,读懂相关配置与代码即可自行部署。 22 | 23 | 相关知识与项目: [TProxy](https://github.com/dnomd343/TProxy)、[ClearDNS](https://github.com/dnomd343/ClearDNS)、[Docker](https://docs.docker.com/)、[macvlan](https://docs.docker.com/network/macvlan/)、[Nginx](https://nginx.org/en/docs/)、[Xray](https://xtls.github.io/)、[Project V](https://www.v2fly.org/)、[AdGuardHome](https://github.com/AdguardTeam/AdguardHome)、[dnsproxy](https://github.com/AdguardTeam/dnsproxy)、[overture](https://github.com/shawn1m/overture)、[v2ray-rules](https://github.com/Loyalsoldier/v2ray-rules-dat)、[v2rayA](https://github.com/v2rayA/v2rayA)、[acme.sh](https://github.com/acmesh-official/acme.sh) ... 24 | -------------------------------------------------------------------------------- /archive/docker/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM alpine as inotify 2 | RUN apk add --update wget php7 php7-dev build-base && \ 3 | wget https://pecl.php.net/get/inotify-3.0.0.tgz -O /inotify-3.0.0.tgz && \ 4 | tar xf /inotify-3.0.0.tgz && cd /inotify-3.0.0 && \ 5 | phpize && ./configure && \ 6 | make && make install 7 | 8 | FROM alpine 9 | COPY --from=inotify /usr/lib/php7/modules/inotify.so /usr/lib/php7/modules/ 10 | RUN apk --update add --no-cache php7 php7-redis redis bzip2 && \ 11 | echo "extension = inotify.so" >> /etc/php7/php.ini && \ 12 | echo "daemonize yes" >> /etc/redis.conf && \ 13 | echo "redis-server /etc/redis.conf" > /init.sh && \ 14 | echo "php /etc/archive/prog/format.php &" >> /init.sh && \ 15 | echo "/usr/sbin/crond" >> /init.sh && \ 16 | echo "read -n 1" >> /init.sh && \ 17 | sed -i '$i\0\t0\t*\t*\t*\t/etc/archive/prog/scutweb.sh' /var/spool/cron/crontabs/root && \ 18 | sed -i '$i\0\t0\t*\t*\t*\t/etc/archive/prog/route.sh' /var/spool/cron/crontabs/root 19 | CMD ["sh","init.sh"] 20 | -------------------------------------------------------------------------------- /archive/docker/build.sh: -------------------------------------------------------------------------------- 1 | docker build -t archive . 2 | -------------------------------------------------------------------------------- /archive/prog/format.php: -------------------------------------------------------------------------------- 1 | '127.0.0.1', 9 | 'port' => '6379', 10 | 'prefix' => 'connection-' 11 | ); 12 | 13 | $fd = inotify_init(); 14 | stream_set_blocking($fd, 1); // 阻塞式 15 | $watch = inotify_add_watch($fd, $log_file, IN_MODIFY); 16 | 17 | $fp = fopen($log_file, "r"); 18 | $file_size = filesize($log_file); 19 | fseek($fp, $file_size); 20 | 21 | $fo = fopen($output_file, "a+"); 22 | 23 | while ($events = inotify_read($fd)) { 24 | usleep(500); 25 | foreach ($events as $event) { 26 | if ($event['mask'] !== 2) { continue; } 27 | clearstatcache(); 28 | $file_size_new = filesize($log_file); 29 | $add_size = $file_size_new - $file_size; 30 | $file_size = $file_size_new; 31 | if ($add_size <= 0) { continue; } 32 | $content = fread($fp, $add_size); 33 | if (!$content) { continue; } 34 | new_content($content); // 抓取到新输入内容 35 | ob_flush(); 36 | flush(); 37 | } 38 | } 39 | 40 | fclose($fo); 41 | fclose($fp); 42 | inotify_rm_watch($fd, $watch); 43 | fclose($fd); 44 | 45 | function new_content($content) { 46 | $content = explode(PHP_EOL, $content); 47 | foreach ($content as $row) { 48 | $row = trim($row); 49 | if ($row == null) { continue; } 50 | if (!strstr($row, '[Info]')) { continue; } 51 | new_line($row); 52 | } 53 | } 54 | 55 | function new_line($row) { 56 | if (strstr($row, 'proxy/dokodemo: received request for')) { 57 | $info = explode('proxy/dokodemo: received request for', $row); 58 | $info[0] = substr($info[0], 28); 59 | $id = substr($info[0], 0, strlen($info[0]) - 2); 60 | if ($id == null) { return; } 61 | $source = trim($info[1]); 62 | new_receive($id, $source); 63 | } 64 | if (strstr($row, 'app/dispatcher: taking detour')) { 65 | $info = explode('app/dispatcher: taking detour', $row); 66 | $time = substr($row, 0, 19); 67 | $info[0] = substr($info[0], 28); 68 | $id = substr($info[0], 0, strlen($info[0]) - 2); 69 | if ($id == null) { return; } 70 | $info = explode(' for ', trim($info[1])); 71 | $info[0] = substr($info[0], 1); 72 | $route = substr($info[0], 0, strlen($info[0]) - 1); 73 | $info[1] = substr($info[1], 1); 74 | $target = substr($info[1], 0, strlen($info[1]) - 1); 75 | new_dispatcher($id, $route, $target, $time); 76 | } 77 | } 78 | 79 | function new_receive($id, $source) { 80 | setRedisData($id, $source, 600); 81 | } 82 | 83 | function new_dispatcher($id, $route, $target, $time) { 84 | $source = getRedisData($id); 85 | if (!$source) { return; } 86 | if (substr($target, 0, 4) === 'tcp:') { 87 | $type = 'TCP'; 88 | } else if (substr($target, 0, 4) === 'udp:') { 89 | $type = 'UDP'; 90 | } else { 91 | return; 92 | } 93 | $target = substr($target, 4 - strlen($target)); 94 | if (substr($route, -1) === '4') { 95 | $ip_version = 'IPv4'; 96 | $route = substr($route, 0, strlen($route) - 1); 97 | } else if (substr($route, -1) === '6') { 98 | $ip_version = 'IPv6'; 99 | $route = substr($route, 0, strlen($route) - 1); 100 | } else { 101 | $ip_version = ''; 102 | } 103 | new_connection(array( 104 | 'time' => $time, 105 | 'type' => $type, 106 | 'source' => $source, 107 | 'target' => $target, 108 | 'route' => $route, 109 | 'ip_version' => $ip_version 110 | )); 111 | } 112 | 113 | function getRedisData($key) { // 查询Redis缓存 不存在返回NULL 114 | global $redisSetting; 115 | $redis = new Redis(); 116 | $redis->connect($redisSetting['host'], $redisSetting['port']); 117 | if ($redisSetting['passwd'] !== '') { 118 | $redis->auth($redisSetting['passwd']); // 密码认证 119 | } 120 | $redisKey = $redisSetting['prefix'] . $key; 121 | $redisValue = $redis->exists($redisKey) ? $redis->get($redisKey) : NULL; 122 | return $redisValue; 123 | } 124 | 125 | function setRedisData($key, $data, $cacheTTL = 0) { // 写入Redis缓存 默认不过期 126 | global $redisSetting; 127 | $redis = new Redis(); 128 | $redis->connect($redisSetting['host'], $redisSetting['port']); 129 | if ($redisSetting['passwd'] !== '') { 130 | $redis->auth($redisSetting['passwd']); // 密码认证 131 | } 132 | $redisKey = $redisSetting['prefix'] . $key; 133 | $status = $redis->set($redisKey, $data); // 写入数据库 134 | if ($cacheTTL > 0) { 135 | $redis->pexpire($redisKey, $cacheTTL * 1000); // 设置过期时间 单位 ms = s * 1000 136 | } 137 | return $status; 138 | } 139 | 140 | function new_connection($info) { 141 | global $fo; 142 | $record = '[' . $info['time'] . '] '; 143 | $record .= str_pad($info['source'], 19, ' ') . ' -> '; 144 | $record .= str_pad('[' . $info['ip_version'] . ']', 6, ' ') . ' '; 145 | $record .= $info['type'] . ' ' . str_pad($info['route'], 6, ' ') . ' -> '; 146 | $record .= $info['target']; 147 | fwrite($fo, $record . PHP_EOL); 148 | } 149 | 150 | ?> 151 | -------------------------------------------------------------------------------- /archive/prog/route.sh: -------------------------------------------------------------------------------- 1 | DIR=/etc/route/log 2 | mkdir -p $DIR/temp 3 | mkdir -p $DIR/archive 4 | cp $DIR/access.log $DIR/error.log $DIR/temp/ 5 | mv $DIR/connection.log $DIR/temp/ 6 | ps -ef | grep format.php | grep -v grep | awk '{print $1}' | xargs kill -9 7 | cat /dev/null > $DIR/access.log > $DIR/error.log 8 | php /etc/archive/prog/format.php & 9 | date=`php -r "echo date('Y-m-d',strtotime('0 day'));"` 10 | tar cf $DIR/archive/$date.tar -C$DIR/temp/ access.log error.log connection.log 11 | bzip2 $DIR/archive/$date.tar --best 12 | rm -rf $DIR/temp/ 13 | -------------------------------------------------------------------------------- /archive/prog/scutweb.sh: -------------------------------------------------------------------------------- 1 | DIR=/etc/scutweb/log 2 | mkdir -p $DIR/temp 3 | mkdir -p $DIR/archive 4 | cp $DIR/access.log $DIR/error.log $DIR/temp/ 5 | cat /dev/null > $DIR/access.log > $DIR/error.log 6 | date=`php -r "echo date('Y-m-d',strtotime('0 day'));"` 7 | tar cf $DIR/archive/$date.tar -C$DIR/temp/ access.log error.log 8 | bzip2 $DIR/archive/$date.tar --best 9 | rm -rf $DIR/temp/ 10 | -------------------------------------------------------------------------------- /archive/start.sh: -------------------------------------------------------------------------------- 1 | temp=`docker ps -a | grep -o archive` 2 | if [ "$temp" != "" ]; then 3 | docker rm -f archive > /dev/null 4 | fi 5 | docker run --restart always -d -it \ 6 | --name archive \ 7 | -v /etc/archive/:/etc/archive/ \ 8 | -v /etc/scutweb/log/:/etc/scutweb/log/ \ 9 | -v /etc/route/log/:/etc/route/log/ \ 10 | -v /etc/timezone:/etc/timezone:ro \ 11 | -v /etc/localtime:/etc/localtime:ro \ 12 | archive:latest > /dev/null 13 | sleep 1s 14 | docker ps -a 15 | -------------------------------------------------------------------------------- /cleardns/AdGuardHome/AdGuardHome.yaml: -------------------------------------------------------------------------------- 1 | bind_host: 0.0.0.0 2 | bind_port: 80 3 | beta_bind_port: 0 4 | users: 5 | - name: dnomd343 6 | password: ... 7 | auth_attempts: 5 8 | block_auth_min: 15 9 | http_proxy: "" 10 | language: "" 11 | debug_pprof: false 12 | web_session_ttl: 720 13 | dns: 14 | bind_hosts: 15 | - 0.0.0.0 16 | port: 53 17 | statistics_interval: 30 18 | querylog_enabled: true 19 | querylog_file_enabled: true 20 | querylog_interval: 720h 21 | querylog_size_memory: 1000 22 | anonymize_client_ip: false 23 | protection_enabled: true 24 | blocking_mode: default 25 | blocking_ipv4: "" 26 | blocking_ipv6: "" 27 | blocked_response_ttl: 10 28 | parental_block_host: family-block.dns.adguard.com 29 | safebrowsing_block_host: standard-block.dns.adguard.com 30 | ratelimit: 0 31 | ratelimit_whitelist: [] 32 | refuse_any: true 33 | upstream_dns: 34 | - 127.0.0.1:5353 35 | upstream_dns_file: "" 36 | bootstrap_dns: 37 | - 9.9.9.10 38 | - 149.112.112.10 39 | - 2620:fe::10 40 | - 2620:fe::fe:10 41 | all_servers: false 42 | fastest_addr: false 43 | fastest_timeout: 1s 44 | allowed_clients: [] 45 | disallowed_clients: [] 46 | blocked_hosts: 47 | - version.bind 48 | - id.server 49 | - hostname.bind 50 | - wpad.lan 51 | - clock.redhat.com 52 | - clock.cuhk.edu.hk 53 | trusted_proxies: 54 | - 127.0.0.0/8 55 | - ::1/128 56 | cache_size: 268435456 57 | cache_ttl_min: 300 58 | cache_ttl_max: 518400 59 | cache_optimistic: false 60 | bogus_nxdomain: [] 61 | aaaa_disabled: false 62 | enable_dnssec: true 63 | edns_client_subnet: false 64 | max_goroutines: 300 65 | ipset: [] 66 | filtering_enabled: true 67 | filters_update_interval: 24 68 | parental_enabled: false 69 | safesearch_enabled: false 70 | safebrowsing_enabled: false 71 | safebrowsing_cache_size: 1048576 72 | safesearch_cache_size: 1048576 73 | parental_cache_size: 1048576 74 | cache_time: 30 75 | rewrites: 76 | - domain: mc.scut.343.re 77 | answer: iserv.scutbot.cn 78 | - domain: dns.343.re 79 | answer: 8.210.148.24 80 | - domain: nps.dnomd343.top 81 | answer: 8.210.148.24 82 | - domain: '*.scut.343.re' 83 | answer: 192.168.2.34 84 | blocked_services: [] 85 | upstream_timeout: 10s 86 | local_domain_name: lan 87 | resolve_clients: true 88 | use_private_ptr_resolvers: true 89 | local_ptr_upstreams: [] 90 | tls: 91 | enabled: false 92 | server_name: "" 93 | force_https: false 94 | port_https: 443 95 | port_dns_over_tls: 853 96 | port_dns_over_quic: 784 97 | port_dnscrypt: 0 98 | dnscrypt_config_file: "" 99 | allow_unencrypted_doh: false 100 | strict_sni_check: false 101 | certificate_chain: "" 102 | private_key: "" 103 | certificate_path: "" 104 | private_key_path: "" 105 | filters: 106 | - enabled: true 107 | url: https://res.343.re/Share/Adblock-Rules/xinggsf.txt 108 | name: 乘风规则 109 | id: 1637574156 110 | - enabled: true 111 | url: https://adaway.org/hosts.txt 112 | name: AdAway 113 | id: 1637574157 114 | - enabled: true 115 | url: https://adguardteam.github.io/AdGuardSDNSFilter/Filters/filter.txt 116 | name: AdGuard 117 | id: 1637574159 118 | - enabled: true 119 | url: https://anti-ad.net/easylist.txt 120 | name: Anti AD 121 | id: 1637597338 122 | whitelist_filters: [] 123 | user_rules: 124 | - '||wpad.lan^' 125 | dhcp: 126 | enabled: false 127 | interface_name: "" 128 | dhcpv4: 129 | gateway_ip: "" 130 | subnet_mask: "" 131 | range_start: "" 132 | range_end: "" 133 | lease_duration: 86400 134 | icmp_timeout_msec: 1000 135 | options: [] 136 | dhcpv6: 137 | range_start: "" 138 | lease_duration: 86400 139 | ra_slaac_only: false 140 | ra_allow_slaac: false 141 | clients: [] 142 | log_compress: false 143 | log_localtime: false 144 | log_max_backups: 0 145 | log_max_size: 100 146 | log_max_age: 3 147 | log_file: "" 148 | verbose: false 149 | os: 150 | group: "" 151 | user: "" 152 | rlimit_nofile: 0 153 | schema_version: 12 154 | -------------------------------------------------------------------------------- /cleardns/custom.sh: -------------------------------------------------------------------------------- 1 | ip addr flush dev eth0 2 | ip addr add 192.168.2.3/24 brd 192.168.2.255 dev eth0 3 | ip route add default via 192.168.2.2 4 | ip -6 addr add fc00::3/64 dev eth0 5 | echo "nameserver 192.168.2.1" > /etc/resolv.conf 6 | nohup /etc/cleardns/frpc/frpc -c /etc/cleardns/frpc/frpc.ini & 7 | -------------------------------------------------------------------------------- /cleardns/list/gfwlist.txt: -------------------------------------------------------------------------------- 1 | 000webhost.com 2 | 030buy.com 3 | 0914.global.ssl.fastly.net 4 | 0rz.tw 5 | 1000giri.net 6 | 100ke.org 7 | 10beasts.net 8 | 10conditionsoflove.com 9 | 10musume.com 10 | 10.tt 11 | 123rf.com 12 | 12bet.com 13 | 12vpn.com 14 | 12vpn.net 15 | 1337x.to 16 | 138.com 17 | 141hongkong.com 18 | 141jj.com 19 | 141tube.com 20 | 1688.com.au 21 | 173ng.com 22 | 177pic.info 23 | 17t17p.com 24 | 18board.com 25 | 18board.info 26 | 18onlygirls.com 27 | 18p2p.com 28 | 18virginsex.com 29 | 1949er.org 30 | 1984bbs.com 31 | 1984bbs.org 32 | 1989report.hkja.org.hk 33 | 1991way.com 34 | 1998cdp.org 35 | 1-apple.com.tw 36 | 1bao.org 37 | 1dumb.com 38 | 1e100.net 39 | 1eew.com 40 | 1mobile.com 41 | 1mobile.tw 42 | 1pondo.tv 43 | 2000fun.com 44 | 2008xianzhang.info 45 | 2017.hk 46 | 2021hkcharter.com 47 | 2047.name 48 | 2049bbs.xyz 49 | 21andy.com 50 | 21join.com 51 | 21pron.com 52 | 21sextury.com 53 | 228.net.tw 54 | 233abc.com 55 | 233v2.com 56 | 24hrs.ca 57 | 24smile.org 58 | 25u.com 59 | 2.bahamut.com.tw 60 | 2du5.com 61 | 2-hand.info 62 | 2lipstube.com 63 | 2shared.com 64 | 2waky.com 65 | 30boxes.com 66 | 315lz.com 67 | 32red.com 68 | 36rain.com 69 | 3a5a.com 70 | 3-a.net 71 | 3arabtv.com 72 | 3boys2girls.com 73 | 3d-game.com 74 | 3proxy.ru 75 | 3ren.ca 76 | 3tui.net 77 | 404museum.com 78 | 43110.cf 79 | 466453.com 80 | 4bluestones.biz 81 | 4chan.com 82 | 4dq.com 83 | 4everproxy.com 84 | 4gtv.tv 85 | 4irc.com 86 | 4mydomain.com 87 | 4pu.com 88 | 4rbtv.com 89 | 4shared.com 90 | 4sqi.net 91 | 51.ca 92 | 51jav.org 93 | 51luoben.com 94 | 5278.cc 95 | 5299.tv 96 | 56cun04.jigsy.com 97 | 5aimiku.com 98 | 5i01.com 99 | 5isotoi5.org 100 | 5maodang.com 101 | 63i.com 102 | 64museum.org 103 | 64tianwang.com 104 | 64wiki.com 105 | 666kb.com 106 | 66.ca 107 | 6do.news 108 | 6parkbbs.com 109 | 6park.com 110 | 6parker.com 111 | 6parknews.com 112 | 7capture.com 113 | 7cow.com 114 | 7mmtv.tv 115 | 85cc.net 116 | 85cc.us 117 | 85st.com 118 | 881903.com 119 | 888.com 120 | 888poker.com 121 | 89.64.charter.constitutionalism.solutions 122 | 8964museum.com 123 | 89-64.org 124 | 8-d.com 125 | 8news.com.tw 126 | 8z1.net 127 | 9001700.com 128 | 908taiwan.org 129 | 91porn.com 130 | 91vps.club 131 | 92ccav.com 132 | 991.com 133 | 99btgc01.com 134 | 99cn.info 135 | 9bis.com 136 | 9bis.net 137 | 9cache.com 138 | 9gag.com 139 | 9news.com.au 140 | a248.e.akamai.net 141 | a5.com.ru 142 | a771.dscq.akamai.net 143 | aamacau.com 144 | abc.com 145 | abchinese.com 146 | abclite.net 147 | abc.net.au 148 | abc.pp.ru 149 | abc.xyz 150 | abebooks.com 151 | abematv.akamaized.net 152 | abitno.linpie.com 153 | ablwang.com 154 | aboluowang.com 155 | aboutgfw.com 156 | about.google 157 | abs.edu 158 | accim.org 159 | accountkit.com 160 | aceros-de-hispania.com 161 | acevpn.com 162 | acg18.me 163 | acgbox.org 164 | acgkj.com 165 | acgnx.se 166 | ac.jiruan.net 167 | acmedia365.com 168 | acmetoy.com 169 | acnw.com.au 170 | actfortibet.org 171 | actimes.com.au 172 | activpn.com 173 | aculo.us 174 | adcex.com 175 | addictedtocoffee.de 176 | addyoutube.com 177 | adelaidebbs.com 178 | admin.recaptcha.net 179 | admob.com 180 | adpl.org.hk 181 | adsense.com 182 | ads-twitter.com 183 | adult.friendfinder.com 184 | adultfriendfinder.com 185 | adultkeep.net 186 | adult-sex-games.com 187 | advanscene.com 188 | advertfan.com 189 | advertisercommunity.com 190 | ae.hao123.com 191 | aenhancers.com 192 | ae.org 193 | aex.com 194 | afantibbs.com 195 | af.mil 196 | afr.com 197 | afreecatv.com 198 | agnesb.fr 199 | agoogleaday.com 200 | agro.hk 201 | ai.binwang.me 202 | ai.google 203 | ai-kan.net 204 | aiph.net 205 | airasia.com 206 | airconsole.com 207 | airvpn.org 208 | aisex.com 209 | aiss.anws.gov.tw 210 | ait.org.tw 211 | aiv-cdn.net 212 | aiv-cdn.net.c.footprint.net 213 | aiv-delivery.net 214 | aiweiweiblog.com 215 | aiweiwei.com 216 | ai-wen.net 217 | akademiye.org 218 | akamaihd.net 219 | akiba-online.com 220 | akiba-web.com 221 | akow.org 222 | alabout.com 223 | alanhou.com 224 | alarab.qa 225 | alasbarricadas.org 226 | alexlur.org 227 | alforattv.net 228 | alhayat.com 229 | alicejapan.co.jp 230 | aliengu.com 231 | al-islam.com 232 | alive.bar 233 | alkasir.com 234 | all4mom.org 235 | allcoin.com 236 | allconnected.co 237 | alldrawnsex.com 238 | allervpn.com 239 | allfinegirls.com 240 | allgirlmassage.com 241 | allgirlsallowed.org 242 | allgravure.com 243 | alliance.org.hk 244 | allinfa.com 245 | alljackpotscasino.com 246 | allmovie.com 247 | allowed.org 248 | almasdarnews.com 249 | almostmy.com 250 | alphaporno.com 251 | al-qimmah.net 252 | alternate-tools.com 253 | alternativeto.net 254 | altrec.com 255 | alvinalexander.com 256 | alwaysdata.com 257 | alwaysdata.net 258 | alwaysvpn.com 259 | am730.com.hk 260 | amazonaws.com 261 | amazon.co.jp 262 | amazon.com 263 | amazonvideo.com 264 | ameba.jp 265 | ameblo.jp 266 | americangreencard.com 267 | americanunfinished.com 268 | amiblockedornot.com 269 | amigobbs.net 270 | amitabhafoundation.us 271 | amnesty.org 272 | amnesty.org.hk 273 | amnesty.tw 274 | amnestyusa.org 275 | amnyemachen.org 276 | amoiist.com 277 | ampproject.org 278 | amtb-taipei.org 279 | anchor.fm 280 | anchorfree.com 281 | ancsconf.org 282 | andfaraway.net 283 | androidapksfree.com 284 | android.com 285 | androidify.com 286 | androidplus.co 287 | androidtv.com 288 | android-x86.org 289 | andygod.com 290 | angela-merkel.de 291 | angelfire.com 292 | angola.org 293 | angularjs.org 294 | animecrazy.net 295 | animeshippuuden.com 296 | aniscartujo.com 297 | annatam.com 298 | anobii.com 299 | anontext.com 300 | anonymise.us 301 | anonymitynetwork.com 302 | anonymizer.com 303 | anonymouse.org 304 | a-normal-day.com 305 | anpopo.com 306 | answering-islam.org 307 | anthonycalzadilla.com 308 | anti1984.com 309 | antichristendom.com 310 | antiwave.net 311 | anyporn.com 312 | anysex.com 313 | ao3.org 314 | aobo.com.au 315 | aofriend.com 316 | aofriend.com.au 317 | aojiao.org 318 | aolchannels.aol.com 319 | aol.co.uk 320 | aolnews.com 321 | aomiwang.com 322 | apartmentratings.com 323 | apartments.com 324 | apat1989.org 325 | apetube.com 326 | api.ai 327 | apiary.io 328 | apidocs.linksalpha.com 329 | api.dropboxapi.com 330 | apigee.com 331 | api.linksalpha.com 332 | api.proxlet.com 333 | api.pureapk.com 334 | api.recaptcha.net 335 | api-secure.recaptcha.net 336 | api.tenor.com 337 | api-verify.recaptcha.net 338 | apkcombo.com 339 | apk-dl.com 340 | apkdler.com 341 | apkmirror.com 342 | apkmonk.com 343 | apkplz.com 344 | apkpure.com 345 | apk.support 346 | apk.tw 347 | aplusvpn.com 348 | app.box.com 349 | appbrain.com 350 | app.cloudcone.com 351 | appdownloader.net 352 | app.evozi.com 353 | app.heywire.com 354 | appledaily.com 355 | appledaily.com.hk 356 | appledaily.com.tw 357 | apps.evozi.com 358 | appshopper.com 359 | app.smartmailcloud.com 360 | appsocks.net 361 | appspot.com 362 | appspot-preview.com 363 | appsto.re 364 | app.tutanota.com 365 | aptoide.com 366 | archive.fo 367 | archive.is 368 | archive.li 369 | archive.md 370 | archiveofourown.com 371 | archiveofourown.org 372 | archive.org 373 | archive.ph 374 | archives.gov 375 | archives.gov.tw 376 | archive.today 377 | archive.vn 378 | arctosia.com 379 | areca-backup.org 380 | arena.taipei 381 | arethusa.su 382 | ar.hao123.com 383 | arlingtoncemetery.mil 384 | army.mil 385 | art4tibet1998.org 386 | arte.tv 387 | artofpeacefoundation.org 388 | artstation.com 389 | artsy.net 390 | asacp.org 391 | asdfg.jp 392 | asg.to 393 | asia-gaming.com 394 | asiaharvest.org 395 | asianage.com 396 | asianews.it 397 | asiansexdiary.com 398 | asianspiss.com 399 | asianwomensfilm.de 400 | asiaone.com 401 | asiatgp.com 402 | asiatoday.us 403 | askstudent.com 404 | askynz.net 405 | aspi.org.au 406 | aspistrategist.org.au 407 | assembla.com 408 | assets.bwbx.io 409 | assimp.org 410 | astrill.com 411 | atchinese.com 412 | atc.org.au 413 | atdmt.com 414 | atgfw.org 415 | athenaeizou.com 416 | atlanta168.com 417 | atlaspost.com 418 | atnext.com 419 | atv-ext.amazon.com 420 | atv-ps.amazon.com 421 | auctions.yahoo.co.jp 422 | auntology.fandom.com 423 | authorizeddns.net 424 | authorizeddns.org 425 | authorizeddns.us 426 | autodraw.com 427 | avaaz.org 428 | avbody.tv 429 | avcity.tv 430 | av.com 431 | avcool.com 432 | avdb.in 433 | avdb.tv 434 | av-e-body.com 435 | avfantasy.com 436 | avg.com 437 | avgle.com 438 | avidemux.org 439 | avmoo.com 440 | avmoo.net 441 | avmoo.pw 442 | avmo.pw 443 | av.movie 444 | av.nightlife141.com 445 | avoision.com 446 | avyahoo.com 447 | axios.com 448 | axureformac.com 449 | azerbaycan.tv 450 | azerimix.com 451 | azubu.tv 452 | azurewebsites.net 453 | b0ne.com 454 | babylonbee.com 455 | babynet.com.hk 456 | backchina.com 457 | backpackers.com.tw 458 | backtotiananmen.com 459 | badiucao.com 460 | badjojo.com 461 | badoo.com 462 | bahamut.com.tw 463 | baidu.jp 464 | baijie.org 465 | bailandaily.com 466 | baixing.me 467 | bakgeekhome.tk 468 | bamgrid.com 469 | banana-vpn.com 470 | bandcamp.com 471 | bandpage.com 472 | band.us 473 | bandwagonhost.com 474 | bangbrosnetwork.com 475 | bangchen.net 476 | bangdream.space 477 | bangkokpost.com 478 | bangyoulater.com 479 | bankmobilevibe.com 480 | bannedbook.org 481 | bannednews.org 482 | banorte.com 483 | baramangaonline.com 484 | barenakedislam.com 485 | barnabu.co.uk 486 | bartender.dowjones.com 487 | barton.de 488 | bartvpn.com 489 | bastillepost.com 490 | bayvoice.net 491 | bbcchinese.com 492 | bbc.com 493 | bbc.co.uk 494 | bb-chat.tv 495 | bbchat.tv 496 | bbci.co.uk 497 | bbc.in 498 | bbg.gov 499 | bbkz.com 500 | bbnradio.org 501 | bbs.brockbbs.com 502 | bbs.cantonese.asia 503 | bbsdigest.com 504 | bbs.ecstart.com 505 | bbsfeed.com 506 | bbs.hanminzu.org 507 | bbs.hasi.wang 508 | bbs.huasing.org 509 | bbs.junglobal.net 510 | bbs.kimy.com.tw 511 | bbsland.com 512 | bbs.mikocon.com 513 | bbsmo.com 514 | bbs.morbell.com 515 | bbs.mychat.to 516 | bbs.netbig.com 517 | bbsone.com 518 | bbs.ozchinese.com 519 | bbs.qmzdd.com 520 | bbs.sina.com 521 | bbs.skykiwi.com 522 | bbs.sou-tong.org 523 | bbs.tuitui.info 524 | bbs-tw.com 525 | bbtoystore.com 526 | bb.ttv.com.tw 527 | bcast.co.nz 528 | bcc.com.tw 529 | bcchinese.net 530 | bcex.ca 531 | bcmorning.com 532 | bcrncdn.com 533 | bdsmvideos.net 534 | beaconevents.com 535 | bebo.com 536 | beeg.com 537 | beevpn.com 538 | behance.net 539 | behindkink.com 540 | beijing1989.com 541 | beijingspring.com 542 | beijingzx.org 543 | belamionline.com 544 | bell.wiki 545 | bemywife.cc 546 | beric.me 547 | berlinerbericht.de 548 | berlintwitterwall.com 549 | berm.co.nz 550 | bestforchina.org 551 | bestgore.com 552 | bestpornstardb.com 553 | bestvpnanalysis.com 554 | bestvpn.com 555 | bestvpnserver.com 556 | bestvpnservice.com 557 | bestvpnusa.com 558 | bet365.com 559 | betfair.com 560 | betternet.co 561 | bettervpn.com 562 | bettween.com 563 | betvictor.com 564 | bewww.net 565 | beyondfirewall.com 566 | bfnn.org 567 | bfsh.hk 568 | bgvpn.com 569 | bianlei.com 570 | biantailajiao.com 571 | biantailajiao.in 572 | biblesforamerica.org 573 | bibox.com 574 | bic2011.org 575 | bidswitch.net 576 | bid.yahoo.com 577 | biedian.me 578 | bigfools.com 579 | biggo.com.tw 580 | bigjapanesesex.com 581 | bigmoney.biz 582 | bignews.org 583 | big.one 584 | bigone.com 585 | bigsound.org 586 | bild.de 587 | biliworld.com 588 | billypan.com 589 | binance.com 590 | binance.us 591 | binux.me 592 | bipic.net 593 | bird.so 594 | bitbay.net 595 | bitc.bme.emory.edu 596 | bitchute.com 597 | bitcointalk.org 598 | bitcoinworld.com 599 | bit.do 600 | bitfinex.com 601 | bithumb.com 602 | bitinka.com.ar 603 | bit.ly 604 | bitmex.com 605 | bitshare.com 606 | bitsnoop.com 607 | bitterwinter.org 608 | bitvise.com 609 | bitz.ai 610 | bit-z.com 611 | bizhat.com 612 | bjnewlife.org 613 | bjs.org 614 | bjzc.org 615 | blacklogic.com 616 | blackvpn.com 617 | bl-doujinsouko.com 618 | blewpass.com 619 | blinkx.com 620 | blinw.com 621 | blip.tv 622 | blockcn.com 623 | blockedbyhk.com 624 | blockless.com 625 | blogblog.com 626 | blog.calibre-ebook.com 627 | blogcatalog.com 628 | blogcity.me 629 | blog.cnyes.com 630 | blog.cryptographyengineering.com 631 | blog.daum.net 632 | blog.de 633 | blogdns.org 634 | blog.exblog.co.jp 635 | blog.excite.co.jp 636 | blog.expofutures.com 637 | blog.fizzik.com 638 | blog.foolsmountain.com 639 | blog.fuckgfw233.org 640 | blogger.com 641 | blog.google 642 | blog.goo.ne.jp 643 | blogimg.jp 644 | blog.inoreader.com 645 | blog.istef.info 646 | blog.jackjia.com 647 | blog.jp 648 | blog.kangye.org 649 | blog.lester850.info 650 | bloglines.com 651 | bloglovin.com 652 | blog.martinoei.com 653 | blog.pathtosharepoint.com 654 | blog.pentalogic.net 655 | blog.qooza.hk 656 | blog.ranxiang.com 657 | blogs.icerocket.com 658 | blog.sina.com.tw 659 | blogs.libraryinformationtechnology.com 660 | blog.sogoo.org 661 | blog.soylent.com 662 | blogspot.ae 663 | blogspot.al 664 | blogspot.am 665 | blogspot.ba 666 | blogspot.be 667 | blogspot.bg 668 | blogspot.ca 669 | blogspot.cat 670 | blogspot.ch 671 | blogspot.cl 672 | blogspot.com 673 | blogspot.com.ar 674 | blogspot.com.au 675 | blogspot.com.br 676 | blogspot.com.by 677 | blogspot.com.co 678 | blogspot.com.cy 679 | blogspot.com.ee 680 | blogspot.com.eg 681 | blogspot.com.es 682 | blogspot.com.mt 683 | blogspot.com.ng 684 | blogspot.com.tr 685 | blogspot.com.uy 686 | blogspot.co.uk 687 | blogspot.cz 688 | blogspot.de 689 | blogspot.dk 690 | blogspot.es 691 | blogspot.fi 692 | blogspot.fr 693 | blogspot.gr 694 | blogspot.hk 695 | blogspot.hr 696 | blogspot.hu 697 | blogspot.ie 698 | blogspot.in 699 | blogspot.is 700 | blogspot.it 701 | blogspot.jp 702 | blogspot.kr 703 | blogspot.li 704 | blogspot.lt 705 | blogspot.lu 706 | blogspot.md 707 | blogspot.mk 708 | blogspot.mx 709 | blogspot.my 710 | blogspot.nl 711 | blogspot.no 712 | blogspot.pe 713 | blogspot.pt 714 | blogspot.qa 715 | blogspot.ro 716 | blogspot.ru 717 | blogspot.se 718 | blogspot.sg 719 | blogspot.si 720 | blogspot.sk 721 | blogspot.sn 722 | blogspot.tw 723 | blogspot.ug 724 | blogs.tampabay.com 725 | blogs.yahoo.co.jp 726 | blog.syx86.cn 727 | blog.syx86.com 728 | blog.taragana.com 729 | blogtd.net 730 | blogtd.org 731 | blog.tiney.com 732 | blog.workflow.is 733 | blog.xuite.net 734 | blog.youthwant.com.tw 735 | blog.youxu.info 736 | bloodshed.net 737 | bloomberg.cn 738 | bloomberg.com 739 | bloomberg.de 740 | bloombergview.com 741 | bloomfortune.com 742 | blubrry.com 743 | blueangellive.com 744 | bmfinn.com 745 | bnews.co 746 | bnext.com.tw 747 | bnn.co 748 | bnrmetal.com 749 | boardreader.com 750 | bod.asia 751 | bodog88.com 752 | b-ok.cc 753 | bolehvpn.net 754 | bolin.netfirms.com 755 | bonbonme.com 756 | bonbonsex.com 757 | bonfoundation.org 758 | bongacams.com 759 | boobstagram.com 760 | book.com.tw 761 | bookdepository.com 762 | bookepub.com 763 | books.com.tw 764 | booktopia.com.au 765 | book.zi5.me 766 | boomssr.com 767 | botanwang.com 768 | bot.nu 769 | bowenpress.com 770 | boxpn.com 771 | boxunblog.com 772 | boxunclub.com 773 | boxun.com 774 | boxun.tv 775 | boyangu.com 776 | boyfriendtv.com 777 | boysfood.com 778 | boysmaster.com 779 | brainyquote.com 780 | brandonhutchinson.com 781 | braumeister.org 782 | brave.com 783 | bravotube.net 784 | braze.com 785 | brazzers.com 786 | break.com 787 | breakgfw.com 788 | breaking911.com 789 | breakingtweets.com 790 | breakwall.net 791 | br.hao123.com 792 | briefdream.com 793 | briian.com 794 | brizzly.com 795 | brkmd.com 796 | broadbook.com 797 | broadpressinc.com 798 | brookings.edu 799 | br.st 800 | brucewang.net 801 | brutaltgp.com 802 | bt2mag.com 803 | bt95.com 804 | btaia.com 805 | btbtav.com 806 | btc98.com 807 | btcbank.bank 808 | btctrade.im 809 | btdigg.org 810 | btku.me 811 | btku.org 812 | btspread.com 813 | btsynckeys.com 814 | budaedu.org 815 | buddhanet.com.tw 816 | buddhistchannel.tv 817 | buffered.com 818 | bullguard.com 819 | bullogger.com 820 | bullog.org 821 | bunbunhk.com 822 | busayari.com 823 | business-humanrights.org 824 | businessinsider.com 825 | businesstoday.com.tw 826 | businessweek.com 827 | businessweekly.com.tw 828 | busu.org 829 | busytrade.com 830 | buugaa.com 831 | buy.yahoo.com.tw 832 | buzzhand.com 833 | buzzhand.net 834 | buzzorange.com 835 | bvpn.com 836 | bwgyhw.com 837 | bwh1.net 838 | bwsj.hk 839 | bx.in.th 840 | bx.tl 841 | bybit.com 842 | bynet.co.il 843 | bypasscensorship.org 844 | byteoversea.com 845 | c100tibet.org 846 | c1522.mooo.com 847 | c2cx.com 848 | cablegatesearch.net 849 | cachinese.com 850 | cacnw.com 851 | cactusvpn.com 852 | cafepress.com 853 | cahr.org.tw 854 | caijinglengyan.com 855 | calameo.com 856 | calebelston.com 857 | calgarychinese.ca 858 | calgarychinese.com 859 | calgarychinese.net 860 | cam4.com 861 | cam4.jp 862 | cam4.sg 863 | camfrog.com 864 | campaignforuyghurs.org 865 | cams.com 866 | cams.org.sg 867 | canadameet.com 868 | canalporno.com 869 | canyu.org 870 | caobian.info 871 | caochangqing.com 872 | cao.im 873 | cap.org.hk 874 | carabinasypistolas.com 875 | cardinalkungfoundation.org 876 | carfax.com 877 | caribbeancom.com 878 | cari.com.my 879 | carmotorshow.com 880 | carrd.co 881 | cartoonmovement.com 882 | casadeltibetbcn.org 883 | casatibet.org.mx 884 | casinobellini.com 885 | casinoking.com 886 | casinoriva.com 887 | casino.williamhill.com 888 | castbox.fm 889 | catch22.net 890 | catchgod.com 891 | catfightpayperview.xxx 892 | catholic.org.hk 893 | catholic.org.tw 894 | cathvoice.org.tw 895 | cato.org 896 | cattt.com 897 | cbc.ca 898 | cbsnews.com 899 | cbs.ntu.edu.tw 900 | cbtc.org.hk 901 | cccat.cc 902 | cccat.co 903 | ccdtr.org 904 | cchere.com 905 | ccim.org 906 | cclife.ca 907 | cclifefl.org 908 | cclife.org 909 | ccthere.com 910 | ccthere.net 911 | cctmweb.net 912 | cctongbao.com 913 | ccue.ca 914 | ccue.com 915 | ccvoice.ca 916 | ccw.org.tw 917 | cdbook.org 918 | cdcparty.com 919 | cdef.org 920 | cdig.info 921 | cdjp.org 922 | cdn1.lp.saboom.com 923 | cdn-apple.com 924 | cdn.assets.lfpcontent.com 925 | cdnews.com.tw 926 | cdn.helixstudios.net 927 | cdn-images.mailchimp.com 928 | cdninstagram.com 929 | cdn.printfriendly.com 930 | cdn.registerdisney.go.com 931 | cdn.seatguru.com 932 | cdn.softlayer.net 933 | cdp1989.org 934 | cdp1998.org 935 | cdp2006.org 936 | cdpa.url.tw 937 | cdpeu.org 938 | cdpusa.org 939 | cdpweb.org 940 | cdpwu.org 941 | cdw.com 942 | cecc.gov 943 | celestiallight.org 944 | cellulo.info 945 | cenews.eu 946 | centauro.com.br 947 | centerforhumanreprod.com 948 | centralnation.com 949 | centurys.net 950 | certificate.revocationcheck.com 951 | certificate-transparency.org 952 | c-est-simple.com 953 | cex.io 954 | cfhks.org.hk 955 | cfos.de 956 | cfr.org 957 | cftfc.com 958 | cgdepot.org 959 | cgst.edu 960 | changeip.name 961 | changeip.net 962 | changeip.org 963 | change.org 964 | changp.com 965 | changsa.net 966 | channel8news.sg 967 | channelnewsasia.com 968 | chaoex.com 969 | chapm25.com 970 | chatnook.com 971 | chaturbate.com 972 | checkgfw.com 973 | chengmingmag.com 974 | chenguangcheng.com 975 | chenpokong.com 976 | chenpokong.net 977 | chenpokongvip.com 978 | chenshan20042005.wordpress.com 979 | cherrysave.com 980 | chhongbi.org 981 | chicagoncmtv.com 982 | china101.com 983 | china18.org 984 | china21.com 985 | china21.org 986 | china5000.us 987 | chinaaffairs.org 988 | chinaaid.me 989 | chinaaid.net 990 | chinaaid.org 991 | chinaaid.us 992 | chinachange.org 993 | chinachannel.hk 994 | chinacitynews.be 995 | chinacomments.org 996 | chinadialogue.net 997 | chinadigitaltimes.net 998 | chinaelections.org 999 | chinaeweekly.com 1000 | chinafreepress.org 1001 | chinagate.com 1002 | chinageeks.org 1003 | chinagfw.org 1004 | chinagonet.com 1005 | chinagreenparty.org 1006 | chinahorizon.org 1007 | chinahush.com 1008 | chinainperspective.com 1009 | chinainterimgov.org 1010 | chinalaborwatch.org 1011 | chinalawandpolicy.com 1012 | chinalawtranslate.com 1013 | china-mmm.jp.net 1014 | china-mmm.net 1015 | china-mmm.sa.com 1016 | chinamule.com 1017 | chinamz.org 1018 | chinanewscenter.com 1019 | chinapost.com.tw 1020 | chinapress.com.my 1021 | china-review.com.ua 1022 | chinarightsia.org 1023 | chinasmile.net 1024 | chinasocialdemocraticparty.com 1025 | chinasoul.org 1026 | chinasucks.net 1027 | chinatimes.com 1028 | chinatopsex.com 1029 | chinatown.com.au 1030 | chinatweeps.com 1031 | china.ucanews.com 1032 | chinaview.wordpress.com 1033 | chinaway.org 1034 | china-week.com 1035 | chinaworker.info 1036 | chinaxchina.com 1037 | chinayouth.org.hk 1038 | chinayuanmin.org 1039 | chinesedaily.com 1040 | chinesedailynews.com 1041 | chinesedemocracy.com 1042 | chinese.donga.com 1043 | chinese.engadget.com 1044 | chinesegay.org 1045 | chinese-hermit.net 1046 | chinese.irib.ir 1047 | chinese-leaders.org 1048 | chinese-memorial.org 1049 | chinesen.de 1050 | chinesenews.net.au 1051 | chinesepen.org 1052 | chineseradioseattle.com 1053 | chinese.soifind.com 1054 | chinesetalks.net 1055 | chineseupress.com 1056 | chingcheong.com 1057 | chinman.net 1058 | chithu.org 1059 | chn.chosun.com 1060 | chobit.cc 1061 | chrdnet.com 1062 | christianfreedom.org 1063 | christianstudy.com 1064 | christiantimes.org.hk 1065 | christusrex.org 1066 | chrlawyers.hk 1067 | chromecast.com 1068 | chrome.com 1069 | chromeenterprise.google 1070 | chromeexperiments.com 1071 | chromercise.com 1072 | chromestatus.com 1073 | chromium.org 1074 | ch.shvoong.com 1075 | chuang-yen.org 1076 | chubold.com 1077 | chubun.com 1078 | chuizi.net 1079 | churchinhongkong.org 1080 | chushigangdrug.ch 1081 | cienen.com 1082 | cineastentreff.de 1083 | cipfg.org 1084 | circlethebayfortibet.org 1085 | cirosantilli.com 1086 | citizencn.com 1087 | citizenlab.ca 1088 | citizenlab.org 1089 | citizenpowerforchina.org 1090 | citizenscommission.hk 1091 | citizensradio.org 1092 | city365.ca 1093 | city9x.com 1094 | citypopulation.de 1095 | citytalk.tw 1096 | civicparty.hk 1097 | civildisobediencemovement.org 1098 | civilhrfront.org 1099 | civiliangunner.com 1100 | civilmedia.tw 1101 | ck101.com 1102 | clarionproject.org 1103 | classicalguitarblog.net 1104 | clb.org.hk 1105 | cl.d0z.net 1106 | cldr.unicode.org 1107 | cleansite.biz 1108 | cleansite.info 1109 | cleansite.us 1110 | clearharmony.net 1111 | clearsurance.com 1112 | clearwisdom.net 1113 | clementine-player.org 1114 | cling.omy.sg 1115 | clinica-tibet.ru 1116 | clipfish.de 1117 | clips4sale.com 1118 | cloakpoint.com 1119 | cloudflare.com 1120 | cloudflare-ipfs.com 1121 | cloudfront.net 1122 | cloudfunctions.net 1123 | cloud.mail.ru 1124 | club1069.com 1125 | clubhouseapi.com 1126 | clyp.it 1127 | cmcn.org 1128 | cmi.org.tw 1129 | cmoinc.org 1130 | cmp.hku.hk 1131 | cms.gov 1132 | cmule.com 1133 | cmule.org 1134 | cmx.im 1135 | cn2.streetvoice.com 1136 | cn6.eu 1137 | cnabc.com 1138 | cna.com.tw 1139 | cnbbnews.wordpress.com 1140 | cnbc.com 1141 | cn.calameo.com 1142 | cn.dayabook.com 1143 | cnd.org 1144 | cnex.org.cn 1145 | cn.fmnnow.com 1146 | cn.freeones.com 1147 | cn.giganews.com 1148 | cn.ibtimes.com 1149 | cnineu.com 1150 | cnn.com 1151 | cnnews.chosun.com 1152 | cn.nytstyle.com 1153 | cnpolitics.org 1154 | cn-proxy.com 1155 | cnproxy.com 1156 | cn.sandscotaicentral.com 1157 | cn.shafaqna.com 1158 | cn.streetvoice.com 1159 | cn.theaustralian.com.au 1160 | cn.thegay.com 1161 | cn.uncyclopedia.wikia.com 1162 | cn.uptodown.com 1163 | cn.voa.mobi 1164 | cnyes.com 1165 | coat.co.jp 1166 | cobinhood.com 1167 | cochina.co 1168 | cochina.org 1169 | code1984.com 1170 | code.jquery.com 1171 | codeshare.io 1172 | codeskulptor.org 1173 | coin2co.in 1174 | coinbene.com 1175 | coinegg.com 1176 | coinex.com 1177 | coingecko.com 1178 | coingi.com 1179 | coinmarketcap.com 1180 | coinrail.co.kr 1181 | cointiger.com 1182 | cointobe.com 1183 | coinut.com 1184 | collateralmurder.com 1185 | collateralmurder.org 1186 | comefromchina.com 1187 | com.google 1188 | comic-mega.me 1189 | commandarms.com 1190 | commentshk.com 1191 | communistcrimes.org 1192 | communitychoicecu.com 1193 | community.windy.com 1194 | comparitech.com 1195 | compileheart.com 1196 | compress.to 1197 | conair.me 1198 | co.ng.mil 1199 | connect.facebook.net 1200 | conoha.jp 1201 | contactmagazine.net 1202 | contests.twilio.com 1203 | convio.net 1204 | coobay.com 1205 | cool18.com 1206 | coolaler.com 1207 | coolder.com 1208 | coolloud.org.tw 1209 | coolncute.com 1210 | coolstuffinc.com 1211 | corumcollege.com 1212 | cosmic.monar.ch 1213 | cos-moe.com 1214 | cosplayjav.pl 1215 | costco.com 1216 | cotweet.com 1217 | counter.social 1218 | coursehero.com 1219 | cpj.org 1220 | cq99.us 1221 | crackle.com 1222 | crazys.cc 1223 | crazyshit.com 1224 | crbug.com 1225 | crchina.org 1226 | crd-net.org 1227 | creaders.net 1228 | creadersnet.com 1229 | creativelab5.com 1230 | crisisresponse.google 1231 | cristyli.com 1232 | crocotube.com 1233 | crossfire.co.kr 1234 | crossthewall.net 1235 | crossvpn.net 1236 | crrev.com 1237 | crucial.com 1238 | crunchyroll.com 1239 | crwdcntrl.net 1240 | csdparty.com 1241 | csis.org 1242 | csmonitor.com 1243 | c-span.org 1244 | c-spanvideo.org 1245 | css.pixnet.in 1246 | csuchen.de 1247 | csw.org.uk 1248 | ctao.org 1249 | ctfriend.net 1250 | ctitv.com.tw 1251 | ct.org.tw 1252 | ctowc.org 1253 | cts.com.tw 1254 | ctwant.com 1255 | cuhkacs.org 1256 | cuihua.org 1257 | cuiweiping.net 1258 | culture.tw 1259 | cumlouder.com 1260 | curvefish.com 1261 | cusp.hk 1262 | cusu.hk 1263 | cutscenes.net 1264 | cw.com.tw 1265 | cws.conviva.com 1266 | cyberghost.natado.com 1267 | cyberghostvpn.com 1268 | cynscribe.com 1269 | cytode.us 1270 | d100.net 1271 | d1b183sg0nvnuh.cloudfront.net 1272 | d1c37gjwa26taa.cloudfront.net 1273 | d2bay.com 1274 | d2pass.com 1275 | d3c33hcgiwev3.cloudfront.net 1276 | d3rhr7kgmtrq1v.cloudfront.net 1277 | dabr.co.uk 1278 | dabr.eu 1279 | dabr.me 1280 | dabr.mobi 1281 | dadazim.com 1282 | dadi360.com 1283 | dafabet.com 1284 | dafagood.com 1285 | dafahao.com 1286 | dafoh.org 1287 | daftporn.com 1288 | dagelijksestandaard.nl 1289 | daidostup.ru 1290 | dailidaili.com 1291 | dailymail.co.uk 1292 | dailymotion.com 1293 | dailynews.sina.com 1294 | dailysabah.com 1295 | dailyview.tw 1296 | daiphapinfo.net 1297 | dajiyuan.com 1298 | dajiyuan.de 1299 | dajiyuan.eu 1300 | dajusha.baywords.com 1301 | dalailama80.org 1302 | dalailama-archives.org 1303 | dalailamacenter.org 1304 | dalailama.com 1305 | dalailamafellows.org 1306 | dalailamafilm.com 1307 | dalailamafoundation.org 1308 | dalailamahindi.com 1309 | dalailamainaustralia.org 1310 | dalailamajapanese.com 1311 | dalailama.mn 1312 | dalailamaprotesters.info 1313 | dalailamaquotes.org 1314 | dalailama.ru 1315 | dalailamatrust.org 1316 | dalailama.usc.edu 1317 | dalailamavisit.org.nz 1318 | dalailamaworld.com 1319 | dalianmeng.org 1320 | daliulian.org 1321 | danbooru.donmai.us 1322 | danke4china.net 1323 | danwei.org 1324 | daodu14.jigsy.com 1325 | daolan.net 1326 | daozhongxing.org 1327 | darktech.org 1328 | darktoy.net 1329 | darpa.mil 1330 | dastrassi.org 1331 | data.flurry.com 1332 | data.gov.tw 1333 | data-vocabulary.org 1334 | daum.net 1335 | david-kilgour.com 1336 | dawangidc.com 1337 | daxa.cn 1338 | dayabook.com 1339 | daylife.com 1340 | dbc.hk 1341 | dbgjd.com 1342 | db.tt 1343 | dcard.tw 1344 | dcmilitary.com 1345 | ddc.com.tw 1346 | ddhw.info 1347 | ddns.info 1348 | ddns.me.uk 1349 | ddns.mobi 1350 | ddns.ms 1351 | ddns.name 1352 | ddns.net 1353 | ddns.us 1354 | deadline.com 1355 | deaftone.com 1356 | debug.com 1357 | deck.ly 1358 | decodet.co 1359 | deepdiscount.com 1360 | deepmind.com 1361 | deezer.com 1362 | definebabe.com 1363 | deja.com 1364 | delcamp.net 1365 | delicious.com 1366 | democrats.org 1367 | demo.opera-mini.net 1368 | demosisto.hk 1369 | depositphotos.com 1370 | derekhsu.homeip.net 1371 | de-sci.org 1372 | desc.se 1373 | design.google 1374 | desipro.de 1375 | dessci.com 1376 | destiny.xfiles.to 1377 | destroy-china.jp 1378 | deutsche-welle.de 1379 | developers.box.net 1380 | deviantart.com 1381 | deviantart.net 1382 | devio.us 1383 | devpn.com 1384 | dfas.mil 1385 | dfn.org 1386 | d-fukyu.com 1387 | dharamsalanet.com 1388 | dharmakara.net 1389 | dhcp.biz 1390 | diaoyuislands.org 1391 | dictionary.goo.ne.jp 1392 | difangwenge.org 1393 | digiland.tw 1394 | digisfera.com 1395 | digitalnomadsproject.org 1396 | diigo.com 1397 | dilber.se 1398 | dingchin.com.tw 1399 | dipity.com 1400 | directcreative.com 1401 | discoins.com 1402 | disconnect.me 1403 | discordapp.com 1404 | discordapp.net 1405 | discord.com 1406 | discord.gg 1407 | discuss4u.com 1408 | discuss.com.hk 1409 | dish.com 1410 | disk.yandex.com 1411 | disneyplus.com 1412 | disneyplus.com.ssl.sc.omtrdc.net 1413 | disney-plus.net 1414 | disp.cc 1415 | disqus.com 1416 | dit-inc.us 1417 | dizhidizhi.com 1418 | dizhuzhishang.com 1419 | djangosnippets.org 1420 | djorz.com 1421 | dl.box.net 1422 | dlive.tv 1423 | dl-laby.jp 1424 | dlsite.com 1425 | dlyoutube.com 1426 | dm530.net 1427 | dmcdn.net 1428 | dmc.nico 1429 | dmhy.org 1430 | dmm.co.jp 1431 | dns04.com 1432 | dns05.com 1433 | dns1.us 1434 | dns2go.com 1435 | dns2.us 1436 | dnscrypt.org 1437 | dns-dns.com 1438 | dnset.com 1439 | dns.google 1440 | dnsrd.com 1441 | dnssec.net 1442 | dns-stuff.com 1443 | dnvod.tv 1444 | docs.cfw.lbyczf.com 1445 | doctorvoice.org 1446 | documentingreality.com 1447 | dogfartnetwork.com 1448 | dojin.com 1449 | dok-forum.net 1450 | dolc.de 1451 | dolf.org.hk 1452 | dollf.com 1453 | domain.club.tw 1454 | domainhelp.search.com 1455 | domains.google 1456 | domaintoday.com.au 1457 | dongtaiwang.com 1458 | dongtaiwang.net 1459 | dongyangjing.com 1460 | dontfilter.us 1461 | dontmovetochina.com 1462 | dorjeshugden.com 1463 | dotgov.gov 1464 | dotplane.com 1465 | dotsub.com 1466 | dotvpn.com 1467 | doubibackup.com 1468 | doub.io 1469 | doubmirror.cf 1470 | dougscripts.com 1471 | douhokanko.net 1472 | doujincafe.com 1473 | dowei.org 1474 | download.aircrack-ng.org 1475 | download.cnet.com 1476 | download.ithome.com.tw 1477 | dphk.org 1478 | dpp.org.tw 1479 | dpr.info 1480 | dragonex.io 1481 | dragonsprings.org 1482 | dreamamateurs.com 1483 | drepung.org 1484 | drgan.net 1485 | drmingxia.org 1486 | dronedj.com 1487 | dropbooks.tv 1488 | dropbox.com 1489 | dropboxusercontent.com 1490 | drsunacademy.com 1491 | drtuber.com 1492 | dscn.info 1493 | dsmtp.com 1494 | dssott.com 1495 | dssott.com.akamaized.net 1496 | dstk.dk 1497 | dtdns.net 1498 | dtiblog.com 1499 | dtic.mil 1500 | dtwang.org 1501 | duanzhihu.com 1502 | dubox.com 1503 | duck.com 1504 | duckdns.org 1505 | duckduckgo.com 1506 | duckduckgo-owned-server.yahoo.net 1507 | duckload.com 1508 | duckmylife.com 1509 | duga.jp 1510 | duihuahrjournal.org 1511 | duihua.org 1512 | dumb1.com 1513 | dunyabulteni.net 1514 | duoweitimes.com 1515 | duping.net 1516 | duplicati.com 1517 | dupola.com 1518 | dupola.net 1519 | dushi.ca 1520 | duyaoss.com 1521 | dvdpac.com 1522 | dvorak.org 1523 | dw.com 1524 | dw.de 1525 | dwnews.com 1526 | dwnews.net 1527 | dw-world.com 1528 | dw-world.de 1529 | dynamicdns.biz 1530 | dynamicdns.co.uk 1531 | dynamicdns.me.uk 1532 | dynamic-dns.net 1533 | dynamicdns.org.uk 1534 | dynawebinc.com 1535 | dyndns-ip.com 1536 | dyndns.org 1537 | dyndns-pics.com 1538 | dyndns.pro 1539 | dynssl.com 1540 | dynu.com 1541 | dynu.net 1542 | dynupdate.no-ip.com 1543 | dysfz.cc 1544 | dzze.com 1545 | e123.hk 1546 | earlytibet.com 1547 | earthcam.com 1548 | earthvpn.com 1549 | eastern-ark.com 1550 | easternlightning.org 1551 | eastturkestan.com 1552 | eastturkistancc.org 1553 | eastturkistangovernmentinexile.us 1554 | eastturkistan-gov.org 1555 | eastturkistan.net 1556 | easyca.ca 1557 | easypic.com 1558 | ebony-beauty.com 1559 | ebookbrowse.com 1560 | ebookee.com 1561 | ebook.hyread.com.tw 1562 | ebtcbank.com 1563 | ecfa.org.tw 1564 | echainhost.com 1565 | echofon.com 1566 | ecimg.tw 1567 | e-classical.com.tw 1568 | ecministry.net 1569 | economist.com 1570 | ecsm.vs.com 1571 | ecstart.com 1572 | edgecastcdn.net 1573 | edicypages.com 1574 | edmontonchina.cn 1575 | edmontonservice.com 1576 | edns.biz 1577 | edoors.com 1578 | edubridge.com 1579 | edupro.org 1580 | eeas.europa.eu 1581 | eesti.ee 1582 | eevpn.com 1583 | efcc.org.hk 1584 | effers.com 1585 | efksoft.com 1586 | efreenews.com 1587 | efukt.com 1588 | e-gold.com 1589 | e-hentaidb.com 1590 | e-hentai.org 1591 | eic-av.com 1592 | e-info.org.tw 1593 | eireinikotaerukai.com 1594 | eisbb.com 1595 | eksisozluk.com 1596 | electionsmeter.com 1597 | electrek.co 1598 | elgoog.im 1599 | ellawine.org 1600 | elpais.com 1601 | eltondisney.com 1602 | emaga.com 1603 | emanna.com 1604 | embr.in 1605 | emilylau.org.hk 1606 | empfil.com 1607 | emule-ed2k.com 1608 | emulefans.com 1609 | emuparadise.me 1610 | enanyang.my 1611 | encrypt.me 1612 | encyclopedia.com 1613 | enewstree.com 1614 | enfal.de 1615 | en.favotter.net 1616 | engadget.com 1617 | engagedaily.org 1618 | englishforeveryone.org 1619 | englishfromengland.co.uk 1620 | englishpen.org 1621 | en.hao123.com 1622 | enlighten.org.tw 1623 | entermap.com 1624 | entnt.com 1625 | environment.google 1626 | epac.to 1627 | epa.gov.tw 1628 | episcopalchurch.org 1629 | epochhk.com 1630 | epochtimes-bg.com 1631 | epochtimes.co.il 1632 | epochtimes.co.kr 1633 | epochtimes.com 1634 | epochtimes.cz 1635 | epochtimes.de 1636 | epochtimes.fr 1637 | epochtimes.ie 1638 | epochtimes.it 1639 | epochtimes.jp 1640 | epochtimes-romania.com 1641 | epochtimes.ru 1642 | epochtimes.se 1643 | epochtimestr.com 1644 | epochweek.com 1645 | epochweekly.com 1646 | eporner.com 1647 | equinenow.com 1648 | erabaru.net 1649 | eracom.com.tw 1650 | eraysoft.com.tr 1651 | erepublik.com 1652 | erights.net 1653 | eriversoft.com 1654 | erktv.com 1655 | ernestmandel.org 1656 | erodaizensyu.com 1657 | erodoujinlog.com 1658 | erodoujinworld.com 1659 | eromangadouzin.com 1660 | eromanga-kingdom.com 1661 | eromon.net 1662 | eroprofile.com 1663 | eroticsaloon.net 1664 | esg.t91y.com 1665 | eslite.com 1666 | esmtp.biz 1667 | esu.dog 1668 | esurance.com 1669 | etaa.org.au 1670 | etadult.com 1671 | etaiwannews.com 1672 | etherdelta.com 1673 | etherscan.io 1674 | etizer.org 1675 | etokki.com 1676 | etools.ncol.com 1677 | etowns.net 1678 | etowns.org 1679 | e-traderland.net 1680 | etsy.com 1681 | ettoday.net 1682 | etvonline.hk 1683 | eucasino.com 1684 | eulam.com 1685 | eu.org 1686 | eurekavpt.com 1687 | euronews.com 1688 | evchk.wikia.com 1689 | evchk.wikia.org 1690 | evozi.com 1691 | evschool.net 1692 | exblog.jp 1693 | exchristian.hk 1694 | exhentai.org 1695 | exmo.com 1696 | exmormon.org 1697 | expatshield.com 1698 | expecthim.com 1699 | expekt.com 1700 | experts-univers.com 1701 | exploader.net 1702 | expressvpn.com 1703 | exrates.me 1704 | extmatrix.com 1705 | extrabux.com 1706 | extremetube.com 1707 | exx.com 1708 | eyevio.jp 1709 | eyny.com 1710 | e-zone.com.hk 1711 | ezpc.tk 1712 | ezpeer.com 1713 | ezua.com 1714 | f8.com 1715 | facebook.br 1716 | facebook.com 1717 | facebook.design 1718 | facebook.hu 1719 | facebook.in 1720 | facebookmail.com 1721 | facebook.net 1722 | facebook.nl 1723 | facebookquotes4u.com 1724 | facebook.se 1725 | faceless.me 1726 | facesofnyfw.com 1727 | facesoftibetanselfimmolators.info 1728 | factpedia.org 1729 | fa.gov.tw 1730 | fail.hk 1731 | faith100.org 1732 | faithfuleye.com 1733 | faiththedog.info 1734 | fakku.net 1735 | fallenark.com 1736 | falsefire.com 1737 | falunart.org 1738 | falunasia.info 1739 | falunau.org 1740 | falunaz.net 1741 | falun.caltech.edu 1742 | falun-co.org 1743 | falundafa-dc.org 1744 | falundafa-florida.org 1745 | falundafaindia.org 1746 | falundafamuseum.org 1747 | falundafa-nc.org 1748 | falundafa.org 1749 | falundafa-pa.net 1750 | falundafa-sacramento.org 1751 | falungong.club 1752 | falungong.de 1753 | falungong.org.uk 1754 | falunhr.org 1755 | faluninfo.de 1756 | faluninfo.net 1757 | falun-ny.net 1758 | falunpilipinas.net 1759 | falunworld.net 1760 | familyfed.org 1761 | famunion.com 1762 | fangbinxing.com 1763 | fangeming.com 1764 | fangeqiang.com 1765 | fanglizhi.info 1766 | fangmincn.org 1767 | fangong.forums-free.com 1768 | fangongheike.com 1769 | fangong.org 1770 | fanhaodang.com 1771 | fanhaolou.com 1772 | fan-qiang.com 1773 | fanqiangdang.com 1774 | fanqianghou.com 1775 | fanqiang.network 1776 | fanqiang.tk 1777 | fanqiangyakexi.net 1778 | fanqiangzhe.com 1779 | fanswong.com 1780 | fantv.hk 1781 | fanyue.info 1782 | fapdu.com 1783 | faproxy.com 1784 | faqserv.com 1785 | fartit.com 1786 | farwestchina.com 1787 | fastestvpn.com 1788 | fastpic.ru 1789 | fastssh.com 1790 | faststone.org 1791 | fast.wistia.com 1792 | fatakat-n.club 1793 | fatbtc.com 1794 | favotter.net 1795 | favstar.fm 1796 | fawanghuihui.org 1797 | faydao.com 1798 | faz.net 1799 | fbaddins.com 1800 | fbcdn.net 1801 | fb.com 1802 | fb.me 1803 | fbsbx.com 1804 | fb.watch 1805 | fbworkmail.com 1806 | fc2blog.net 1807 | fc2china.com 1808 | fc2cn.com 1809 | fc2.com 1810 | fc2web.com 1811 | fda.gov.tw 1812 | fdbox.com 1813 | fdc64.de 1814 | fdc64.org 1815 | fdc89.jp 1816 | feedburner.com 1817 | feeder.co 1818 | feedly.com 1819 | feeds.fileforum.com 1820 | feedx.net 1821 | feelssh.com 1822 | feer.com 1823 | feifeiss.com 1824 | feitianacademy.org 1825 | feitian-california.org 1826 | feixiaohao.com 1827 | feministteacher.com 1828 | fengzhenghu.com 1829 | fengzhenghu.net 1830 | fevernet.com 1831 | fffff.at 1832 | ff.im 1833 | fflick.com 1834 | ffvpn.com 1835 | fgmtv.net 1836 | fgmtv.org 1837 | fhreports.net 1838 | fiddle.jshell.net 1839 | figprayer.com 1840 | fileflyer.com 1841 | fileforum.com 1842 | files2me.com 1843 | fileserve.com 1844 | filesor.com 1845 | fillthesquare.org 1846 | filmingfortibet.org 1847 | filmy.olabloga.pl 1848 | filthdump.com 1849 | financetwitter.com 1850 | finchvpn.com 1851 | findbook.tw 1852 | findmespot.com 1853 | findyoutube.com 1854 | findyoutube.net 1855 | fingerdaily.com 1856 | finler.net 1857 | firearmsworld.net 1858 | firebaseio.com 1859 | fireofliberty.org 1860 | firetweet.io 1861 | firstfivefollowers.com 1862 | firstpost.com 1863 | flagsonline.it 1864 | flecheinthepeche.fr 1865 | fleshbot.com 1866 | fleursdeslettres.com 1867 | flgg.us 1868 | flgjustice.org 1869 | flickr.com 1870 | flickrhivemind.net 1871 | flickriver.com 1872 | fling.com 1873 | flipboard.com 1874 | flipkart.com 1875 | flitto.com 1876 | flnet.org 1877 | flog.tw 1878 | flyvpn.com 1879 | flyzy2005.com 1880 | fnac.be 1881 | fnac.com 1882 | fnc.ebc.net.tw 1883 | fochk.org 1884 | focustaiwan.tw 1885 | focusvpn.com 1886 | fofg-europe.net 1887 | fofg.org 1888 | fofldfradio.org 1889 | fontsource.org 1890 | fooooo.com 1891 | footwiball.com 1892 | foreignaffairs.com 1893 | foreignpolicy.com 1894 | forum4hk.com 1895 | forum.baby-kingdom.com 1896 | forum.cyberctm.com 1897 | forum.idsam.com 1898 | forum.my903.com 1899 | forum.mymaji.com 1900 | forum.omy.sg 1901 | forum.palmislife.com 1902 | forum.setty.com.tw 1903 | forum.sina.com.hk 1904 | forum.slime.com.tw 1905 | forum.tvb.com 1906 | forum.xinbao.de 1907 | fotile.me 1908 | fourface.nodesnoop.com 1909 | fourthinternational.org 1910 | foxdie.us 1911 | foxgay.com 1912 | foxnewsplayer-a.akamaihd.net 1913 | foxsub.com 1914 | foxtang.com 1915 | fpmtmexico.org 1916 | fpmt.org 1917 | fpmt-osel.org 1918 | fpmt.tw 1919 | fqok.org 1920 | fqrouter.com 1921 | fq.wikia.com 1922 | franklc.com 1923 | freakshare.com 1924 | free4u.com.ar 1925 | freealim.com 1926 | freebeacon.com 1927 | freebearblog.org 1928 | freebrowser.org 1929 | freechal.com 1930 | freechinaforum.org 1931 | freechina.net 1932 | freechina.news 1933 | freechinaweibo.com 1934 | freeddns.com 1935 | freeddns.org 1936 | freedl.org 1937 | freedomchina.info 1938 | freedomcollection.org 1939 | freedomhongkong.org 1940 | freedomhouse.org 1941 | freedominfonetweb.wordpress.com 1942 | freedomsherald.org 1943 | freeforums.org 1944 | freefq.com 1945 | free.fr 1946 | freefuckvids.com 1947 | freegao.com 1948 | free-gate.org 1949 | free-hada-now.org 1950 | freehongkong.org 1951 | freeilhamtohti.org 1952 | freekazakhs.org 1953 | freekwonpyong.org 1954 | freelotto.com 1955 | freeman2.com 1956 | freemoren.com 1957 | freemorenews.com 1958 | freemuse.org 1959 | freenet-china.org 1960 | freenetproject.org 1961 | freenewscn.com 1962 | freeones.com 1963 | freeopenvpn.com 1964 | freeoz.org 1965 | free-proxy.cz 1966 | freeproxylists.net 1967 | freerk.com 1968 | free-ssh.com 1969 | freessh.us 1970 | free-ss.site 1971 | freetcp.com 1972 | freetibetanheroes.org 1973 | freetibet.net 1974 | freetibet.org 1975 | freetribe.me 1976 | freeviewmovies.com 1977 | freevpn.me 1978 | freevpn.nl 1979 | freewallpaper4.me 1980 | freewebs.com 1981 | freewechat.com 1982 | freeweibo.com 1983 | freewww.biz 1984 | freewww.info 1985 | freexinwen.com 1986 | freeyellow.com 1987 | freeyoutubeproxy.net 1988 | frienddy.com 1989 | friendfeed.com 1990 | friendfeed-media.com 1991 | friendfinder.com 1992 | friends-of-tibet.org 1993 | friendsoftibet.org 1994 | fring.com 1995 | fringenetwork.com 1996 | fromchinatousa.net 1997 | frommel.net 1998 | from-pr.com 1999 | from-sd.com 2000 | frontlinedefenders.org 2001 | frootvpn.com 2002 | fscked.org 2003 | fsurf.com 2004 | ftchinese.com 2005 | ftp1.biz 2006 | ftpserver.biz 2007 | ftv.com.tw 2008 | ftvnews.com.tw 2009 | ftx.com 2010 | fucd.com 2011 | fuckcnnic.net 2012 | fuckgfw.org 2013 | fulione.com 2014 | fullerconsideration.com 2015 | fulue.com 2016 | funf.tw 2017 | funkyimg.com 2018 | funp.com 2019 | fuq.com 2020 | furbo.org 2021 | furhhdl.org 2022 | furinkan.com 2023 | furl.net 2024 | futurechinaforum.org 2025 | futuremessage.org 2026 | fux.com 2027 | fuyindiantai.org 2028 | fuyin.net 2029 | fuyu.org.tw 2030 | fw.cm 2031 | fxcm-chinese.com 2032 | fxnetworks.com 2033 | fzh999.com 2034 | fzh999.net 2035 | fzlm.com 2036 | g0v.social 2037 | g6hentai.com 2038 | gab.com 2039 | gabocorp.com 2040 | gaeproxy.com 2041 | gaforum.org 2042 | gagaoolala.com 2043 | galaxymacau.com 2044 | galenwu.com 2045 | galstars.net 2046 | game735.com 2047 | gamebase.com.tw 2048 | gamejolt.com 2049 | gamer2-cds.cdn.hinet.net 2050 | gamer-cds.cdn.hinet.net 2051 | gamer.com.tw 2052 | gamez.com.tw 2053 | gamme.com.tw 2054 | gamousa.com 2055 | ganges.com 2056 | gaoming.net 2057 | gaopi.net 2058 | gaozhisheng.net 2059 | gaozhisheng.org 2060 | gardennetworks.com 2061 | gardennetworks.org 2062 | g-area.org 2063 | gartlive.com 2064 | gatecoin.com 2065 | gate.io 2066 | gate-project.com 2067 | gather.com 2068 | gatherproxy.com 2069 | gati.org.tw 2070 | gaybubble.com 2071 | gaycn.net 2072 | gayhub.com 2073 | gaymap.cc 2074 | gaymenring.com 2075 | gaytube.com 2076 | gaywatch.com 2077 | gazotube.com 2078 | gcc.org.hk 2079 | gclooney.com 2080 | gclubs.com 2081 | gcmasia.com 2082 | g.co 2083 | gcpnews.com 2084 | gcr.io 2085 | gdaily.org 2086 | gdbt.net 2087 | gdzf.org 2088 | geek-art.net 2089 | geekerhome.com 2090 | geekheart.info 2091 | gekikame.com 2092 | gelbooru.com 2093 | generated.photos 2094 | genius.com 2095 | geocities.co.jp 2096 | geocities.com 2097 | geocities.jp 2098 | geph.io 2099 | gerefoundation.org 2100 | get.app 2101 | getastrill.com 2102 | getchu.com 2103 | getcloak.com 2104 | get.dev 2105 | getfoxyproxy.org 2106 | getfreedur.com 2107 | getgom.com 2108 | get.how 2109 | geti2p.net 2110 | getiton.com 2111 | getjetso.com 2112 | getlantern.org 2113 | getmalus.com 2114 | getmdl.io 2115 | getoutline.org 2116 | get.page 2117 | getsocialscope.com 2118 | getsync.com 2119 | gettr.com 2120 | gettrials.com 2121 | gettyimages.com 2122 | getuploader.com 2123 | gfbv.de 2124 | gfgold.com.hk 2125 | gfsale.com 2126 | gfw.org.ua 2127 | gfw.press 2128 | gfw.report 2129 | ggpht.com 2130 | ggssl.com 2131 | ghanely.me 2132 | ghidra-sre.org 2133 | ghostpath.com 2134 | ghut.org 2135 | giantessnight.com 2136 | gifree.com 2137 | gigacircle.com 2138 | giganews.com 2139 | giga-web.jp 2140 | gigporno.ru 2141 | girlbanker.com 2142 | gist.github.com 2143 | gitbooks.io 2144 | githubassets.com 2145 | github.blog 2146 | github.com 2147 | github.io 2148 | githubmemory.com 2149 | githubusercontent.com 2150 | git.io 2151 | gitmemory.com 2152 | gizlen.net 2153 | gjczz.com 2154 | g.kfd.me 2155 | glass8.eu 2156 | global.bing.com 2157 | globaljihad.net 2158 | globalmediaoutreach.com 2159 | globalmuseumoncommunism.org 2160 | globalrescue.net 2161 | globaltm.org 2162 | globalvoicesonline.org 2163 | globalvoices.org 2164 | globalvpn.net 2165 | glock.com 2166 | gloryhole.com 2167 | glorystar.me 2168 | gluckman.com 2169 | glype.com 2170 | gmail.com 2171 | gmbd.cn 2172 | gmgard.com 2173 | gmhz.org 2174 | gmiddle.com 2175 | gmiddle.net 2176 | gmll.org 2177 | gmodules.com 2178 | gmozomg.izihost.org 2179 | gnci.org.hk 2180 | gnews.org 2181 | go141.com 2182 | goagent.biz 2183 | goagent.codeplex.com 2184 | goagentplus.com 2185 | gobet.cc 2186 | godfootsteps.org 2187 | godns.work 2188 | godoc.org 2189 | godsdirectcontact.co.uk 2190 | godsdirectcontact.org 2191 | godsdirectcontact.org.tw 2192 | godsimmediatecontact.com 2193 | gofundme.com 2194 | gogotunnel.com 2195 | gohappy.com.tw 2196 | gojet.krtco.com.tw 2197 | gokbayrak.com 2198 | golang.org 2199 | goldbet.com 2200 | goldbetsports.com 2201 | golden-ages.org 2202 | goldeneyevault.com 2203 | goldenfrog.com 2204 | goldjizz.com 2205 | goldstep.net 2206 | goldwave.com 2207 | goliathguitartutorials.com 2208 | go.nesnode.com 2209 | gongmeng.info 2210 | gongm.in 2211 | gongminliliang.com 2212 | gongwt.com 2213 | gooday.xyz 2214 | gooddns.info 2215 | goodhope.school 2216 | goodreaders.com 2217 | goodreads.com 2218 | goodtv.com.tw 2219 | goodtv.tv 2220 | goofind.com 2221 | goo.gl 2222 | goo.gle 2223 | google.ac 2224 | google.ad 2225 | google.ae 2226 | google.al 2227 | google.am 2228 | google-analytics.com 2229 | googleanalytics.com 2230 | googleapis.cn 2231 | googleapis.com 2232 | googleapps.com 2233 | googlearth.com 2234 | googleartproject.com 2235 | google.as 2236 | google.at 2237 | google.az 2238 | google.ba 2239 | google.be 2240 | google.bf 2241 | google.bg 2242 | google.bi 2243 | google.bj 2244 | googleblog.com 2245 | googlebot.com 2246 | google.bs 2247 | google.bt 2248 | google.by 2249 | google.ca 2250 | google.calstate.edu 2251 | google.cat 2252 | google.cc 2253 | google.cd 2254 | google.cf 2255 | google.cg 2256 | google.ch 2257 | googlechinawebmaster.com 2258 | google.ci 2259 | google.cl 2260 | google.cm 2261 | google.cn 2262 | google.co.ao 2263 | google.co.bw 2264 | google.co.ck 2265 | google.co.cr 2266 | googlecode.com 2267 | google.co.id 2268 | google.co.il 2269 | google.co.in 2270 | google.co.jp 2271 | google.co.ke 2272 | google.co.kr 2273 | google.co.ls 2274 | google.com 2275 | google.co.ma 2276 | google.com.af 2277 | google.com.ag 2278 | google.com.ai 2279 | google.com.ao 2280 | google.com.ar 2281 | google.com.au 2282 | google.com.bd 2283 | google.com.bh 2284 | google.com.bn 2285 | google.com.bo 2286 | google.com.br 2287 | google.com.bw 2288 | google.com.bz 2289 | google.com.ck 2290 | google.com.co 2291 | google.com.cr 2292 | google.com.cu 2293 | google.com.cy 2294 | google.com.do 2295 | google.com.ec 2296 | google.com.eg 2297 | google.com.et 2298 | google.com.fj 2299 | google.com.gh 2300 | google.com.gi 2301 | google.com.gt 2302 | google.com.hk 2303 | google.com.id 2304 | google.com.il 2305 | google.com.in 2306 | google.com.iq 2307 | google.com.it 2308 | google.com.jm 2309 | google.com.jp 2310 | google.com.ke 2311 | google.com.kh 2312 | google.com.kr 2313 | google.com.kw 2314 | google.com.lb 2315 | google.com.lc 2316 | google.com.ls 2317 | google.com.ly 2318 | google.com.ma 2319 | googlecommerce.com 2320 | google.com.mm 2321 | google.com.mt 2322 | google.com.mx 2323 | google.com.my 2324 | google.com.mz 2325 | google.com.na 2326 | google.com.nf 2327 | google.com.ng 2328 | google.com.ni 2329 | google.com.np 2330 | google.com.nz 2331 | google.com.om 2332 | google.com.pa 2333 | google.com.pe 2334 | google.com.pg 2335 | google.com.ph 2336 | google.com.pk 2337 | google.com.pr 2338 | google.com.py 2339 | google.com.qa 2340 | google.com.sa 2341 | google.com.sb 2342 | google.com.sg 2343 | google.com.sl 2344 | google.com.sv 2345 | google.com.th 2346 | google.com.tj 2347 | google.com.tn 2348 | google.com.tr 2349 | google.com.tw 2350 | google.com.tz 2351 | google.com.ua 2352 | google.com.ug 2353 | google.com.uk 2354 | google.com.uy 2355 | google.com.uz 2356 | google.com.vc 2357 | google.com.ve 2358 | google.com.vi 2359 | google.com.vn 2360 | google.co.mz 2361 | google.com.za 2362 | google.com.zm 2363 | google.com.zw 2364 | google.co.nz 2365 | google.co.th 2366 | google.co.tz 2367 | google.co.ug 2368 | google.co.uk 2369 | google.co.uz 2370 | google.co.ve 2371 | google.co.vi 2372 | google.co.za 2373 | google.co.zm 2374 | google.co.zw 2375 | google.cv 2376 | google.cz 2377 | google.de 2378 | google.dev 2379 | google.dj 2380 | google.dk 2381 | google.dm 2382 | googledomains.com 2383 | googledrive.com 2384 | google.dz 2385 | googleearth.com 2386 | google.ee 2387 | google.es 2388 | google.fi 2389 | googlefiber.net 2390 | google.fm 2391 | google.fr 2392 | google.ga 2393 | google.ge 2394 | google.gf 2395 | google.gg 2396 | google.gl 2397 | google.gm 2398 | google.gp 2399 | google.gr 2400 | googlegroups.com 2401 | google.gy 2402 | google.hn 2403 | googlehosted.com 2404 | google.hr 2405 | google.ht 2406 | google.hu 2407 | googleideas.com 2408 | google.ie 2409 | google.im 2410 | googleinsidesearch.com 2411 | google.io 2412 | google.iq 2413 | google.is 2414 | google.it 2415 | google.je 2416 | google.jo 2417 | google.jp 2418 | google.kg 2419 | google.ki 2420 | google.kz 2421 | google.la 2422 | googlelabs.com 2423 | google.li 2424 | google.lk 2425 | google.lt 2426 | google.lu 2427 | google.lv 2428 | googlemail.com 2429 | googlemashups.com 2430 | google.md 2431 | google.me 2432 | google.mg 2433 | google.mk 2434 | google.ml 2435 | google.mn 2436 | google.ms 2437 | google.mu 2438 | google.mv 2439 | google.mw 2440 | google.ne 2441 | google.net 2442 | google.ng 2443 | google.nl 2444 | google.no 2445 | google.nr 2446 | google.nu 2447 | google.org 2448 | googlepagecreator.com 2449 | google.ph 2450 | google.pl 2451 | googleplay.com 2452 | googleplus.com 2453 | google.pn 2454 | google.ps 2455 | google.pt 2456 | google.ro 2457 | google.rs 2458 | google.ru 2459 | google.rw 2460 | google.sc 2461 | googlescholar.com 2462 | googlescholar.comUSA 2463 | google.se 2464 | google.sg 2465 | google.sh 2466 | google.si 2467 | googlesile.com 2468 | google.sk 2469 | google.sm 2470 | google.sn 2471 | google.so 2472 | googlesource.com 2473 | google.sr 2474 | google.st 2475 | googlesyndication.com 2476 | google.td 2477 | google.tg 2478 | google.tk 2479 | google.tl 2480 | google.tm 2481 | google.tn 2482 | google.to 2483 | google.tt 2484 | google.uk 2485 | googleusercontent.com 2486 | google.vg 2487 | googlevideo.com 2488 | google.vu 2489 | googleweblight.com 2490 | google.ws 2491 | googlezip.net 2492 | goo.ne.jp 2493 | gopetition.com 2494 | go-pki.com 2495 | goproxing.net 2496 | goreforum.com 2497 | goregrish.com 2498 | go.sony.com 2499 | gospelherald.com 2500 | gotdns.ch 2501 | got-game.org 2502 | gotgeeks.com 2503 | gotrusted.com 2504 | gotw.ca 2505 | gov.taipei 2506 | gov.tw 2507 | g-queen.com 2508 | gr8domain.biz 2509 | gr8name.biz 2510 | grammaly.com 2511 | grandtrial.org 2512 | grangorz.org 2513 | graphis.ne.jp 2514 | graphql.org 2515 | gravatar.com 2516 | greasespot.net 2517 | greatfire.org 2518 | greatfire.us7.list-manage.com 2519 | greatfirewall.biz 2520 | great-firewall.com 2521 | greatfirewallofchina.net 2522 | greatfirewallofchina.org 2523 | great-roc.org 2524 | greatroc.org 2525 | greatroc.tw 2526 | greatzhonghua.org 2527 | greenfieldbookstore.com.hk 2528 | greenparty.org.tw 2529 | greenpeace.com.tw 2530 | greenpeace.org 2531 | greenreadings.com 2532 | greenvpn.net 2533 | greenvpn.org 2534 | grotty-monday.com 2535 | groups.google.cn 2536 | grow.google 2537 | gs-discuss.com 2538 | gsearch.media 2539 | gsp.target.com 2540 | gstatic.com 2541 | gtricks.com 2542 | gts-vpn.com 2543 | gtv1.org 2544 | gtv.org 2545 | guaguass.com 2546 | guaguass.org 2547 | guancha.org 2548 | guaneryu.com 2549 | guangming.com.my 2550 | guangnianvpn.com 2551 | guardster.com 2552 | gu-chu-sum.org 2553 | guishan.org 2554 | gumroad.com 2555 | gunsamerica.com 2556 | gunsandammo.com 2557 | gun-world.net 2558 | guo.media 2559 | guruonline.hk 2560 | gutteruncensored.com 2561 | gvlib.com 2562 | gvm.com.tw 2563 | gvt0.com 2564 | gvt1.com 2565 | gvt3.com 2566 | gwins.org 2567 | gwtproject.org 2568 | gyalwarinpoche.com 2569 | gyatsostudio.com 2570 | gzm.tv 2571 | gzone-anime.info 2572 | h1n1china.org 2573 | h528.com 2574 | h5dm.com 2575 | h5galgame.me 2576 | hacg.club 2577 | hacg.in 2578 | hacg.li 2579 | hacg.me 2580 | hacg.red 2581 | hacken.cc 2582 | hacker.org 2583 | hackmd.io 2584 | hackthatphone.net 2585 | hahlo.com 2586 | hakkatv.org.tw 2587 | handcraftedsoftware.org 2588 | hanime.tv 2589 | hanunyi.com 2590 | hao.news 2591 | happy-vpn.com 2592 | haproxy.org 2593 | hardsextube.com 2594 | harunyahya.com 2595 | hautelookcdn.com 2596 | hautelook.com 2597 | have8.com 2598 | hbg.com 2599 | hbo.com 2600 | hcaptcha.com 2601 | h-china.org 2602 | hclips.com 2603 | hdlt.me 2604 | hdsky.me 2605 | hd.stheadline.com 2606 | hdtvb.net 2607 | hdzog.com 2608 | heartyit.com 2609 | heavy-r.com 2610 | hecaitou.net 2611 | hechaji.com 2612 | hec.su 2613 | heeact.edu.tw 2614 | hegre-art.com 2615 | heix.pp.ru 2616 | helloandroid.com 2617 | helloavgirls.com 2618 | helloqueer.com 2619 | helloss.pw 2620 | hellotxt.com 2621 | hellouk.org 2622 | helpeachpeople.com 2623 | helplinfen.com 2624 | help.linksalpha.com 2625 | helpster.de 2626 | helpuyghursnow.org 2627 | helpzhuling.org 2628 | hentai.to 2629 | hentaitube.tv 2630 | hentaivideoworld.com 2631 | heqinglian.net 2632 | heritage.org 2633 | heungkongdiscuss.com 2634 | hexieshe.com 2635 | hexieshe.xyz 2636 | hexxeh.net 2637 | heyuedi.com 2638 | heyzo.com 2639 | hgseav.com 2640 | hhdcb3office.org 2641 | hhthesakyatrizin.org 2642 | hidden-advent.org 2643 | hidecloud.com 2644 | hidein.net 2645 | hideipvpn.com 2646 | hideman.net 2647 | hide.me 2648 | hideme.nl 2649 | hidemyass.com 2650 | hidemycomp.com 2651 | hidemy.name 2652 | higfw.com 2653 | highpeakspureearth.com 2654 | highrockmedia.com 2655 | hihiforum.com 2656 | hihistory.net 2657 | hiitch.com 2658 | hikinggfw.org 2659 | hilive.tv 2660 | himalayan-foundation.org 2661 | himalayanglacier.com 2662 | himemix.com 2663 | himemix.net 2664 | hi-on.org.tw 2665 | hitbtc.com 2666 | hitomi.la 2667 | hiwifi.com 2668 | hizb-ut-tahrir.info 2669 | hizb-ut-tahrir.org 2670 | hizbuttahrir.org 2671 | hjclub.info 2672 | hjd2048.com 2673 | hk01.com 2674 | hk32168.com 2675 | hka8964.wordpress.com 2676 | hkacg.com 2677 | hkacg.net 2678 | hkanews.wordpress.com 2679 | hkatvnews.com 2680 | hkbc.net 2681 | hkbf.org 2682 | hkbookcity.com 2683 | hkchronicles.com 2684 | hkchurch.org 2685 | hkci.org.hk 2686 | hkcmi.edu 2687 | hkcnews.com 2688 | hkcoc.com 2689 | hkcoc.weather.com.hk 2690 | hkctu.org.hk 2691 | hkdailynews.com.hk 2692 | hkday.net 2693 | hkdc.us 2694 | hkdf.org 2695 | hkej.com 2696 | hkepc.com 2697 | hket.com 2698 | hkfaa.com 2699 | hkfreezone.com 2700 | hk.frienddy.com 2701 | hkfront.org 2702 | hkgalden.com 2703 | hk.geocities.com 2704 | hkgolden.com 2705 | hkgpao.com 2706 | hk.gradconnection.com 2707 | hkgreenradio.org 2708 | hk.hao123img.com 2709 | hkheadline.com 2710 | hkhkhk.com 2711 | hkhrc.org.hk 2712 | hkhrm.org.hk 2713 | hkip.org.uk 2714 | hkjc.com 2715 | hk.jiepang.com 2716 | hkjp.org 2717 | hk.knowledge.yahoo.com 2718 | hklft.com 2719 | hklts.org.hk 2720 | hkmap.live 2721 | hk.myblog.yahoo.com 2722 | hk.news.yahoo.com 2723 | hkopentv.com 2724 | hkpeanut.com 2725 | hkptu.org 2726 | hk-pub.com 2727 | hk.rd.yahoo.com 2728 | hkreporter.com 2729 | hkreporter.loved.hk 2730 | hk.search.yahoo.com 2731 | hku.hk 2732 | hkupop.hku.hk 2733 | hkusu.net 2734 | hk.video.news.yahoo.com 2735 | hkvwet.com 2736 | hkwcc.org.hk 2737 | hk.yahoo.com 2738 | hkzone.org 2739 | h-moe.com 2740 | hmonghot.com 2741 | hmv.co.jp 2742 | hmvdigital.ca 2743 | hmvdigital.com 2744 | hnjhj.com 2745 | hnntube.com 2746 | hojemacau.com.mo 2747 | hola.com 2748 | hola.org 2749 | holymountaincn.com 2750 | holyspiritspeaks.org 2751 | homedepot.com 2752 | homeperversion.com 2753 | homeservershow.com 2754 | home.sina.com 2755 | home.so-net.net.tw 2756 | hongkong.fandom.com 2757 | hongkongfp.com 2758 | hongmeimei.com 2759 | hongzhi.li 2760 | honven.xyz 2761 | hootsuite.com 2762 | hoover.org 2763 | hoovers.com 2764 | hopedialogue.org 2765 | hopto.org 2766 | hornygamer.com 2767 | hornytrip.com 2768 | horrorporn.com 2769 | hostloc.com 2770 | hotair.com 2771 | hotav.tv 2772 | hotels.cn 2773 | hotfrog.com.tw 2774 | hotgoo.com 2775 | hotpornshow.com 2776 | hotpot.hk 2777 | hotshame.com 2778 | hotspotshield.com 2779 | hottg.com 2780 | hotvpn.com 2781 | hougaige.com 2782 | howtoforge.com 2783 | hoxx.com 2784 | hpa.gov.tw 2785 | hqcdp.org 2786 | hqjapanesesex.com 2787 | hqmovies.com 2788 | hqsbnet.wordpress.com 2789 | hqsbonline.wordpress.com 2790 | hrcchina.org 2791 | hrcir.com 2792 | hrea.org 2793 | hrichina.org 2794 | hrtsea.com 2795 | hrweb.org 2796 | hrw.org 2797 | hsjp.net 2798 | hsselite.com 2799 | hstern.net 2800 | hst.net.tw 2801 | hstt.net 2802 | htkou.net 2803 | htl.li 2804 | ht.ly 2805 | html5rocks.com 2806 | https443.net 2807 | https443.org 2808 | huaglad.com 2809 | huanghuagang.org 2810 | huangyiyu.com 2811 | huaren4us.com 2812 | huaren.us 2813 | huashangnews.com 2814 | huaxiabao.org 2815 | huaxia-news.com 2816 | huaxin.ph 2817 | hua-yue.net 2818 | huayuworld.org 2819 | hudatoriq.web.id 2820 | hudson.org 2821 | huffingtonpost.com 2822 | hugoroy.eu 2823 | huhaitai.com 2824 | huhamhire.com 2825 | huhangfei.com 2826 | huiyi.in 2827 | hulkshare.com 2828 | hulu.com 2829 | huluim.com 2830 | humanrightsbriefing.org 2831 | hungerstrikeforaids.org 2832 | hung-ya.com 2833 | huobi.co 2834 | huobi.com 2835 | huobi.me 2836 | huobi.pro 2837 | huobipro.com 2838 | huobi.sc 2839 | huping.net 2840 | hurgokbayrak.com 2841 | hurriyet.com.tr 2842 | hustlercash.com 2843 | hut2.ru 2844 | hutianyi.net 2845 | hutong9.net 2846 | huyandex.com 2847 | hwadzan.tw 2848 | hwayue.org.tw 2849 | hwinfo.com 2850 | hxwk.org 2851 | hxwq.org 2852 | hybrid-analysis.com 2853 | hyperrate.com 2854 | i1.hk 2855 | i2p2.de 2856 | i2runner.com 2857 | i818hk.com 2858 | iam.soy 2859 | iamtopone.com 2860 | iask.bz 2861 | iask.ca 2862 | iav19.com 2863 | ibiblio.org 2864 | ibit.am 2865 | iblist.com 2866 | iblogserv-f.net 2867 | ibros.org 2868 | ibvpn.com 2869 | ibytedtos.com 2870 | i-cable.com 2871 | icams.com 2872 | ice.audionow.com 2873 | icfcdn.com 2874 | icij.org 2875 | icl-fi.org 2876 | icoco.com 2877 | iconpaper.org 2878 | icu-project.org 2879 | iddddg.com 2880 | idemocracy.asia 2881 | identi.ca 2882 | id.hao123.com 2883 | id.heroku.com 2884 | idiomconnection.com 2885 | idouga.com 2886 | idreamx.com 2887 | idv.tw 2888 | ieasy5.com 2889 | ied2k.net 2890 | ienergy1.com 2891 | iepl.us 2892 | ifan.cz.cc 2893 | ifanqiang.com 2894 | ifcss.org 2895 | ifjc.org 2896 | ifreewares.com 2897 | if.ttt 2898 | ift.tt 2899 | igcd.net 2900 | igfw.net 2901 | igfw.tech 2902 | igmg.de 2903 | ignitedetroit.net 2904 | igoogle.com 2905 | igotmail.com.tw 2906 | igvita.com 2907 | ihakka.net 2908 | ihao.org 2909 | iicns.com 2910 | iipdigital.usembassy.gov 2911 | ikstar.com 2912 | ikwb.com 2913 | ilbe.com 2914 | ilhamtohtiinstitute.org 2915 | i.lithium.com 2916 | illusionfactory.com 2917 | ilove80.be 2918 | ilovelongtoes.com 2919 | im88.tw 2920 | imageab.com 2921 | imagefap.com 2922 | imageflea.com 2923 | images.comico.tw 2924 | images-gaytube.com 2925 | imageshack.us 2926 | imagevenue.com 2927 | imagezilla.net 2928 | imb.org 2929 | imdb.com 2930 | imgchili.net 2931 | img.dlsite.jp 2932 | img.ly 2933 | imgmega.com 2934 | imgur.com 2935 | imkev.com 2936 | imlive.com 2937 | immigration.gov.tw 2938 | immoral.jp 2939 | impact.org.au 2940 | impp.mn 2941 | im.tv 2942 | in99.org 2943 | incapdns.net 2944 | incloak.com 2945 | incredibox.fr 2946 | independent.co.uk 2947 | indiablooms.com 2948 | indianarrative.com 2949 | indiandefensenews.in 2950 | indiatimes.com 2951 | indiemerch.com 2952 | in-disguise.com 2953 | indsr.org.tw 2954 | info-graf.fr 2955 | initiativesforchina.org 2956 | inkui.com 2957 | inmediahk.net 2958 | innermongolia.org 2959 | inoreader.com 2960 | inote.tw 2961 | insecam.org 2962 | inside.com.tw 2963 | insidevoa.com 2964 | instagram.com 2965 | instanthq.com 2966 | institut-tibetain.org 2967 | international-news.newsmagazine.asia 2968 | internetdefenseleague.org 2969 | internetfreedom.org 2970 | internet.org 2971 | internetpopculture.com 2972 | inthenameofconfuciusmovie.com 2973 | investigating.wordpress.com 2974 | inxian.com 2975 | iownyour.biz 2976 | iownyour.org 2977 | ipalter.com 2978 | i-part.com.tw 2979 | ipfire.org 2980 | ipfs.io 2981 | iphone4hongkong.com 2982 | iphonehacks.com 2983 | iphonetaiwan.org 2984 | iphonix.fr 2985 | ipicture.ru 2986 | ipinfo.io 2987 | ipjetable.net 2988 | ipobar.com 2989 | ipoock.com 2990 | iportal.me 2991 | ippotv.com 2992 | ipredator.se 2993 | iptvbin.com 2994 | iptv.com.tw 2995 | ipvanish.com 2996 | iredmail.org 2997 | ironbigfools.compython.net 2998 | ironpython.net 2999 | ironsocket.com 3000 | isaacmao.com 3001 | is-a-hunter.com 3002 | isasecret.com 3003 | i-scmp.com 3004 | isc.sans.edu 3005 | is.gd 3006 | isgreat.org 3007 | islahhaber.net 3008 | islamawareness.net 3009 | islamhouse.com 3010 | islamicity.com 3011 | islamicpluralism.org 3012 | islam.org.hk 3013 | islamtoday.net 3014 | ismaelan.com 3015 | ismalltits.com 3016 | ismprofessional.net 3017 | isohunt.com 3018 | israbox.com 3019 | issuu.com 3020 | istars.co.nz 3021 | istiqlalhewer.com 3022 | istockphoto.com 3023 | isunaffairs.com 3024 | isuntv.com 3025 | isupportuyghurs.org 3026 | itaboo.info 3027 | itaiwan.gov.tw 3028 | italiatibet.org 3029 | itasoftware.com 3030 | itemdb.com 3031 | ithelp.ithome.com.tw 3032 | itsaol.com 3033 | its.caltech.edu 3034 | itshidden.com 3035 | itsky.it 3036 | itweet.net 3037 | iu45.com 3038 | iuhrdf.org 3039 | iuksky.com 3040 | ivacy.com 3041 | iverycd.com 3042 | ivpn.net 3043 | ixquick.com 3044 | ixxx.com 3045 | iyouport.com 3046 | iyouport.org 3047 | izaobao.us 3048 | izlesem.org 3049 | izles.net 3050 | jable.tv 3051 | jamaat.org 3052 | jamestown.org 3053 | jamyangnorbu.com 3054 | jandyx.com 3055 | janwongphoto.com 3056 | japanfirst.asianfreeforum.com 3057 | japantimes.co.jp 3058 | japan-whores.com 3059 | jav101.com 3060 | jav2be.com 3061 | jav68.tv 3062 | jav777.cc 3063 | javakiba.org 3064 | javbus.co 3065 | javbus.com 3066 | jav.com 3067 | javdb.com 3068 | javfor.me 3069 | javfree.me 3070 | javhd.com 3071 | javhip.com 3072 | javhub.net 3073 | javhuge.com 3074 | javlibrary.com 3075 | javmobile.net 3076 | javmoo.com 3077 | javmoo.xyz 3078 | javseen.com 3079 | javtag.com 3080 | javzoo.com 3081 | javzz.com 3082 | ja.wikipedia.org 3083 | jbtalks.cc 3084 | jbtalks.com 3085 | jbtalks.my 3086 | jcpenney.com 3087 | jdwsy.com 3088 | jeanyim.com 3089 | jetos.com 3090 | jex.com 3091 | jfqu36.club 3092 | jfqu37.xyz 3093 | jgoodies.com 3094 | jiangweiping.com 3095 | jiaoyou8.com 3096 | jiehua.cz 3097 | jieshibaobao.com 3098 | jigglegifs.com 3099 | jigong1024.com 3100 | jihadintel.meforum.org 3101 | jihadology.net 3102 | jiji.com 3103 | jims.net 3104 | jinbushe.org 3105 | jingpin.org 3106 | jingsim.org 3107 | jinpianwang.com 3108 | jinroukong.com 3109 | jintian.net 3110 | jinx.com 3111 | jitouch.com 3112 | jizzthis.com 3113 | jjgirls.com 3114 | jkb.cc 3115 | jkforum.net 3116 | jkub.com 3117 | jma.go.jp 3118 | j.mp 3119 | jmscult.com 3120 | joachims.org 3121 | jobnewera.wordpress.com 3122 | jobso.tv 3123 | joinclubhouse.com 3124 | joinmastodon.org 3125 | journalchretien.net 3126 | journalofdemocracy.org 3127 | joymiihub.com 3128 | joyourself.com 3129 | jp.hao123.com 3130 | jpl.nasa.gov 3131 | jpopforum.net 3132 | jqueryui.com 3133 | jtvnw.net 3134 | jubushoushen.com 3135 | juhuaren.com 3136 | jukujo-club.com 3137 | juliepost.com 3138 | juliereyc.com 3139 | junauza.com 3140 | june4commemoration.org 3141 | junefourth-20.net 3142 | jungleheart.com 3143 | juoaa.com 3144 | justdied.com 3145 | justfreevpn.com 3146 | justicefortenzin.org 3147 | justmysocks1.net 3148 | justmysocks.net 3149 | justpaste.it 3150 | justtristan.com 3151 | juyuange.org 3152 | juziyue.com 3153 | jwmusic.org 3154 | jyxf.net 3155 | kadokawa.co.jp 3156 | kagyumonlam.org 3157 | kagyunews.com.hk 3158 | kagyuoffice.org 3159 | kagyuoffice.org.tw 3160 | kagyu.org 3161 | kagyu.org.za 3162 | kaiyuan.de 3163 | kakao.com 3164 | kalachakralugano.org 3165 | kankan.today 3166 | kannewyork.com 3167 | kanshifang.com 3168 | kantie.org 3169 | kanzhongguo.com 3170 | kanzhongguo.eu 3171 | kaotic.com 3172 | karayou.com 3173 | karkhung.com 3174 | karmapa.org 3175 | karmapa-teachings.org 3176 | ka-wai.com 3177 | kawaiikawaii.jp 3178 | kawase.com 3179 | kba-tx.org 3180 | kb.monitorware.com 3181 | kcoolonline.com 3182 | k-doujin.net 3183 | kebrum.com 3184 | kechara.com 3185 | keepandshare.com 3186 | keezmovies.com 3187 | kendatire.com 3188 | kendincos.net 3189 | kenengba.com 3190 | keontech.net 3191 | kepard.com 3192 | kex.com 3193 | keycdn.com 3194 | khabdha.org 3195 | khatrimaza.org 3196 | khmusic.com.tw 3197 | kichiku-doujinko.com 3198 | kik.com 3199 | killwall.com 3200 | kindleren.com 3201 | kineox.free.fr 3202 | kingdomsalvation.org 3203 | kinghost.com 3204 | kingkong.com.tw 3205 | kingstone.com.tw 3206 | kink.com 3207 | kinmen.org.tw 3208 | kinmen.travel 3209 | kinokuniya.com 3210 | kir.jp 3211 | kissbbao.cn 3212 | kissjav.com 3213 | kiwi.kz 3214 | kkbox.com 3215 | kknews.cc 3216 | kk-whys.co.jp 3217 | kmuh.org.tw 3218 | knowledgerush.com 3219 | knowledge.yahoo.com 3220 | knowyourmeme.com 3221 | kobobooks.com 3222 | kobo.com 3223 | kodingen.com 3224 | kompozer.net 3225 | konachan.com 3226 | kone.com 3227 | koolsolutions.com 3228 | koornk.com 3229 | koranmandarin.com 3230 | korea.net 3231 | korenan2.com 3232 | kqes.net 3233 | krtco.com.tw 3234 | ksdl.org 3235 | ksnews.com.tw 3236 | kspcoin.com 3237 | ktzhk.com 3238 | kucoin.com 3239 | kui.name 3240 | kukuku.uk 3241 | kun.im 3242 | kurashsultan.com 3243 | kurtmunger.com 3244 | kusocity.com 3245 | kwcg.ca 3246 | kwok7.com 3247 | kwongwah.com.my 3248 | kxsw.life 3249 | kyofun.com 3250 | kyohk.net 3251 | kyoyue.com 3252 | kyzyhello.com 3253 | kzeng.info 3254 | labiennale.org 3255 | lab.skk.moe 3256 | ladbrokes.com 3257 | la-forum.org 3258 | lagranepoca.com 3259 | lala.im 3260 | lalulalu.com 3261 | lama.com.tw 3262 | lamayeshe.com 3263 | lamnia.co.uk 3264 | lamrim.com 3265 | landofhope.tv 3266 | lanterncn.cn 3267 | lantosfoundation.org 3268 | laod.cn 3269 | laogai.org 3270 | laogairesearch.org 3271 | laomiu.com 3272 | laoyang.info 3273 | laptoplockdown.com 3274 | laqingdan.net 3275 | larsgeorge.com 3276 | lastcombat.com 3277 | lastfm.es 3278 | latelinenews.com 3279 | latibet.org 3280 | lausan.hk 3281 | lbank.info 3282 | ld.hao123img.com 3283 | leafyvpn.net 3284 | lecloud.net 3285 | leeao.com.cn 3286 | lefora.com 3287 | left21.hk 3288 | legalporno.com 3289 | legaltech.law.com 3290 | legsjapan.com 3291 | leirentv.ca 3292 | leisurecafe.ca 3293 | leisurepro.com 3294 | lematin.ch 3295 | lemonde.fr 3296 | lenwhite.com 3297 | leorockwell.com 3298 | lerosua.org 3299 | lers.google 3300 | lesoir.be 3301 | letou.com 3302 | letscorp.net 3303 | le-vpn.com 3304 | lflink.com 3305 | lflinkup.com 3306 | lflinkup.net 3307 | lflinkup.org 3308 | lhakar.org 3309 | lhasocialwork.org 3310 | liangyou.net 3311 | liangzhichuanmei.com 3312 | lianyue.net 3313 | liaowangxizang.net 3314 | liberal.org.hk 3315 | libertytimes.com.tw 3316 | library.usc.cuhk.edu.hk 3317 | lidecheng.com 3318 | lifemiles.com 3319 | lighten.org.tw 3320 | lighti.me 3321 | lightnovel.cn 3322 | lightyearvpn.com 3323 | lih.kg 3324 | lihkg.com 3325 | like.com 3326 | limbopro.xyz 3327 | limiao.net 3328 | line-apps.com 3329 | linear-abematv.akamaized.net 3330 | line.me 3331 | line.naver.jp 3332 | line-scdn.net 3333 | linglingfa.com 3334 | lingvodics.com 3335 | linkideo.com 3336 | link-o-rama.com 3337 | linkuswell.com 3338 | linux.org.hk 3339 | linuxtoy.org 3340 | lionsroar.com 3341 | lipuman.com 3342 | liquidvpn.com 3343 | listennotes.com 3344 | listentoyoutube.com 3345 | listorious.com 3346 | lists.w3.org 3347 | liudejun.com 3348 | liuhanyu.com 3349 | liujianshu.com 3350 | liuxiaobo.net 3351 | liu-xiaobo.org 3352 | liuxiaotong.com 3353 | livecoin.net 3354 | livedoor.jp 3355 | liveleak.com 3356 | livemint.com 3357 | livestation.com 3358 | livestream.com 3359 | livevideo.com 3360 | livingonline.us 3361 | livingstream.com 3362 | liwangyang.com 3363 | lizhizhuangbi.com 3364 | lkcn.net 3365 | llss.me 3366 | lncn.org 3367 | load.to 3368 | lobsangwangyal.com 3369 | localbitcoins.com 3370 | localdomain.ws 3371 | localpresshk.com 3372 | lockestek.com 3373 | logbot.net 3374 | login.target.com 3375 | logiqx.com 3376 | logos.com.hk 3377 | londonchinese.ca 3378 | longhair.hk 3379 | longmusic.com 3380 | longtermly.net 3381 | longtoes.com 3382 | lookpic.com 3383 | looktoronto.com 3384 | lotsawahouse.org 3385 | lotuslight.org.hk 3386 | lotuslight.org.tw 3387 | loved.hk 3388 | lovetvshow.com 3389 | lpsg.com 3390 | lrfz.com 3391 | lrip.org 3392 | lsd.org.hk 3393 | lsforum.net 3394 | lsmchinese.org 3395 | lsmkorean.org 3396 | lsm.org 3397 | lsmradio.com 3398 | lsmwebcast.com 3399 | lsxszzg.com 3400 | ltn.com.tw 3401 | luckydesigner.space 3402 | luke54.com 3403 | luke54.org 3404 | lupm.org 3405 | lushstories.com 3406 | luxebc.com 3407 | lvhai.org 3408 | lvv2.com 3409 | lyfhk.net 3410 | lzjscript.com 3411 | lzmtnews.org 3412 | m8008.com 3413 | macgamestore.com 3414 | macrovpn.com 3415 | macts.com.tw 3416 | mad-ar.ch 3417 | madewithcode.com 3418 | madonna-av.com 3419 | madrau.com 3420 | madthumbs.com 3421 | magazines.sina.com.tw 3422 | magic-net.info 3423 | mahabodhi.org 3424 | ma.hao123.com 3425 | maiio.net 3426 | mail-archive.com 3427 | mail.com 3428 | maildns.xyz 3429 | maiplus.com 3430 | maizhong.org 3431 | makemymood.com 3432 | makkahnewspaper.com 3433 | makzhou.warehouse333.com 3434 | malaysiakini.com 3435 | mamingzhe.com 3436 | manchukuo.net 3437 | mangafox.com 3438 | mangafox.me 3439 | maniash.com 3440 | manicur4ik.ru 3441 | mansion.com 3442 | mansionpoker.com 3443 | manta.com 3444 | manyvoices.news 3445 | maplew.com 3446 | marc.info 3447 | marguerite.su 3448 | martau.com 3449 | martincartoons.com 3450 | martinoei.com 3451 | martsangkagyuofficial.org 3452 | maruta.be 3453 | marxist.com 3454 | marxist.net 3455 | marxists.org 3456 | mash.to 3457 | maskedip.com 3458 | mastodon.cloud 3459 | mastodon.host 3460 | mastodon.social 3461 | mastodon.xyz 3462 | matainja.com 3463 | material.io 3464 | mathable.io 3465 | mathiew-badimon.com 3466 | matome-plus.com 3467 | matome-plus.net 3468 | matrix.org 3469 | matsushimakaede.com 3470 | matters.news 3471 | matthewdgreen.wordpress.com 3472 | mattwilcox.net 3473 | maturejp.com 3474 | maxing.jp 3475 | mayimayi.com 3476 | maying.co 3477 | mcadforums.com 3478 | mcaf.ee 3479 | mcfog.com 3480 | mcreasite.com 3481 | md-t.org 3482 | meansys.com 3483 | media-amazon.com 3484 | mediachinese.com 3485 | mediafire.com 3486 | mediafreakcity.com 3487 | media.nu.nl 3488 | media.org.hk 3489 | mediawiki.org 3490 | medium.com 3491 | meetav.com 3492 | meetup.com 3493 | mefeedia.com 3494 | meforum.org 3495 | mefound.com 3496 | mega.co.nz 3497 | mega.io 3498 | mega.nz 3499 | megaproxy.com 3500 | megarotic.com 3501 | megavideo.com 3502 | megurineluka.com 3503 | meirifuli.org 3504 | meirixiaochao.com 3505 | melon365.com 3506 | meltoday.com 3507 | me.me 3508 | memehk.com 3509 | memes.tw 3510 | meme.yahoo.com 3511 | memorybbs.com 3512 | memrijttm.org 3513 | memri.org 3514 | mercari.com 3515 | mercatox.com 3516 | mercdn.net 3517 | mercyprophet.org 3518 | mergersandinquisitions.org 3519 | meridian-trust.org 3520 | meripet.biz 3521 | meripet.com 3522 | merit-times.com.tw 3523 | merlinblog.xyz 3524 | meshrep.com 3525 | mesotw.com 3526 | messenger.com 3527 | metacafe.com 3528 | metafilter.com 3529 | metart.com 3530 | metarthunter.com 3531 | meteorshowersonline.com 3532 | metrohk.com.hk 3533 | metrolife.ca 3534 | metroradio.com.hk 3535 | metro.taipei 3536 | mewe.com 3537 | meyou.jp 3538 | me.youthwant.com.tw 3539 | meyul.com 3540 | mfxmedia.com 3541 | mgoon.com 3542 | mgstage.com 3543 | mh4u.org 3544 | m.hkgalden.com 3545 | mhradio.org 3546 | michaelanti.com 3547 | michaelmarketl.com 3548 | microvpn.com 3549 | middle-way.net 3550 | mihk.hk 3551 | mihr.com 3552 | mihua.org 3553 | mike.cz.cc 3554 | mikesoltys.com 3555 | mikocon.com 3556 | milph.net 3557 | milsurps.com 3558 | mimiai.net 3559 | mimivip.com 3560 | mimivv.com 3561 | mindrolling.org 3562 | mingdemedia.org 3563 | minghui-a.org 3564 | minghui-b.org 3565 | minghui.org 3566 | minghui.or.kr 3567 | minghui-school.org 3568 | minghuiyw.wordpress.com 3569 | mingjinglishi.com 3570 | mingjingnews.com 3571 | mingjingtimes.com 3572 | mingpaocanada.com 3573 | mingpao.com 3574 | mingpaomonthly.com 3575 | mingpaonews.com 3576 | mingpaony.com 3577 | mingpaosf.com 3578 | mingpaotor.com 3579 | mingpaovan.com 3580 | mingshengbao.com 3581 | minhhue.net 3582 | miniforum.org 3583 | ministrybooks.org 3584 | minzhuhua.net 3585 | minzhuzhanxian.com 3586 | minzhuzhongguo.org 3587 | miroguide.com 3588 | mirrorbooks.com 3589 | mirrormedia.com.tw 3590 | mirrormedia.mg 3591 | mist.vip 3592 | mitao.com.tw 3593 | mitbbsau.com 3594 | mitbbs.com 3595 | mixero.com 3596 | mixi.jp 3597 | mixpod.com 3598 | mixx.com 3599 | mizzmona.com 3600 | mjib.gov.tw 3601 | mjlsh.usc.cuhk.edu.hk 3602 | mk5000.com 3603 | mlcool.com 3604 | mlzs.work 3605 | mmaaxx.com 3606 | mm-cg.com 3607 | m.me 3608 | mmmca.com 3609 | mnewstv.com 3610 | mobatek.net 3611 | mobile01.com 3612 | mobileways.de 3613 | mobypicture.com 3614 | moby.to 3615 | modernchinastudies.org 3616 | moeaic.gov.tw 3617 | moeerolibrary.com 3618 | moegirl.org 3619 | mofa.gov.tw 3620 | mofaxiehui.com 3621 | mofos.com 3622 | mog.com 3623 | mohu.club 3624 | mohu.ml 3625 | mohu.rocks 3626 | mojim.com 3627 | mol.gov.tw 3628 | molihua.org 3629 | momoshop.com.tw 3630 | mondex.org 3631 | moneyhome.biz 3632 | money-link.com.tw 3633 | mo.nightlife141.com 3634 | monitorchina.org 3635 | monlamit.org 3636 | monocloud.me 3637 | monster.com 3638 | moodyz.com 3639 | moonbbs.com 3640 | moonbbs.info 3641 | moonbingo.com 3642 | mooo.com 3643 | moptt.tw 3644 | morbell.com 3645 | morningsun.org 3646 | moroneta.com 3647 | mos.ru 3648 | mosucloud.site 3649 | motherless.com 3650 | motiyun.com 3651 | motor4ik.ru 3652 | mousebreaker.com 3653 | movements.org 3654 | moviefap.com 3655 | mp3buscador.com 3656 | mp3ye.eu 3657 | mpettis.com 3658 | mpfinance.com 3659 | mpinews.com 3660 | m.plixi.com 3661 | mponline.hk 3662 | mqxd.org 3663 | mrbasic.com 3664 | mrbonus.com 3665 | mrface.com 3666 | mrslove.com 3667 | mrtweet.com 3668 | msa-it.org 3669 | msguancha.com 3670 | msha.gov 3671 | m.slandr.net 3672 | mswe1.org 3673 | m-team.cc 3674 | mthruf.com 3675 | mtw.tl 3676 | mubi.com 3677 | muchosucko.com 3678 | mullvad.net 3679 | multiply.com 3680 | multiproxy.org 3681 | multiupload.com 3682 | mummysgold.com 3683 | murmur.tw 3684 | muscdn.com 3685 | musicade.net 3686 | musical.ly 3687 | muslimvideo.com 3688 | muzi.com 3689 | muzi.net 3690 | muzu.tv 3691 | mvdis.gov.tw 3692 | mvg.jp 3693 | mx981.com 3694 | mx.hao123.com 3695 | my03.com 3696 | my903.com 3697 | myactimes.com 3698 | myanniu.com 3699 | myaudiocast.com 3700 | myav.com.tw 3701 | mybbs.us 3702 | mybet.com 3703 | myca168.com 3704 | mycanadanow.com 3705 | mychinamyhome.com 3706 | mychinanet.com 3707 | mychinanews.com 3708 | mychinese.news 3709 | mycnnews.com 3710 | mycould.com 3711 | mydad.info 3712 | mydati.com 3713 | myddns.com 3714 | myeasytv.com 3715 | myeclipseide.com 3716 | my-formosa.com 3717 | myforum.com.hk 3718 | myforum.com.uk 3719 | myfreecams.com 3720 | myfreepaysite.com 3721 | myfreshnet.com 3722 | myftp.info 3723 | myftp.name 3724 | myiphide.com 3725 | myiphider.com 3726 | mykomica.org 3727 | mylftv.com 3728 | my.mail.ru 3729 | mymediarom.com 3730 | mymoe.moe 3731 | mymom.info 3732 | mymusic.net.tw 3733 | mynetav.net 3734 | mynetav.org 3735 | mynumber.org 3736 | my.opera.com 3737 | myparagliding.com 3738 | my.pcloud.com 3739 | mypicture.info 3740 | mypikpak.com 3741 | mypop3.net 3742 | mypop3.org 3743 | mypopescu.com 3744 | my-private-network.co.uk 3745 | my-proxy.com 3746 | myradio.hk 3747 | myreadingmanga.info 3748 | mysecondarydns.com 3749 | myshare.url.com.tw 3750 | mysinablog.com 3751 | mysite.verizon.net 3752 | myspacecdn.com 3753 | myspace.com 3754 | mytalkbox.com 3755 | mytizi.com 3756 | mywww.biz 3757 | myz.info 3758 | n3ro.live 3759 | n3ro.net 3760 | naacoalition.org 3761 | naitik.net 3762 | nakido.com 3763 | nakuz.com 3764 | nalandabodhi.org 3765 | nalandawest.org 3766 | namgyalmonastery.org 3767 | namgyal.org 3768 | namsisi.com 3769 | nanyang.com 3770 | nanyangpost.com 3771 | nanzao.com 3772 | naol.ca 3773 | naol.cc 3774 | nat.gov.tw 3775 | nationalawakening.org 3776 | nationalinterest.org 3777 | national-lottery.co.uk 3778 | nationalreview.com 3779 | nationsonline.org 3780 | nationwide.com 3781 | nat.moe 3782 | naughtyamerica.com 3783 | navyfamily.navy.mil 3784 | navyreserve.navy.mil 3785 | naweeklytimes.com 3786 | nbcnews.com 3787 | nbtvpn.com 3788 | nccwatch.org.tw 3789 | nch.com.tw 3790 | nchrd.org 3791 | ncn.org 3792 | nde.de 3793 | ndi.org 3794 | ndr.de 3795 | ned.org 3796 | nekoslovakia.net 3797 | nemesis2.qx.net 3798 | neo-miracle.com 3799 | neowin.net 3800 | nepusoku.com 3801 | netalert.me 3802 | netbirds.com 3803 | netcolony.com 3804 | net-fits.pro 3805 | netflav.com 3806 | netflix.com 3807 | netflix.net 3808 | netme.cc 3809 | netsneak.com 3810 | network54.com 3811 | networkedblogs.com 3812 | networktunnel.net 3813 | neverforget8964.org 3814 | new-3lunch.net 3815 | new96.ca 3816 | new-akiba.com 3817 | newcenturymc.com 3818 | newcenturynews.com 3819 | newchen.com 3820 | newgrounds.com 3821 | newhighlandvision.com 3822 | newipnow.com 3823 | newlandmagazine.com.au 3824 | newnews.ca 3825 | newrelic.com 3826 | news100.com.tw 3827 | newsancai.com 3828 | newschinacomment.org 3829 | newscn.org 3830 | news.cnyes.com 3831 | newsdetox.ca 3832 | newsdh.com 3833 | news.hk.msn.com 3834 | news.hkpeanut.com 3835 | newsmax.com 3836 | news.msn.com.tw 3837 | news.nationalgeographic.com 3838 | news.now.com 3839 | news.omy.sg 3840 | newspeak.cc 3841 | news.seehua.com 3842 | news.sina.com.hk 3843 | news.sina.com.tw 3844 | news.sinchew.com.my 3845 | news.singtao.ca 3846 | newstamago.com 3847 | newstapa.org 3848 | newstarnet.com 3849 | news.tvb.com 3850 | news.tvbs.com.tw 3851 | newsweek.com 3852 | news.yahoo.com 3853 | news.ycombinator.com 3854 | newtaiwan.com.tw 3855 | newtalk.tw 3856 | newyorker.com 3857 | newyorktimes.com 3858 | nexitally.com 3859 | nexitcore.com 3860 | nexon.com 3861 | next11.co.jp 3862 | nextdigital.com.hk 3863 | nextmag.com.tw 3864 | nextmedia.com 3865 | nexton-net.jp 3866 | nexttv.com.tw 3867 | nf.id.au 3868 | nfjtyd.com 3869 | nflxext.com 3870 | nflximg.com 3871 | nflximg.net 3872 | nflxso.net 3873 | nflxvideo.net 3874 | nga.mil 3875 | ngensis.com 3876 | ngodupdongchung.com 3877 | nhentai.net 3878 | nhi.gov.tw 3879 | nhk-ondemand.jp 3880 | nic.cz.cc 3881 | nic.google 3882 | nic.gov 3883 | nicovideo.jp 3884 | nighost.org 3885 | nikkei.com 3886 | ninecommentaries.com 3887 | ninjacloak.com 3888 | ninjaproxy.ninja 3889 | nintendium.com 3890 | ninth.biz 3891 | nitter.cc 3892 | nitter.net 3893 | nitter.pussthecat.org 3894 | niu.moe 3895 | niusnews.com 3896 | njactb.org 3897 | njuice.com 3898 | nko.navy.mil 3899 | nlfreevpn.com 3900 | nmsl.website 3901 | nnews.eu 3902 | nobelprize.org 3903 | nobel.se 3904 | nobodycanstop.us 3905 | nofile.io 3906 | no-ip.org 3907 | nokogiri.org 3908 | nokola.com 3909 | noodlevpn.com 3910 | norbulingka.org 3911 | nordstrom.com 3912 | nordstromimage.com 3913 | nordstrommedia.com 3914 | nordstromrack.com 3915 | nordvpn.com 3916 | notepad-plus-plus.org 3917 | notify.dropboxapi.com 3918 | notion.so 3919 | nottinghampost.com 3920 | novelasia.com 3921 | now.com 3922 | now.im 3923 | nownews.com 3924 | nowtorrents.com 3925 | noxinfluencer.com 3926 | noypf.com 3927 | npa.go.jp 3928 | npa.gov.tw 3929 | npnt.me 3930 | npsboost.com 3931 | nps.gov 3932 | nradio.me 3933 | nr-data.net 3934 | nrk.no 3935 | ns01.biz 3936 | ns01.info 3937 | ns01.us 3938 | ns02.biz 3939 | ns02.info 3940 | ns02.us 3941 | ns1.name 3942 | ns2.name 3943 | ns3.name 3944 | nsc.gov.tw 3945 | ntbk.gov.tw 3946 | ntbna.gov.tw 3947 | ntbt.gov.tw 3948 | ntd.tv 3949 | ntdtv.ca 3950 | ntdtv.co.kr 3951 | ntdtv.com 3952 | ntdtv.com.tw 3953 | ntdtv.cz 3954 | ntdtv.jp 3955 | ntdtvla.com 3956 | ntdtv.org 3957 | ntdtv.ru 3958 | ntrfun.com 3959 | ntsna.gov.tw 3960 | nubiles.net 3961 | nudezz.com 3962 | nuexpo.com 3963 | nukistream.com 3964 | nurgo-software.com 3965 | nusatrip.com 3966 | nutaku.net 3967 | nutsvpn.work 3968 | nuuvem.com 3969 | nuvid.com 3970 | nuzcom.com 3971 | nvdst.com 3972 | nvquan.org 3973 | nvtongzhisheng.org 3974 | nwtca.org 3975 | nyaa.eu 3976 | nyaa.si 3977 | nybooks.com 3978 | nydus.ca 3979 | nylon-angel.com 3980 | nylonstockingsonline.com 3981 | nypost.com 3982 | ny.stgloballink.com 3983 | nytchina.com 3984 | nytcn.me 3985 | nytco.com 3986 | nyt.com 3987 | nytimes.com 3988 | nytimes.map.fastly.net 3989 | nytimg.com 3990 | nyti.ms 3991 | nytstyle.com 3992 | ny.visiontimes.com 3993 | nzchinese.com 3994 | nzchinese.net.nz 3995 | oanda.com 3996 | oauth.net 3997 | observechina.net 3998 | obutu.com 3999 | ocaspro.com 4000 | occupytiananmen.com 4001 | oclp.hk 4002 | ocreampies.com 4003 | ocry.com 4004 | ocsp.int-x3.letsencrypt.org 4005 | october-review.org 4006 | oculuscdn.com 4007 | oculus.com 4008 | odysee.com 4009 | oex.com 4010 | offbeatchina.com 4011 | officeoftibet.com 4012 | ofile.org 4013 | ogaoga.org 4014 | ogate.org 4015 | ohmyrss.com 4016 | oikos.com.tw 4017 | oiktv.com 4018 | oizoblog.com 4019 | okayfreedom.com 4020 | okex.com 4021 | okk.tw 4022 | ok.ru 4023 | old-cat.net 4024 | old.honeynet.org 4025 | old.nabble.com 4026 | olumpo.com 4027 | olympicwatch.org 4028 | omgili.com 4029 | omni7.jp 4030 | omnitalk.com 4031 | omnitalk.org 4032 | omny.fm 4033 | on2.com 4034 | onapp.com 4035 | on.cc 4036 | onedrive.live.com 4037 | onedumb.com 4038 | onejav.com 4039 | onesto.re 4040 | onestore.co.kr 4041 | onion.city 4042 | onlinecha.com 4043 | online.recoveryversion.org 4044 | onlineyoutube.com 4045 | onlygayvideo.com 4046 | onlytweets.com 4047 | onmoon.com 4048 | onmoon.net 4049 | onmypc.biz 4050 | onmypc.info 4051 | onmypc.net 4052 | onmypc.org 4053 | onmypc.us 4054 | onthehunt.com 4055 | ontrac.com 4056 | oopsforum.com 4057 | openallweb.com 4058 | openbase.com 4059 | open.com.hk 4060 | opendemocracy.net 4061 | opendn.xyz 4062 | openervpn.in 4063 | openid.net 4064 | openleaks.org 4065 | opensource.google 4066 | opentech.fund 4067 | openvpn.net 4068 | openvpn.org 4069 | openwebster.com 4070 | openwrt.org.cn 4071 | opml.radiotime.com 4072 | opus-gaming.com 4073 | ordns.he.net 4074 | organcare.org.tw 4075 | organharvestinvestigation.net 4076 | organiccrap.com 4077 | orgasm.com 4078 | orgfree.com 4079 | oricon.co.jp 4080 | orientaldaily.com.my 4081 | orient-doll.com 4082 | orn.jp 4083 | orzistic.org 4084 | osfoora.com 4085 | otcbtc.com 4086 | otnd.org 4087 | otto.de 4088 | otzo.com 4089 | ourdearamy.com 4090 | ourhobby.com 4091 | oursogo.com 4092 | oursteps.com.au 4093 | oursweb.net 4094 | ourtv.hk 4095 | overdaily.org 4096 | overplay.net 4097 | oversea.istarshine.com 4098 | ovpn.com 4099 | owl.li 4100 | owltail.com 4101 | ow.ly 4102 | oxfordscholarship.com 4103 | oyax.com 4104 | oyghan.com 4105 | ozchinese.com 4106 | ozvoice.org 4107 | ozxw.com 4108 | ozyoyo.com 4109 | p16-tiktokcdn-com.akamaized.net 4110 | pachosting.com 4111 | pacificpoker.com 4112 | packages.debian.org 4113 | packetix.net 4114 | pacopacomama.com 4115 | padmanet.com 4116 | page2rss.com 4117 | page.bid.yahoo.com 4118 | pagodabox.com 4119 | palacemoon.com 4120 | paldengyal.com 4121 | paljorpublications.com 4122 | palmislife.com 4123 | paltalk.com 4124 | panamapapers.sueddeutsche.de 4125 | pandapow.co 4126 | pandapow.net 4127 | pandavpn-jp.com 4128 | pandavpnpro.com 4129 | pandora.com 4130 | pandora.tv 4131 | panluan.net 4132 | panoramio.com 4133 | paofuyun.me 4134 | pao-pao.net 4135 | paperb.us 4136 | paper.li 4137 | paradisehill.cc 4138 | paradisepoker.com 4139 | parkansky.com 4140 | parler.com 4141 | parse.com 4142 | parsevideo.com 4143 | parts.blog.livedoor.jp 4144 | partycasino.com 4145 | partypoker.com 4146 | passion.com 4147 | passiontimes.hk 4148 | pastebin.com 4149 | paste.ee 4150 | pastie.org 4151 | paxful.com 4152 | pbs.org 4153 | pbwiki.com 4154 | pbworks.com 4155 | pbxes.com 4156 | pbxes.org 4157 | pcanywhere.net 4158 | pcc.gov.tw 4159 | pcdvd.com.tw 4160 | pchome.com.tw 4161 | pcij.org 4162 | pcstore.com.tw 4163 | pct.org.tw 4164 | pdetails.com 4165 | pdproxy.com 4166 | pds.nasa.gov 4167 | peace.ca 4168 | peacefire.org 4169 | peacehall.com 4170 | pearlher.org 4171 | peeasian.com 4172 | peing.net 4173 | pekingduck.org 4174 | pems.dot.ca.gov 4175 | pemulihan.or.id 4176 | penchinese.com 4177 | penchinese.net 4178 | pengyulong.com 4179 | pen.io 4180 | penisbot.com 4181 | penthouse.com 4182 | pentoy.hk 4183 | peoplebookcafe.com 4184 | peoplenews.tw 4185 | peopo.org 4186 | percy.in 4187 | perfectgirls.net 4188 | perfectvpn.net 4189 | periscope.tv 4190 | persecutionblog.com 4191 | persiankitty.com 4192 | pexcn.me 4193 | pfd.org.hk 4194 | phapluan.org 4195 | phayul.com 4196 | philborges.com 4197 | philly.com 4198 | phmsociety.org 4199 | phncdn.com 4200 | phobos.apple.com 4201 | phonegap.com 4202 | phosphation13.rssing.com 4203 | photodharma.net 4204 | photofocus.com 4205 | phprcdn.com 4206 | phptutorial.net 4207 | phuquocservices.com 4208 | picacomiccn.com 4209 | picacomic.com 4210 | picasaweb.com 4211 | picidae.net 4212 | picturedip.com 4213 | picturesocial.com 4214 | pictures.playboy.com 4215 | pimg.tw 4216 | pin6.com 4217 | pin-cong.com 4218 | pincong.rocks 4219 | ping.fm 4220 | pinimg.com 4221 | pinkrod.com 4222 | pinoy-n.com 4223 | pinterest.at 4224 | pinterest.ca 4225 | pinterest.co.kr 4226 | pinterest.com 4227 | pinterest.com.mx 4228 | pinterest.co.uk 4229 | pinterest.de 4230 | pinterest.dk 4231 | pinterest.fr 4232 | pinterest.jp 4233 | pinterest.nl 4234 | pinterest.se 4235 | pioneer-worker.forums-free.com 4236 | pipii.tv 4237 | piposay.com 4238 | piraattilahti.org 4239 | piring.com 4240 | pixelqi.com 4241 | pixiv.net 4242 | pixnet.net 4243 | pk.com 4244 | pki.goog 4245 | placemix.com 4246 | play-asia.com 4247 | playboy.com 4248 | playboyplus.com 4249 | player.fm 4250 | playno1.com 4251 | playpcesor.com 4252 | plays.com.tw 4253 | plexvpn.pro 4254 | plm.org.hk 4255 | plunder.com 4256 | plurk.com 4257 | plus28.com 4258 | plusbb.com 4259 | plus.codes 4260 | pmatehunter.com 4261 | pmates.com 4262 | po2b.com 4263 | pobieramy.top 4264 | podbean.com 4265 | podictionary.com 4266 | pokerstars.com 4267 | pokerstars.net 4268 | pokerstrategy.com 4269 | politicalchina.org 4270 | politicalconsultation.org 4271 | politiscales.net 4272 | poloniex.com 4273 | polymerhk.com 4274 | polymer-project.org 4275 | popo.tw 4276 | popvote.hk 4277 | popxi.click 4278 | popyard.com 4279 | popyard.org 4280 | porn2.com 4281 | porn5.com 4282 | pornbase.org 4283 | pornbest.org 4284 | porn.com 4285 | pornerbros.com 4286 | pornhd.com 4287 | pornhost.com 4288 | pornhub.com 4289 | pornhubdeutsch.net 4290 | pornhubpremium.com 4291 | pornmm.net 4292 | pornoxo.com 4293 | pornrapidshare.com 4294 | pornsharing.com 4295 | pornsocket.com 4296 | pornstarbyface.com 4297 | pornstarclub.com 4298 | porntube.com 4299 | porntubenews.com 4300 | porntvblog.com 4301 | pornvisit.com 4302 | port25.biz 4303 | portablevpn.nl 4304 | poskotanews.com 4305 | post01.com 4306 | post76.com 4307 | post852.com 4308 | postadult.com 4309 | postimg.org 4310 | posts.careerengine.us 4311 | potato.im 4312 | potvpn.com 4313 | powerapple.com 4314 | power.com 4315 | powercx.com 4316 | powerphoto.org 4317 | prayforchina.net 4318 | premeforwindows7.com 4319 | premproxy.com 4320 | presentationzen.com 4321 | presidentlee.tw 4322 | prestige-av.com 4323 | pride.google 4324 | primevideo.com 4325 | printfriendly.com 4326 | prism-break.org 4327 | prisoneralert.com 4328 | pritunl.com 4329 | privacybox.de 4330 | private.com 4331 | privateinternetaccess.com 4332 | privatepaste.com 4333 | privatetunnel.com 4334 | privatevpn.com 4335 | privoxy.org 4336 | procopytips.com 4337 | project-syndicate.org 4338 | prosciana.com 4339 | prosiben.de 4340 | protonmail.com 4341 | protonvpn.com 4342 | provideocoalition.com 4343 | provpnaccounts.com 4344 | proxfree.com 4345 | proxifier.com 4346 | proxomitron.info 4347 | proxpn.com 4348 | proxy1.xyz 4349 | proxyanonimo.es 4350 | proxydns.com 4351 | proxylist.org.uk 4352 | proxynetwork.org.uk 4353 | proxy.org 4354 | proxypy.net 4355 | proxyroad.com 4356 | proxytunnel.net 4357 | proyectoclubes.com 4358 | prozz.net 4359 | psblog.name 4360 | pscp.tv 4361 | pshvpn.com 4362 | psiphon3.com 4363 | psiphon.ca 4364 | psiphon.civisec.org 4365 | psiphontoday.com 4366 | pt.im 4367 | pts.org.tw 4368 | ptt.cc 4369 | pttgame.com 4370 | pttvan.org 4371 | pubu.com.tw 4372 | puffinbrowser.com 4373 | puffin.com 4374 | puffstore.com 4375 | pullfolio.com 4376 | pulse.yahoo.com 4377 | punyu.com 4378 | pure18.com 4379 | pureconcepts.net 4380 | pureinsight.org 4381 | purepdf.com 4382 | purevpn.com 4383 | purplelotus.org 4384 | purpose.nike.com 4385 | pursuestar.com 4386 | pushchinawall.com 4387 | pussyspace.com 4388 | putihome.org 4389 | putlocker.com 4390 | putty.org 4391 | puuko.com 4392 | pwned.com 4393 | pximg.net 4394 | python.com 4395 | python.com.tw 4396 | pythonhackers.com 4397 | pytorch.org 4398 | qanote.com 4399 | qgirl.com.tw 4400 | qhigh.com 4401 | qianbai.tw 4402 | qiandao.today 4403 | qiangwaikan.com 4404 | qiangyou.org 4405 | qidian.ca 4406 | qienkuen.org 4407 | qi-gong.me 4408 | qiwen.lu 4409 | qixianglu.cn 4410 | qkshare.com 4411 | qoos.com 4412 | qpoe.com 4413 | qq.co.za 4414 | qstatus.com 4415 | qtrac.eu 4416 | qtweeter.com 4417 | quannengshen.org 4418 | quantumbooter.net 4419 | questvisual.com 4420 | quitccp.net 4421 | quitccp.org 4422 | quoracdn.net 4423 | quora.com 4424 | quran.com 4425 | quranexplorer.com 4426 | qusi8.net 4427 | qvodzy.org 4428 | qxbbs.org 4429 | qz.com 4430 | r0.ru 4431 | r18.com 4432 | radicalparty.org 4433 | radiko.jp 4434 | radioaustralia.net.au 4435 | radio.garden 4436 | radiohilight.net 4437 | radioline.co 4438 | radiovaticana.org 4439 | radiovncr.com 4440 | rael.org 4441 | ra.gg 4442 | raggedbanner.com 4443 | raidcall.com.tw 4444 | raidtalk.com.tw 4445 | rainbowplan.org 4446 | raindrop.io 4447 | raizoji.or.jp 4448 | rakuten.co.jp 4449 | rakuten.com.tw 4450 | ramcity.com.au 4451 | rangwang.biz 4452 | rangzen.com 4453 | rangzen.net 4454 | rangzen.org 4455 | ranyunfei.com 4456 | rapbull.net 4457 | rapidgator.net 4458 | rapidmoviez.com 4459 | rapidvpn.com 4460 | rarbgprx.org 4461 | raremovie.cc 4462 | raremovie.net 4463 | rateyourmusic.com 4464 | rationalwiki.org 4465 | rawgit.com 4466 | raw.githack.com 4467 | rawgithub.com 4468 | raw.githubusercontent.com 4469 | razyboard.com 4470 | rcam.target.com 4471 | rcinet.ca 4472 | rconversation.blogs.com 4473 | rd.com 4474 | rdio.com 4475 | read01.com 4476 | read100.com 4477 | readingtimes.com.tw 4478 | readmoo.com 4479 | readydown.com 4480 | realcourage.org 4481 | realforum.zkiz.com 4482 | realitykings.com 4483 | realraptalk.com 4484 | realsexpass.com 4485 | reason.com 4486 | rebatesrule.net 4487 | recordhistory.org 4488 | recovery.org.tw 4489 | recoveryversion.com.tw 4490 | redballoonsolidarity.org 4491 | redbubble.com 4492 | redchinacn.net 4493 | redchinacn.org 4494 | redd.it 4495 | reddit.com 4496 | redditlist.com 4497 | redditmedia.com 4498 | redditstatic.com 4499 | redhat.com 4500 | redhotlabs.com 4501 | red-lang.org 4502 | redtube.com 4503 | referer.us 4504 | reflectivecode.com 4505 | registry.google 4506 | reimu.net 4507 | relaxbbs.com 4508 | relay.com.tw 4509 | releaseinternational.org 4510 | religioustolerance.org 4511 | renminbao.com 4512 | renyurenquan.org 4513 | research.google 4514 | research.jmsc.hku.hk 4515 | resilio.com 4516 | resistchina.org 4517 | retweeteffect.com 4518 | retweetist.com 4519 | retweetrank.com 4520 | reuters.com 4521 | reutersmedia.net 4522 | revleft.com 4523 | revver.com 4524 | rfachina.com 4525 | rfalive1.akacast.akamaistream.net 4526 | rfamobile.org 4527 | rfa.org 4528 | rfaweb.org 4529 | rferl.org 4530 | rfi.fr 4531 | rfi.my 4532 | rightbtc.com 4533 | rigpa.org 4534 | riku.me 4535 | rileyguide.com 4536 | riseup.net 4537 | ritouki.jp 4538 | ritter.vg 4539 | rixcloud.com 4540 | rixcloud.us 4541 | rlcdn.com 4542 | rlwlw.com 4543 | rmjdw132.info 4544 | rmjdw.com 4545 | roadshow.hk 4546 | roboforex.com 4547 | robustnessiskey.com 4548 | rocketcdn.me 4549 | rocket-inc.net 4550 | rocksdb.org 4551 | rojo.com 4552 | rolfoundation.org 4553 | rolia.net 4554 | rolsociety.org 4555 | ronjoneswriter.com 4556 | roodo.com 4557 | rosechina.net 4558 | rotten.com 4559 | rsdlmonitor.com 4560 | rsf-chinese.org 4561 | rsf.org 4562 | rsgamen.org 4563 | rsshub.app 4564 | rssmeme.com 4565 | rtalabel.org 4566 | rthk.hk 4567 | rthklive2-lh.akamaihd.net 4568 | rthk.org.hk 4569 | rti.org.tw 4570 | rti.tw 4571 | rtycminnesota.org 4572 | ruanyifeng.com 4573 | rukor.org 4574 | rule34.xxx 4575 | runbtx.com 4576 | rushbee.com 4577 | rusvpn.com 4578 | ruten.com.tw 4579 | rutube.ru 4580 | ruyiseek.com 4581 | rxhj.net 4582 | s1heng.com 4583 | s1.nudezz.com 4584 | s1s1s1.com 4585 | s3.amazonaws.com 4586 | s3-ap-northeast-1.amazonaws.com 4587 | s3-ap-southeast-2.amazonaws.com 4588 | s8forum.com 4589 | sacks.com 4590 | sacom.hk 4591 | sadistic-v.com 4592 | sadpanda.us 4593 | safechat.com 4594 | safervpn.com 4595 | safety.google 4596 | sa.hao123.com 4597 | saintyculture.com 4598 | saiq.me 4599 | sakuralive.com 4600 | sakya.org 4601 | salvation.org.hk 4602 | samair.ru 4603 | sambhota.org 4604 | sankei.com 4605 | sanmin.com.tw 4606 | sapikachu.net 4607 | saveliuxiaobo.com 4608 | savemedia.com 4609 | savethedate.foo 4610 | savethesounds.info 4611 | savetibet.de 4612 | savetibet.fr 4613 | savetibet.nl 4614 | savetibet.org 4615 | savetibet.ru 4616 | savetibetstore.org 4617 | saveuighur.org 4618 | savevid.com 4619 | say2.info 4620 | sbme.me 4621 | sbs.com.au 4622 | scache1.vzw.com 4623 | scache2.vzw.com 4624 | scache.vzw.com 4625 | scasino.com 4626 | schema.org 4627 | sciencenets.com 4628 | scieron.com 4629 | scmpchinese.com 4630 | scmp.com 4631 | scramble.io 4632 | scratch.mit.edu 4633 | scribd.com 4634 | scriptspot.com 4635 | s-cute.com 4636 | s-dragon.org 4637 | seapuff.com 4638 | search.aol.com 4639 | search.com 4640 | searchtruth.com 4641 | search.xxx 4642 | search.yahoo.co.jp 4643 | search.yahoo.com 4644 | searx.me 4645 | seattlefdc.com 4646 | secretchina.com 4647 | secretgarden.no 4648 | secretsline.biz 4649 | secure.hustler.com 4650 | secure.logmein.com 4651 | secure.raxcdn.com 4652 | secureservercdn.net 4653 | securetunnel.com 4654 | securityinabox.org 4655 | securitykiss.com 4656 | seed4.me 4657 | seehua.com 4658 | seesmic.com 4659 | seevpn.com 4660 | see.xxx 4661 | seezone.net 4662 | sejie.com 4663 | sellclassics.com 4664 | sendsmtp.com 4665 | sendspace.com 4666 | seraph.me 4667 | servehttp.com 4668 | serveuser.com 4669 | serveusers.com 4670 | services.googleapis.cn 4671 | sesawe.net 4672 | sesawe.org 4673 | sethwklein.net 4674 | setn.com 4675 | settv.com.tw 4676 | sevenload.com 4677 | sex-11.com 4678 | sex3.com 4679 | sex8.cc 4680 | sexandsubmission.com 4681 | sexbot.com 4682 | sex.com 4683 | sexhuang.com 4684 | sexhu.com 4685 | sexidude.com 4686 | sexinsex.net 4687 | sextvx.com 4688 | sexxxy.biz 4689 | sfileydy.com 4690 | sf.net 4691 | sfshibao.com 4692 | sftindia.org 4693 | sftuk.org 4694 | sgwritings.com 4695 | sgzhan.com 4696 | shadeyouvpn.com 4697 | shadow.ma 4698 | shadowsky.xyz 4699 | shadowsocks9.com 4700 | shadowsocks.asia 4701 | shadowsocks.be 4702 | shadowsocks.com 4703 | shadowsocks.com.hk 4704 | shadowsocks.org 4705 | shadowsocks-r.com 4706 | shahit.biz 4707 | shambalapost.com 4708 | shambhalasun.com 4709 | shangfang.org 4710 | shapeservices.com 4711 | share.america.gov 4712 | sharebee.com 4713 | sharecool.org 4714 | share.dmhy.org 4715 | share.ovi.com 4716 | share.youthwant.com.tw 4717 | sharpdaily.com.hk 4718 | sharpdaily.hk 4719 | sharpdaily.tw 4720 | shattered.io 4721 | shat-tibet.com 4722 | sheikyermami.com 4723 | shellfire.de 4724 | shenshou.org 4725 | shenyun.com 4726 | shenyunperformingarts.org 4727 | shenyunshop.com 4728 | shenzhoufilm.com 4729 | shenzhouzhengdao.org 4730 | sherabgyaltsen.com 4731 | shiatv.net 4732 | shicheng.org 4733 | shiksha.com 4734 | shiksha.ws 4735 | shinychan.com 4736 | shipcamouflage.com 4737 | shireyishunjian.com 4738 | shitaotv.org 4739 | shixiao.org 4740 | shizhao.org 4741 | shkspr.mobi 4742 | shodanhq.com 4743 | shooshtime.com 4744 | shop2000.com.tw 4745 | shopee.tw 4746 | shopping.com 4747 | showbiz.omy.sg 4748 | showhaotu.com 4749 | showtime.jp 4750 | showwe.tw 4751 | shutterstock.com 4752 | shwchurch3.com 4753 | shwchurch.org 4754 | siddharthasintent.org 4755 | sidelinesnews.com 4756 | sidelinessportseatery.com 4757 | sierrafriendsoftibet.org 4758 | signal.org 4759 | sijihuisuo.club 4760 | sijihuisuo.com 4761 | silkbook.com 4762 | simbolostwitter.com 4763 | simplecd.org 4764 | simpleproductivityblog.com 4765 | sinchew.com.my 4766 | singaporepools.com.sg 4767 | singfortibet.com 4768 | singpao.com.hk 4769 | singtao.com 4770 | singtaousa.com 4771 | sinoants.com 4772 | sinoca.com 4773 | sinocast.com 4774 | sinocism.com 4775 | sinoinsider.com 4776 | sino-monthly.com 4777 | sinomontreal.ca 4778 | sinonet.ca 4779 | sinopitt.info 4780 | sinoquebec.com 4781 | sipml5.org 4782 | sis001.com 4783 | sis001.us 4784 | sis.xxx 4785 | site2unblock.com 4786 | site90.net 4787 | sitebro.tw 4788 | sitekreator.com 4789 | siteks.uk.to 4790 | sitemaps.org 4791 | six-degrees.io 4792 | sixth.biz 4793 | sjrt.org 4794 | sjum.cn 4795 | sketchappsources.com 4796 | skimresources.com 4797 | skimtube.com 4798 | skybet.com 4799 | skyking.com.tw 4800 | skyvegas.com 4801 | skyxvpn.com 4802 | slacker.com 4803 | slaytizle.com 4804 | sleazydream.com 4805 | slheng.com 4806 | slickvpn.com 4807 | slideshare.net 4808 | slinkset.com 4809 | sl-reverse.com 4810 | slutload.com 4811 | slutmoonbeam.com 4812 | slyip.com 4813 | slyip.net 4814 | sm3ha.ru 4815 | smartdnsproxy.com 4816 | smarthide.com 4817 | smchbooks.com 4818 | smh.com.au 4819 | smhric.org 4820 | smith.edu 4821 | sm-miracle.com 4822 | smyxy.org 4823 | snapchat.com 4824 | snaptu.com 4825 | s-nbcnews.com 4826 | sndcdn.com 4827 | sneakme.net 4828 | snowlionpub.com 4829 | sobees.com 4830 | socialblade.com 4831 | socialwhale.com 4832 | sockscap64.com 4833 | sockslist.net 4834 | socks-proxy.net 4835 | soc.mil 4836 | socrec.org 4837 | sod.co.jp 4838 | softether.co.jp 4839 | softether-download.com 4840 | softether.org 4841 | softfamous.com 4842 | softnology.biz 4843 | softsmirror.cf 4844 | softwarebychuck.com 4845 | softwaredownload.gitbooks.io 4846 | sogclub.com 4847 | sogrady.me 4848 | sohcradio.com 4849 | sohfrance.org 4850 | soh.tw 4851 | sokamonline.com 4852 | sokmil.com 4853 | solarsystem.nasa.gov 4854 | solidaritetibet.org 4855 | solidfiles.com 4856 | solv.finance 4857 | somee.com 4858 | songjianjun.com 4859 | sonicbbs.cc 4860 | sonidodelaesperanza.org 4861 | sopcast.com 4862 | sopcast.org 4863 | sorazone.net 4864 | sorting-algorithms.com 4865 | sos.org 4866 | sosreader.com 4867 | sostibet.org 4868 | soubory.com 4869 | soulcaliburhentai.net 4870 | soul-plus.net 4871 | soumo.info 4872 | soundcloud.com 4873 | soundofhope.kr 4874 | soundofhope.org 4875 | soup.io 4876 | soupofmedia.com 4877 | sourceforge.net 4878 | sourcewadio.com 4879 | southnews.com.tw 4880 | southpark.cc.com 4881 | south-plus.org 4882 | sowers.org.hk 4883 | soylentnews.org 4884 | spaces.hightail.com 4885 | spankbang.com 4886 | spankingtube.com 4887 | spankwire.com 4888 | spark.adobe.com 4889 | spb.com 4890 | speakerdeck.com 4891 | specxinzl.jigsy.com 4892 | speedify.com 4893 | spem.at 4894 | spencertipping.com 4895 | spendee.com 4896 | spicevpn.com 4897 | spideroak.com 4898 | spike.com 4899 | sports.williamhill.com 4900 | spotflux.com 4901 | spotify.com 4902 | spreadshirt.es 4903 | spring4u.info 4904 | springboardplatform.com 4905 | sprite.org 4906 | sproutcore.com 4907 | sproxy.info 4908 | squirly.info 4909 | squirrelvpn.com 4910 | srcf.ucam.org 4911 | srocket.us 4912 | ss7.vzw.com 4913 | ss.carryzhou.com 4914 | ssglobal.co 4915 | ssglobal.me 4916 | ssh91.com 4917 | ssl443.org 4918 | ss.levyhsu.com 4919 | ss-link.com 4920 | ssl.webpack.de 4921 | sspanel.net 4922 | sspanel.org 4923 | sspro.ml 4924 | ss.pythonic.life 4925 | ssrshare.com 4926 | ssr.tools 4927 | sss.camp 4928 | sstmlt.moe 4929 | sstmlt.net 4930 | sstm.moe 4931 | stackoverflow.com 4932 | stage64.hk 4933 | standupfortibet.org 4934 | standwithhk.org 4935 | stanford.edu 4936 | starfishfx.com 4937 | starp2p.com 4938 | startpage.com 4939 | startuplivingchina.com 4940 | stat.gov.tw 4941 | static01.nyt.com 4942 | static.comico.tw 4943 | static-economist.com 4944 | staticflickr.com 4945 | static.shemalez.com 4946 | statueofdemocracy.org 4947 | stboy.net 4948 | stc.com.sa 4949 | steamcommunity.com 4950 | steel-storm.com 4951 | steemit.com 4952 | steganos.com 4953 | steganos.net 4954 | stepchina.com 4955 | stephaniered.com 4956 | sthoo.com 4957 | stickam.com 4958 | stickeraction.com 4959 | stileproject.com 4960 | sto.cc 4961 | stoporganharvesting.org 4962 | stoptibetcrisis.net 4963 | storagenewsletter.com 4964 | store.steampowered.com 4965 | stories.google 4966 | storify.com 4967 | stormmediagroup.com 4968 | storm.mg 4969 | stoweboyd.com 4970 | straitstimes.com 4971 | stranabg.com 4972 | straplessdildo.com 4973 | streamable.com 4974 | streamate.com 4975 | streamingthe.net 4976 | streema.com 4977 | strikingly.com 4978 | strongvpn.com 4979 | strongwindpress.com 4980 | studentsforafreetibet.org 4981 | student.tw 4982 | stumbleupon.com 4983 | stupidvideos.com 4984 | stweetly.com 4985 | subacme.rerouted.org 4986 | substack.com 4987 | successfn.com 4988 | suche.gmx.net 4989 | sugarsync.com 4990 | sugobbs.com 4991 | sugumiru18.com 4992 | suissl.com 4993 | sujiatun.wordpress.com 4994 | sukebei.nyaa.si 4995 | sulian.me 4996 | summify.com 4997 | sumrando.com 4998 | sun1911.com 4999 | sundayguardianlive.com 5000 | sunmedia.ca 5001 | sunporno.com 5002 | sunskyforum.com 5003 | sunta.com.tw 5004 | sunvpn.net 5005 | sunwinism.joinbbs.net 5006 | suoluo.org 5007 | supchina.com 5008 | superfreevpn.com 5009 | superokayama.com 5010 | superpages.com 5011 | supervpn.net 5012 | superzooi.com 5013 | suppig.net 5014 | suprememastertv.com 5015 | surfeasy.com 5016 | surfeasy.com.au 5017 | surfshark.com 5018 | suroot.com 5019 | surrenderat20.net 5020 | sustainability.google 5021 | suyangg.com 5022 | svsfx.com 5023 | swagbucks.com 5024 | swissinfo.ch 5025 | swissvpn.net 5026 | switch1.jp 5027 | switchvpn.net 5028 | sydneytoday.com 5029 | sylfoundation.org 5030 | syncback.com 5031 | synergyse.com 5032 | sysresccd.org 5033 | sytes.net 5034 | szbbs.net 5035 | szetowah.org.hk 5036 | t35.com 5037 | t66y.com 5038 | taa-usa.org 5039 | taaze.tw 5040 | tabtter.jp 5041 | tacc.cwb.gov.tw 5042 | tacem.org 5043 | taconet.com.tw 5044 | taedp.org.tw 5045 | tafm.org 5046 | tagwalk.com 5047 | tagwa.org.au 5048 | tahr.org.tw 5049 | taipei.gov.tw 5050 | taipeisociety.org 5051 | taiwanbible.com 5052 | taiwancon.com 5053 | taiwandaily.net 5054 | taiwandc.org 5055 | taiwanhot.net 5056 | taiwanjobs.gov.tw 5057 | taiwanjustice.com 5058 | taiwanjustice.net 5059 | taiwankiss.com 5060 | taiwannation.50webs.com 5061 | taiwannation.com 5062 | taiwannation.com.tw 5063 | taiwanncf.org.tw 5064 | taiwannews.com.tw 5065 | taiwan-sex.com 5066 | taiwantp.net 5067 | taiwantt.org.tw 5068 | taiwanus.net 5069 | taiwanyes.com 5070 | taiwanyes.ning.com 5071 | talk853.com 5072 | talkboxapp.com 5073 | talkcc.com 5074 | talkonly.net 5075 | tamiaode.tk 5076 | tanc.org 5077 | tangben.com 5078 | tangren.us 5079 | taoism.net 5080 | taolun.info 5081 | tapanwap.com 5082 | tapatalk.com 5083 | tarr.uspto.gov 5084 | tascn.com.au 5085 | taup.net 5086 | taweet.com 5087 | tbcollege.org 5088 | tbicn.org 5089 | tbi.org.hk 5090 | tbjyt.org 5091 | tbpic.info 5092 | tbrc.org 5093 | tbsec.org 5094 | tbskkinabalu.page.tl 5095 | tbsmalaysia.org 5096 | tbsn.org 5097 | tbs-rainbow.org 5098 | tbsseattle.org 5099 | tbssqh.org 5100 | tbswd.org 5101 | tbtemple.org.uk 5102 | tbthouston.org 5103 | tc39.es 5104 | tccwonline.org 5105 | tcewf.org 5106 | tchrd.org 5107 | tcnynj.org 5108 | t.co 5109 | tcpspeed.co 5110 | tcpspeed.com 5111 | tcsofbc.org 5112 | tcsovi.org 5113 | tdm.com.mo 5114 | teachparentstech.org 5115 | teamamericany.com 5116 | tech2.in.com 5117 | technews.tw 5118 | techspot.com 5119 | techviz.net 5120 | teck.in 5121 | teco-hk.org 5122 | teco-mo.org 5123 | teddysun.com 5124 | teeniefuck.net 5125 | teensinasia.com 5126 | teepr.com 5127 | tehrantimes.com 5128 | telecomspace.com 5129 | telegram.dog 5130 | telegramdownload.com 5131 | telegram.me 5132 | telegram.org 5133 | telegra.ph 5134 | telegraph.co.uk 5135 | telesco.pe 5136 | tellme.pw 5137 | tenacy.com 5138 | tensorflow.org 5139 | tenzinpalmo.com 5140 | terabox.com 5141 | tew.org 5142 | textnow.me 5143 | tfhub.dev 5144 | tfiflve.com 5145 | t-g.com 5146 | tgfcer.com 5147 | tgstat.com 5148 | thaicn.com 5149 | thb.gov.tw 5150 | theatlantic.com 5151 | theatrum-belli.com 5152 | thebcomplex.com 5153 | theblaze.com 5154 | theblemish.com 5155 | thebobs.com 5156 | thebodyshop-usa.com 5157 | thecenter.mit.edu 5158 | thechinabeat.org 5159 | thechinacollection.org 5160 | theconversation.com 5161 | thedalailamamovie.com 5162 | thediplomat.com 5163 | thedw.us 5164 | thefacebook.com 5165 | thefrontier.hk 5166 | thegay.com 5167 | thegioitinhoc.vn 5168 | thegly.com 5169 | theguardian.com 5170 | thehots.info 5171 | thehousenews.com 5172 | thehun.net 5173 | theinitium.com 5174 | themoviedb.org 5175 | thenewslens.com 5176 | thepiratebay.ee 5177 | thepiratebay.org 5178 | theporndude.com 5179 | theportalwiki.com 5180 | theprint.in 5181 | thereallove.kr 5182 | therock.net.nz 5183 | thesaturdaypaper.com.au 5184 | thespeeder.com 5185 | thestandnews.com 5186 | thetibetcenter.org 5187 | thetibetconnection.org 5188 | thetibetmuseum.org 5189 | thetibetpost.com 5190 | thetinhat.com 5191 | thetrotskymovie.com 5192 | thetvdb.com 5193 | thevivekspot.com 5194 | thewgo.org 5195 | theync.com 5196 | th.hao123.com 5197 | thinkgeek.com 5198 | thinkingtaiwan.com 5199 | thinkwithgoogle.com 5200 | thisav.com 5201 | thlib.org 5202 | thomasbernhard.org 5203 | thongdreams.com 5204 | threatchaos.com 5205 | throughnightsfire.com 5206 | thumbzilla.com 5207 | thywords.com 5208 | thywords.com.tw 5209 | tiananmenduizhi.com 5210 | tiananmenmother.org 5211 | tiananmenuniv.com 5212 | tiananmenuniv.net 5213 | tiandixing.org 5214 | tianhuayuan.com 5215 | tianlawoffice.com 5216 | tiantibooks.org 5217 | tianti.io 5218 | tianyantong.org.cn 5219 | tianzhu.org 5220 | tibet3rdpole.org 5221 | tibetaction.net 5222 | tibetaid.org 5223 | tibetalk.com 5224 | tibetanaidproject.org 5225 | tibetan-alliance.org 5226 | tibetanarts.org 5227 | tibetanbuddhistinstitute.org 5228 | tibetancommunity.org 5229 | tibetancommunityuk.net 5230 | tibetanculture.org 5231 | tibetanentrepreneurs.org 5232 | tibetanfeministcollective.org 5233 | tibetan.fr 5234 | tibetanhealth.org 5235 | tibetanjournal.com 5236 | tibetanlanguage.org 5237 | tibetanliberation.org 5238 | tibetanpaintings.com 5239 | tibetanphotoproject.com 5240 | tibetanpoliticalreview.org 5241 | tibetanreview.net 5242 | tibetansports.org 5243 | tibetanwomen.org 5244 | tibetanyouthcongress.org 5245 | tibetanyouth.org 5246 | tibet.a.se 5247 | tibet.at 5248 | tibet.ca 5249 | tibetcharity.dk 5250 | tibetcharity.in 5251 | tibetchild.org 5252 | tibetcity.com 5253 | tibetcollection.com 5254 | tibet.com 5255 | tibetcorps.org 5256 | tibet-envoy.eu 5257 | tibetexpress.net 5258 | tibetfocus.com 5259 | tibet-foundation.org 5260 | tibet.fr 5261 | tibetfund.org 5262 | tibetgermany.com 5263 | tibetgermany.de 5264 | tibethaus.com 5265 | tibetheritagefund.org 5266 | tibethouse.jp 5267 | tibethouse.org 5268 | tibet-house-trust.co.uk 5269 | tibethouse.us 5270 | tibet-info.net 5271 | tibetinfonet.net 5272 | tibet-initiative.de 5273 | tibetjustice.org 5274 | tibetkomite.dk 5275 | tibetlibre.free.fr 5276 | tibet-munich.de 5277 | tibetmuseum.org 5278 | tibet.net 5279 | tibetnetwork.org 5280 | tibet.nu 5281 | tibetoffice.ch 5282 | tibetoffice.com.au 5283 | tibetoffice.eu 5284 | tibetoffice.org 5285 | tibetonline.com 5286 | tibetonline.tv 5287 | tibetoralhistory.org 5288 | tibet.org 5289 | tibet.org.tw 5290 | tibetpolicy.eu 5291 | tibetrelieffund.co.uk 5292 | tibetsites.com 5293 | tibet.sk 5294 | tibetsociety.com 5295 | tibetsun.com 5296 | tibetsupportgroup.org 5297 | tibetswiss.ch 5298 | tibettelegraph.com 5299 | tibettimes.net 5300 | tibet.to 5301 | tibetwrites.org 5302 | ticket.com.tw 5303 | tigervpn.com 5304 | tiktokcdn.com 5305 | tiktokcdn-us.com 5306 | tiktok.com 5307 | tiltbrush.com 5308 | timdir.com 5309 | time.com 5310 | times.hinet.net 5311 | timesnownews.com 5312 | timesofindia.indiatimes.com 5313 | timsah.com 5314 | timtales.com 5315 | tinc-vpn.org 5316 | tineye.com 5317 | tintuc101.com 5318 | tiny.cc 5319 | tinychat.com 5320 | tinypaste.com 5321 | tipas.net 5322 | tipo.gov.tw 5323 | tistory.com 5324 | tkcs-collins.com 5325 | tl.gd 5326 | tma.co.jp 5327 | tmagazine.com 5328 | tmdb.org 5329 | tmdfish.com 5330 | t.me 5331 | tmi.me 5332 | tmpp.org 5333 | tn1.shemalez.com 5334 | tn2.shemalez.com 5335 | tn3.shemalez.com 5336 | tnaflix.com 5337 | tngrnow.com 5338 | tngrnow.net 5339 | tnp.org 5340 | togetter.com 5341 | toh.info 5342 | tokyo-247.com 5343 | tokyocn.com 5344 | tokyo-hot.com 5345 | tokyo-porn-tube.com 5346 | tongil.or.kr 5347 | tono-oka.jp 5348 | tonyyan.net 5349 | toodoc.com 5350 | toonel.net 5351 | top10vpn.com 5352 | top81.ws 5353 | topbtc.com 5354 | topic.youthwant.com.tw 5355 | topnews.in 5356 | to-porno.com 5357 | toppornsites.com 5358 | topshareware.com 5359 | topsy.com 5360 | toptip.ca 5361 | top.tv 5362 | tora.to 5363 | tor.blingblingsquad.net 5364 | torcn.com 5365 | tor.cn.uptodown.com 5366 | torguard.net 5367 | torlock.com 5368 | torproject.org 5369 | torrentkitty.tv 5370 | torrentprivacy.com 5371 | torrentproject.se 5372 | torrenty.org 5373 | torrentz.eu 5374 | tor.updatestar.com 5375 | torvpn.com 5376 | t.orzdream.com 5377 | tosh.comedycentral.com 5378 | totalvpn.com 5379 | toutiaoabc.com 5380 | towngain.com 5381 | toypark.in 5382 | toythieves.com 5383 | toytractorshow.com 5384 | tparents.org 5385 | tpi.org.tw 5386 | tracfone.com 5387 | tradingview.com 5388 | traffichaus.com 5389 | translate.goog 5390 | translate.google 5391 | transparency.org 5392 | trans.wenweipo.com 5393 | travelinkcard.com 5394 | treemall.com.tw 5395 | trendsmap.com 5396 | trialofccp.org 5397 | trickip.net 5398 | trickip.org 5399 | trimondi.de 5400 | tronscan.org 5401 | trouw.nl 5402 | trtc.com.tw 5403 | trt.net.tr 5404 | truebuddha-md.org 5405 | truesocial.media 5406 | trulyergonomic.com 5407 | truth101.co.tv 5408 | truthontour.org 5409 | truveo.com 5410 | tryheart.jp 5411 | tsctv.net 5412 | tsdr.uspto.gov 5413 | tsemtulku.com 5414 | tsquare.tv 5415 | tsunagarumon.com 5416 | tsu.org.tw 5417 | tt1069.com 5418 | ttct.edu.tw 5419 | tttan.com 5420 | ttvnw.net 5421 | ttwstatic.com 5422 | tu8964.com 5423 | tubaholic.com 5424 | tube8.com 5425 | tube911.com 5426 | tube.com 5427 | tubecup.com 5428 | tubegals.com 5429 | tubeislam.com 5430 | tubepornclassic.com 5431 | tubestack.com 5432 | tubewolf.com 5433 | tuibeitu.net 5434 | tuidang.net 5435 | tuidang.org 5436 | tuidang.se 5437 | tui.orzdream.com 5438 | tuitwit.com 5439 | tumblr.com 5440 | tumutanzi.com 5441 | tumview.com 5442 | tunein.com 5443 | tunnelbear.com 5444 | tunnelblick.net 5445 | tunnelr.com 5446 | tunsafe.com 5447 | tuo8.blue 5448 | tuo8.cc 5449 | tuo8.club 5450 | tuo8.fit 5451 | tuo8.hk 5452 | tuo8.in 5453 | tuo8.ninja 5454 | tuo8.org 5455 | tuo8.pw 5456 | tuo8.red 5457 | tuo8.space 5458 | turansam.org 5459 | turbobit.net 5460 | turbohide.com 5461 | turbotwitter.com 5462 | turkistantimes.com 5463 | turntable.fm 5464 | tushycash.com 5465 | tuvpn.com 5466 | tuzaijidi.com 5467 | tvants.com 5468 | tvboxnow.com 5469 | tvbs.com.tw 5470 | tv.com 5471 | tv.google 5472 | tvider.com 5473 | tv.jtbc.joins.com 5474 | tvmost.com.hk 5475 | tvplayvideos.com 5476 | tvunetworks.com 5477 | tw01.org 5478 | twaitter.com 5479 | tw.answers.yahoo.com 5480 | twapperkeeper.com 5481 | twaud.io 5482 | twavi.com 5483 | twbbs.net.tw 5484 | twbbs.org 5485 | twbbs.tw 5486 | tw.bid.yahoo.com 5487 | tw-blog.com 5488 | twblogger.com 5489 | tweepguide.com 5490 | tweeplike.me 5491 | tweepmag.com 5492 | tweepml.org 5493 | tweetbackup.com 5494 | tweetboard.com 5495 | tweetboner.biz 5496 | tweetcs.com 5497 | tweetdeck.com 5498 | tweetedtimes.com 5499 | tweetmylast.fm 5500 | tweetphoto.com 5501 | tweetrans.com 5502 | tweetree.com 5503 | tweets.seraph.me 5504 | tweettunnel.com 5505 | tweetwally.com 5506 | tweetymail.com 5507 | tweez.net 5508 | twelve.today 5509 | twerkingbutt.com 5510 | twftp.org 5511 | tw.gigacircle.com 5512 | twgreatdaily.com 5513 | tw.hao123.com 5514 | twibase.com 5515 | twibble.de 5516 | twibbon.com 5517 | twibs.com 5518 | twicountry.org 5519 | twicsy.com 5520 | twiends.com 5521 | twifan.com 5522 | twiffo.com 5523 | twiggit.org 5524 | twilightsex.com 5525 | twilog.org 5526 | twimbow.com 5527 | twimg.com 5528 | twimg.edgesuite.net 5529 | twindexx.com 5530 | twip.me 5531 | twipple.jp 5532 | tw.iqiyi.com 5533 | twishort.com 5534 | twistar.cc 5535 | twisterio.com 5536 | twister.net.co 5537 | twisternow.com 5538 | twistory.net 5539 | twit2d.com 5540 | twitbrowser.net 5541 | twitcause.com 5542 | twitchcdn.net 5543 | twitch.tv 5544 | twitgether.com 5545 | twitgoo.com 5546 | twitiq.com 5547 | twitlonger.com 5548 | twitmania.com 5549 | twitoaster.com 5550 | twitonmsn.com 5551 | twitpic.com 5552 | twitstat.com 5553 | twittbot.net 5554 | twitter4j.org 5555 | twitter.com 5556 | twittercounter.com 5557 | twitterfeed.com 5558 | twittergadget.com 5559 | twitter.jp 5560 | twitterkr.com 5561 | twittermail.com 5562 | twitterrific.com 5563 | twittertim.es 5564 | twitthat.com 5565 | twitturk.com 5566 | twitturly.com 5567 | twitvid.com 5568 | twitzap.com 5569 | twiyia.com 5570 | tw.jiepang.com 5571 | tw.knowledge.yahoo.com 5572 | tw.mall.yahoo.com 5573 | tw.mobi.yahoo.com 5574 | tw.money.yahoo.com 5575 | tw.myblog.yahoo.com 5576 | tw.news.yahoo.com 5577 | twnorth.org.tw 5578 | tw-npo.org 5579 | twreporter.org 5580 | twskype.com 5581 | twstar.net 5582 | tw.streetvoice.com 5583 | twtkr.com 5584 | tw.tomonews.net 5585 | twtr2src.ogaoga.org 5586 | twtrland.com 5587 | twt.tl 5588 | twttr.com 5589 | twurl.nl 5590 | tw.voa.mobi 5591 | twyac.org 5592 | tw.yahoo.com 5593 | txxx.com 5594 | tycool.com 5595 | typepad.com 5596 | typora.io 5597 | u15.info 5598 | u9un.com 5599 | ub0.cc 5600 | ubddns.org 5601 | uberproxy.net 5602 | ucdc1998.org 5603 | uchicago.edu 5604 | uc-japan.org 5605 | uderzo.it 5606 | udnbkk.com 5607 | udn.com 5608 | udn.com.tw 5609 | udndata.com 5610 | uforadio.com.tw 5611 | ufreevpn.com 5612 | ugo.com 5613 | uhdwallpapers.org 5614 | uhrp.org 5615 | uighurbiz.net 5616 | uighur.narod.ru 5617 | uighur.nl 5618 | ukcdp.co.uk 5619 | ukliferadio.co.uk 5620 | uku.im 5621 | ulike.net 5622 | ulop.net 5623 | ultravpn.fr 5624 | ultraxs.com 5625 | umich.edu 5626 | unblock.cn.com 5627 | unblockdmm.com 5628 | unblocker.yt 5629 | unblocksit.es 5630 | unblock-us.com 5631 | uncyclomedia.org 5632 | uncyclopedia.hk 5633 | uncyclopedia.tw 5634 | underwoodammo.com 5635 | unholyknight.com 5636 | uni.cc 5637 | unification.net 5638 | unification.org.tw 5639 | unirule.cloud 5640 | unitedsocialpress.com 5641 | unix100.com 5642 | unknownspace.org 5643 | unodedos.com 5644 | unpo.org 5645 | unseen.is 5646 | unstable.icu 5647 | untraceable.us 5648 | uocn.org 5649 | upcoming.yahoo.com 5650 | updates.tdesktop.com 5651 | upghsbc.com 5652 | upholdjustice.org 5653 | upload4u.info 5654 | uploaded.net 5655 | uploaded.to 5656 | uploadstation.com 5657 | upmedia.mg 5658 | upornia.com 5659 | uproxy.org 5660 | uptodown.com 5661 | upwill.org 5662 | ur7s.com 5663 | uraban.me 5664 | urbandictionary.com 5665 | urbansurvival.com 5666 | urchin.com 5667 | urlborg.com 5668 | urlparser.com 5669 | usacn.com 5670 | usaip.eu 5671 | use.fontawesome.com 5672 | usefreevpn.com 5673 | userapi.nytlog.com 5674 | users.skynet.be 5675 | usfk.mil 5676 | ushuarencity.echainhost.com 5677 | usinfo.state.gov 5678 | usma.edu 5679 | usmc.mil 5680 | usmgtcg.ning.com 5681 | usno.navy.mil 5682 | usocctn.com 5683 | ustibetcommittee.org 5684 | us.to 5685 | ustream.tv 5686 | usunitednews.com 5687 | usus.cc 5688 | utopianpal.com 5689 | uu-gg.com 5690 | uukanshu.com 5691 | uvwxyz.xyz 5692 | uwants.com 5693 | uwants.net 5694 | uyghuraa.org 5695 | uyghuramerican.org 5696 | uyghurbiz.org 5697 | uyghurcanadiansociety.org 5698 | uyghurcongress.org 5699 | uyghur.co.uk 5700 | uyghurensemble.co.uk 5701 | uyghur-j.org 5702 | uyghurpen.org 5703 | uyghurpress.com 5704 | uyghurstudies.org 5705 | uygur.fc2web.com 5706 | uygur.org 5707 | uymaarip.com 5708 | v2ex.com 5709 | v2fly.org 5710 | v2mm.tech 5711 | v2raycn.com 5712 | v2ray.com 5713 | v2raytech.com 5714 | valeursactuelles.com 5715 | van001.com 5716 | van698.com 5717 | vanemu.cn 5718 | vanilla-jp.com 5719 | vanpeople.com 5720 | vansky.com 5721 | vaticannews.va 5722 | vatn.org 5723 | vcfbuilder.org 5724 | vcf-online.org 5725 | vds.rightster.com 5726 | vegasred.com 5727 | vegas.williamhill.com 5728 | velkaepocha.sk 5729 | venbbs.com 5730 | venchina.com 5731 | venetianmacao.com 5732 | ventureswell.com 5733 | veoh.com 5734 | vermonttibet.org 5735 | versavpn.com 5736 | verybs.com 5737 | vevo.com 5738 | vft.com.tw 5739 | viber.com 5740 | vica.info 5741 | victimsofcommunism.org 5742 | vidble.com 5743 | video.aol.ca 5744 | video.aol.com 5745 | video.aol.co.uk 5746 | video.ap.org 5747 | videobam.com 5748 | videodetective.com 5749 | video.fdbox.com 5750 | video.foxbusiness.com 5751 | videomega.tv 5752 | videomo.com 5753 | video.pbs.org 5754 | videopediaworld.com 5755 | videopress.com 5756 | video.yahoo.com 5757 | vidinfo.org 5758 | vid.me 5759 | vietdaikynguyen.com 5760 | vijayatemple.org 5761 | vilavpn.com 5762 | vimeocdn.com 5763 | vimeo.com 5764 | vimperator.org 5765 | vincnd.com 5766 | vine.co 5767 | vinniev.com 5768 | vip-enterprise.com 5769 | virtualrealporn.com 5770 | visibletweets.com 5771 | vital247.org 5772 | viu.com 5773 | viu.tv 5774 | vivahentai4u.net 5775 | vivaldi.net 5776 | vivatube.com 5777 | vivthomas.com 5778 | vizvaz.com 5779 | vjav.com 5780 | vjmedia.com.hk 5781 | vllcs.org 5782 | vlog.xuite.net 5783 | vmixcore.com 5784 | vmpsoft.com 5785 | vnet.link 5786 | vn.hao123.com 5787 | voa-11.akacast.akamaistream.net 5788 | voacambodia.com 5789 | voacantonese.com 5790 | voachineseblog.com 5791 | voachinese.com 5792 | voagd.com 5793 | voaindonesia.com 5794 | voanews.com 5795 | voatibetan.com 5796 | voatibetanenglish.com 5797 | vocativ.com 5798 | vocn.tv 5799 | vocus.cc 5800 | vod-abematv.akamaized.net 5801 | vod.wwe.com 5802 | voicettank.org 5803 | vot.org 5804 | vovo2000.com 5805 | voxer.com 5806 | voy.com 5807 | vpn4all.com 5808 | vpn.ac 5809 | vpnaccount.org 5810 | vpnaccounts.com 5811 | vpnbook.com 5812 | vpn.cjb.net 5813 | vpn.cmu.edu 5814 | vpncomparison.org 5815 | vpncoupons.com 5816 | vpncup.com 5817 | vpndada.com 5818 | vpnfan.com 5819 | vpnfire.com 5820 | vpnfires.biz 5821 | vpnforgame.net 5822 | vpngate.jp 5823 | vpngate.net 5824 | vpngratis.net 5825 | vpnhq.com 5826 | vpnhub.com 5827 | vpninja.net 5828 | vpnintouch.com 5829 | vpnintouch.net 5830 | vpnjack.com 5831 | vpnmaster.com 5832 | vpnmentor.com 5833 | vpnpick.com 5834 | vpnpop.com 5835 | vpnpronet.com 5836 | vpnreactor.com 5837 | vpnreviewz.com 5838 | vpnsecure.me 5839 | vpnshazam.com 5840 | vpnshieldapp.com 5841 | vpnsp.com 5842 | vpn.sv.cmu.edu 5843 | vpntraffic.com 5844 | vpntunnel.com 5845 | vpnuk.info 5846 | vpnunlimitedapp.com 5847 | vpnvip.com 5848 | vpnworldwide.com 5849 | vporn.com 5850 | vpser.net 5851 | vraiesagesse.net 5852 | vrmtr.com 5853 | vrsmash.com 5854 | vtunnel.com 5855 | vuku.cc 5856 | vultryhw.com 5857 | vyprvpn.com 5858 | w3schools.com 5859 | waffle1999.com 5860 | wahas.com 5861 | waigaobu.com 5862 | waikeung.org 5863 | wailaike.net 5864 | wainao.me 5865 | waiwaier.com 5866 | wallmama.com 5867 | wallornot.org 5868 | wallpapercasa.com 5869 | wallproxy.com 5870 | wallsttv.com 5871 | waltermartin.com 5872 | waltermartin.org 5873 | wanderinghorse.net 5874 | wangafu.net 5875 | wangjinbo.org 5876 | wanglixiong.com 5877 | wango.org 5878 | wangruoshui.net 5879 | want-daily.com 5880 | wanz-factory.com 5881 | wapedia.mobi 5882 | warbler.iconfactory.net 5883 | warroom.org 5884 | waselpro.com 5885 | washeng.net 5886 | washingtonpost.com 5887 | watch8x.com 5888 | watchinese.com 5889 | watchmygf.net 5890 | watchout.tw 5891 | wattpad.com 5892 | waveprotocol.org 5893 | wav.tv 5894 | waymo.com 5895 | wda.gov.tw 5896 | wdf5.com 5897 | wearehairy.com 5898 | wearn.com 5899 | web2project.net 5900 | webbang.net 5901 | web.dev 5902 | webevader.org 5903 | webfreer.com 5904 | webjb.org 5905 | weblagu.com 5906 | webmproject.org 5907 | webpass.net 5908 | webrtc.org 5909 | webrush.net 5910 | website.informer.com 5911 | websitepulse.com 5912 | webs-tv.net 5913 | webwarper.net 5914 | webworkerdaily.com 5915 | wechatlawsuit.com 5916 | weekmag.info 5917 | wefightcensorship.org 5918 | wefong.com 5919 | wego.here.com 5920 | weiboleak.com 5921 | weiboscope.jmsc.hku.hk 5922 | weihuo.org 5923 | weijingsheng.org 5924 | weiming.info 5925 | weiquanwang.org 5926 | weisuo.ws 5927 | welovecock.com 5928 | welt.de 5929 | wemigrate.org 5930 | wengewang.com 5931 | wengewang.org 5932 | wenhui.ch 5933 | wenweipo.com 5934 | wenxuecity.com 5935 | wenyunchao.com 5936 | wenzhao.ca 5937 | westca.com 5938 | westernshugdensociety.org 5939 | westernwolves.com 5940 | westkit.net 5941 | westpoint.edu 5942 | wetplace.com 5943 | wetpussygames.com 5944 | wexiaobo.org 5945 | wezhiyong.org 5946 | wezone.net 5947 | wforum.com 5948 | wha.la 5949 | whatblocked.com 5950 | whatbrowser.org 5951 | whatsapp.com 5952 | whatsapp.net 5953 | whatsonweibo.com 5954 | wheatseeds.org 5955 | wheelockslatin.com 5956 | whereiswerner.com 5957 | wheretowatch.com 5958 | whichav.com 5959 | whippedass.com 5960 | whispersystems.org 5961 | whitebear.freebearblog.org 5962 | whodns.xyz 5963 | whoer.net 5964 | whotalking.com 5965 | whylover.com 5966 | whyx.org 5967 | w.idaiwan.com 5968 | widevine.com 5969 | wikaba.com 5970 | wikia.com 5971 | wikibooks.org 5972 | wiki.cnitter.com 5973 | wikidata.org 5974 | wiki.esu.im 5975 | wiki.gamerp.jp 5976 | wiki.jqueryui.com 5977 | wiki.keso.cn 5978 | wiki.kfd.me 5979 | wikileaks.ch 5980 | wikileaks.com 5981 | wikileaks.de 5982 | wikileaks.eu 5983 | wikileaks-forum.com 5984 | wikileaks.lu 5985 | wikileaks.org 5986 | wikileaks.pl 5987 | wikilivres.info 5988 | wikimapia.org 5989 | wikimedia.org 5990 | wiki.moegirl.org 5991 | wikinews.org 5992 | wiki.oauth.net 5993 | wikipedia.org 5994 | wiki.phonegap.com 5995 | wikiquote.org 5996 | wikisource.org 5997 | wikiversity.org 5998 | wikivoyage.org 5999 | wikiwand.com 6000 | wikiwiki.jp 6001 | wiktionary.org 6002 | wildammo.com 6003 | williamhill.com 6004 | willw.net 6005 | windowsphoneme.com 6006 | windscribe.com 6007 | wingamestore.com 6008 | wingy.site 6009 | winning11.com 6010 | winwhispers.info 6011 | wionews.com 6012 | wire.com 6013 | wiredbytes.com 6014 | wiredpen.com 6015 | wireguard.com 6016 | wisdompubs.org 6017 | wisevid.com 6018 | withgoogle.com 6019 | withyoutube.com 6020 | witnessleeteaching.com 6021 | witopia.net 6022 | wizcrafts.net 6023 | wjbk.org 6024 | wlcnew.jigsy.com 6025 | wlx.sowiki.net 6026 | wnacg.com 6027 | wnacg.org 6028 | wn.com 6029 | wo3ttt.wordpress.com 6030 | wo3t.wordpress.com 6031 | woeser.com 6032 | woesermiddle-way.net 6033 | wokar.org 6034 | wolfax.com 6035 | wombo.ai 6036 | woolyss.com 6037 | woopie.jp 6038 | woopie.tv 6039 | wordpress.com 6040 | workatruna.com 6041 | workerdemo.org.hk 6042 | workerempowerment.org 6043 | workersthebig.net 6044 | worldcat.org 6045 | worldjournal.com 6046 | worldpopulationreview.com 6047 | worldvpn.net 6048 | wo.tc 6049 | wow.com 6050 | wowgirls.com 6051 | wowlegacy.ml 6052 | wow-life.net 6053 | wowporn.com 6054 | wowrk.com 6055 | woxinghuiguo.com 6056 | woyaolian.org 6057 | wozy.in 6058 | wp.com 6059 | wpoforum.com 6060 | wqyd.org 6061 | wrchina.org 6062 | wretch.cc 6063 | writer.zoho.com 6064 | wsj.com 6065 | wsjhk.com 6066 | wsj.net 6067 | wtbn.org 6068 | wtfast.com 6069 | wtfpeople.com 6070 | wuerkaixi.com 6071 | wufafangwen.com 6072 | wufi.org.tw 6073 | wuguoguang.com 6074 | wujieliulan.com 6075 | wujie.net 6076 | wukangrui.net 6077 | wuw.red 6078 | wuyanblog.com 6079 | wwe.com 6080 | w.wiki 6081 | wwitv.com 6082 | www1.american.edu 6083 | www1.biz 6084 | www2.ohchr.org 6085 | www2.rocketbbs.com 6086 | www.abclite.net 6087 | www.ajsands.com 6088 | www.americorps.gov 6089 | www.antd.org 6090 | www.aolnews.com 6091 | www.businessinsider.com.au 6092 | www.citizenlab.org 6093 | www.cmoinc.org 6094 | www.cool18.com 6095 | www.dmm.com 6096 | www.dwheeler.com 6097 | www.eastturkistan.net 6098 | www.gmiddle.com 6099 | www.gmiddle.net 6100 | www.gmll.org 6101 | wwwhost.biz 6102 | www.hostloc.com 6103 | www.hustlercash.com 6104 | www.idlcoyote.com 6105 | www.imdb.com 6106 | www.kindleren.com 6107 | www.klip.me 6108 | www.lamenhu.com 6109 | www.lib.virginia.edu 6110 | www.linksalpha.com 6111 | www.metro.taipei 6112 | www.monlamit.org 6113 | www.moztw.org 6114 | www.m-sport.co.uk 6115 | www.nbc.com 6116 | www.orchidbbs.com 6117 | www.owind.com 6118 | www.oxid.it 6119 | www.powerpointninja.com 6120 | www.s4miniarchive.com 6121 | www.sciencemag.org 6122 | www.shadowsocks.com 6123 | www.skype.com 6124 | www.tablesgenerator.com 6125 | www.taiwanonline.cc 6126 | www.taup.org.tw 6127 | www.thechinastory.org 6128 | www.wangruowang.org 6129 | www.wan-press.org 6130 | www.websnapr.com 6131 | www.zensur.freerk.com 6132 | wzyboy.im 6133 | x1949x.com 6134 | x24hr.com 6135 | x365x.com 6136 | xanga.com 6137 | x-art.com 6138 | xa.yimg.com 6139 | xbabe.com 6140 | x-berry.com 6141 | xbookcn.com 6142 | xbtce.com 6143 | xcafe.in 6144 | xcity.jp 6145 | x.co 6146 | x.company 6147 | xcritic.com 6148 | xda-developers.com 6149 | xerotica.com 6150 | xfinity.com 6151 | xfm.pp.ru 6152 | xgmyd.com 6153 | xhamster.com 6154 | xhcdn.com 6155 | xianba.net 6156 | xianchawang.net 6157 | xianjian.tw 6158 | xianqiao.net 6159 | xiaobaiwu.com 6160 | xiaochuncnjp.com 6161 | xiaod.in 6162 | xiaohexie.com 6163 | xiaolan.me 6164 | xiaoma.org 6165 | xiaxiaoqiang.net 6166 | xiezhua.com 6167 | xihua.es 6168 | xijie.wordpress.com 6169 | xing.com 6170 | xinhuanet.org 6171 | xinmiao.com.hk 6172 | xinqimeng.over-blog.com 6173 | xinsheng.net 6174 | xinshijue.com 6175 | xinyubbs.net 6176 | xiongpian.com 6177 | xiuren.org 6178 | xixicui.icu 6179 | xizang-zhiye.org 6180 | xjp.cc 6181 | xjtravelguide.com 6182 | xkiwi.tk 6183 | xlfmtalk.com 6184 | xlfmwz.info 6185 | xm.com 6186 | xml-training-guide.com 6187 | xmovies.com 6188 | xn--4gq171p.com 6189 | xn--90wwvt03e.com 6190 | xn--czq75pvv1aj5c.org 6191 | xn--i2ru8q2qg.com 6192 | xn--ngstr-lra8j.com 6193 | xn--oiq.cc 6194 | xn--p8j9a0d9c9a.xn--q9jyb4c 6195 | xnxx-cdn.com 6196 | xnxx.com 6197 | xpdo.net 6198 | xpud.org 6199 | xrentdvd.com 6200 | xsden.info 6201 | xskywalker.com 6202 | xskywalker.net 6203 | xtube.com 6204 | xuchao.net 6205 | xuchao.org 6206 | xuehua.us 6207 | xuite.net 6208 | xuzhiyong.net 6209 | xvbelink.com 6210 | xvideo.cc 6211 | xvideos-cdn.com 6212 | xvideos.com 6213 | xvideos.es 6214 | xvinlink.com 6215 | x-wall.org 6216 | xxbbx.com 6217 | xxlmovies.com 6218 | xxuz.com 6219 | xxx.com 6220 | xxxfuckmom.com 6221 | xxxx.com.au 6222 | xxx.xxx 6223 | xxxy.biz 6224 | xxxy.info 6225 | xxxymovies.com 6226 | xysblogs.org 6227 | xys.dxiong.com 6228 | xys.org 6229 | xyy69.com 6230 | xyy69.info 6231 | y2mate.com 6232 | yadi.sk 6233 | yahoo.co.jp 6234 | yahoo.com.hk 6235 | yahoo.com.tw 6236 | yakbutterblues.com 6237 | yam.com 6238 | yam.org.tw 6239 | yande.re 6240 | yanghengjun.com 6241 | yangjianli.com 6242 | yasni.co.uk 6243 | yayabay.com 6244 | ydy.com 6245 | yeahteentube.com 6246 | yecl.net 6247 | yeelou.com 6248 | yeeyi.com 6249 | yegle.net 6250 | yes123.com.tw 6251 | yesasia.com 6252 | yesasia.com.hk 6253 | yes-news.com 6254 | yespornplease.com 6255 | yes.xxx 6256 | yeyeclub.com 6257 | ygto.com 6258 | yhcw.net 6259 | yibada.com 6260 | yibaochina.com 6261 | yidio.com 6262 | yigeni.com 6263 | yilubbs.com 6264 | yingsuoss.com 6265 | yinlei.org 6266 | yipub.com 6267 | yiyechat.com 6268 | yizhihongxing.com 6269 | yobit.net 6270 | yobt.com 6271 | yobt.tv 6272 | yogichen.org 6273 | yolasite.com 6274 | yomiuri.co.jp 6275 | yong.hu 6276 | yorkbbs.ca 6277 | youdontcare.com 6278 | you-get.org 6279 | youjizz.com 6280 | youlucky.com 6281 | youmaker.com 6282 | youngpornvideos.com 6283 | youngspiration.hk 6284 | youpai.org 6285 | youporn.com 6286 | youporngay.com 6287 | yourepeat.com 6288 | your-freedom.net 6289 | yourlisten.com 6290 | yourlust.com 6291 | yourprivatevpn.com 6292 | yourtrap.com 6293 | yousendit.com 6294 | youshun12.com 6295 | youthforfreechina.org 6296 | youthnetradio.org 6297 | youtu.be 6298 | youtubecn.com 6299 | youtube.com 6300 | youtubeeducation.com 6301 | youtubegaming.com 6302 | youtubekids.com 6303 | youtube-nocookie.com 6304 | youversion.com 6305 | youwin.com 6306 | youxu.info 6307 | yt.be 6308 | ytht.net 6309 | ytimg.com 6310 | ytn.co.kr 6311 | yuanming.net 6312 | yuanzhengtang.org 6313 | yuetwanlauseng.com 6314 | yulghun.com 6315 | yunchao.net 6316 | yuntipub.com 6317 | yuvutu.com 6318 | yvesgeleyn.com 6319 | ywpw.com 6320 | yx51.net 6321 | yyii.org 6322 | yyjlymb.xyz 6323 | yzzk.com 6324 | zacebook.com 6325 | zalmos.com 6326 | zannel.com 6327 | zaobao.com 6328 | zaobao.com.sg 6329 | zaozon.com 6330 | zapto.org 6331 | zattoo.com 6332 | zb.com 6333 | zdnet.com.tw 6334 | zello.com 6335 | zengjinyan.org 6336 | zenmate.com 6337 | zenmate.com.ru 6338 | zerohedge.com 6339 | zeronet.io 6340 | zeutch.com 6341 | zfreet.com 6342 | zgsddh.com 6343 | zgzcjj.net 6344 | zhanbin.net 6345 | zhangboli.net 6346 | zhangtianliang.com 6347 | zhanlve.org 6348 | zhao.1984.city 6349 | zhao.jinhai.de 6350 | zh.bitterwinter.org 6351 | zh.ecdm.wikia.com 6352 | zhenghui.org 6353 | zhengjian.org 6354 | zhengwunet.org 6355 | zhenlibu1984.com 6356 | zhenlibu.info 6357 | zhenxiang.biz 6358 | zhinengluyou.com 6359 | zhongguo.ca 6360 | zhongguorenquan.org 6361 | zhongguotese.net 6362 | zhongmeng.org 6363 | zhoushuguang.com 6364 | zh.pokerstrategy.com 6365 | zh.pttpedia.wikia.com 6366 | zhreader.com 6367 | zhuangbi.me 6368 | zhuanxing.cn 6369 | zhuatieba.com 6370 | zhuichaguoji.org 6371 | zhujiget.com 6372 | zh.uncyclopedia.wikia.com 6373 | zh.wikinews.org 6374 | zh.wikiquote.org 6375 | zh.wikisource.org 6376 | zi5.me 6377 | ziddu.com 6378 | zillionk.com 6379 | zi.media 6380 | zim.vn 6381 | zind.cloud 6382 | zinio.com 6383 | ziporn.com 6384 | zippyshare.com 6385 | zkaip.com 6386 | zkiz.com 6387 | z-lib.org 6388 | zmw.cn 6389 | zodgame.us 6390 | zoho.com 6391 | zomobo.net 6392 | zonaeuropa.com 6393 | zonghexinwen.com 6394 | zonghexinwen.net 6395 | zoogvpn.com 6396 | zootool.com 6397 | zoozle.net 6398 | zophar.net 6399 | zorrovpn.com 6400 | zozotown.com 6401 | zpn.im 6402 | zsdxzk.com 6403 | zspeeder.me 6404 | zsrhao.com 6405 | zuobiao.me 6406 | zuo.la 6407 | zuola.com 6408 | zvereff.com 6409 | zynaima.com 6410 | zynamics.com 6411 | zyns.com 6412 | zyxel.com 6413 | zyzc9.com 6414 | zzcartoon.com 6415 | zzcloud.me 6416 | zzux.com 6417 | -------------------------------------------------------------------------------- /cleardns/start.sh: -------------------------------------------------------------------------------- 1 | temp=`docker ps -a | grep -o cleardns` 2 | if [ "$temp" != "" ]; then 3 | docker rm -f cleardns > /dev/null 4 | fi 5 | docker run --restart always \ 6 | --name cleardns \ 7 | --network macvlan \ 8 | --privileged -d \ 9 | -v /etc/cleardns:/etc/cleardns \ 10 | -v /etc/timezone:/etc/timezone:ro \ 11 | -v /etc/localtime:/etc/localtime:ro \ 12 | dnomd343/cleardns:latest > /dev/null 13 | sleep 1s 14 | docker ps -a 15 | -------------------------------------------------------------------------------- /cleardns/upstream/domestic.conf: -------------------------------------------------------------------------------- 1 | 223.5.5.5 2 | 119.29.29.29 3 | 114.114.114.114 4 | -------------------------------------------------------------------------------- /freedom/check.sh: -------------------------------------------------------------------------------- 1 | php_file="/etc/freedom/check.php" 2 | cat>$php_file<<"EOF" 3 | ["http://baidu.com", "192.168.2.4:1084"], 9 | "ipv6_direct" => ["http://test6.nju.edu.cn", "192.168.2.4:1086"], 10 | "ipv4_proxy" => ["http://google.com", "192.168.2.4:1094"], 11 | "ipv6_proxy" => ["http://ipv6.google.com", "192.168.2.4:1096"] 12 | ); 13 | 14 | foreach ($check_list as $name => $fields) { 15 | echo $name . ' -> '; 16 | if (check_target($fields[0], $fields[1])) { 17 | echo 'ok' . PHP_EOL; 18 | } else { 19 | echo 'error' . PHP_EOL; 20 | } 21 | } 22 | 23 | function check_target($url, $socks) { 24 | global $time_out; 25 | $cmd = 'curl --silent ' . $url . ' --max-time ' . $time_out . ' --socks5 ' . $socks; 26 | $content = shell_exec($cmd); 27 | return (strstr(strtolower($content), ' 31 | EOF 32 | php $php_file 33 | rm -f $php_file 34 | -------------------------------------------------------------------------------- /freedom/start.sh: -------------------------------------------------------------------------------- 1 | temp=`docker ps -a | grep -o freedom` 2 | if [ "$temp" != "" ]; then 3 | docker rm -f freedom > /dev/null 4 | fi 5 | docker run --restart always \ 6 | --name freedom \ 7 | --privileged -d \ 8 | --network macvlan \ 9 | --ip=192.168.2.5 \ 10 | --dns=192.168.2.4 \ 11 | -e V2RAYA_ADDRESS=0.0.0.0:80 \ 12 | -e V2RAYA_V2RAY_BIN=/usr/bin/xray \ 13 | -v /etc/freedom:/etc/v2raya \ 14 | -v /usr/bin/xray:/usr/bin/xray \ 15 | -v /etc/timezone:/etc/timezone:ro \ 16 | -v /etc/localtime:/etc/localtime:ro \ 17 | mzz2017/v2raya > /dev/null 18 | sleep 1s 19 | docker ps -a 20 | -------------------------------------------------------------------------------- /nginx/conf.d/adg.conf: -------------------------------------------------------------------------------- 1 | server { 2 | listen 80; 3 | server_name adg.scut.343.re; 4 | return 301 https://$server_name$request_uri; 5 | } 6 | 7 | server { 8 | listen 443 http2 ssl; 9 | server_name adg.scut.343.re; 10 | include conf.d/cert.conf; 11 | include conf.d/zip.conf; 12 | 13 | location / { 14 | proxy_pass http://192.168.2.3; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /nginx/conf.d/ap.conf: -------------------------------------------------------------------------------- 1 | server { 2 | listen 80; 3 | server_name ap.scut.343.re; 4 | return 301 https://$server_name$request_uri; 5 | } 6 | 7 | server { 8 | listen 443 http2 ssl; 9 | server_name ap.scut.343.re; 10 | include conf.d/cert.conf; 11 | include conf.d/zip.conf; 12 | 13 | location / { 14 | proxy_set_header Host $http_host; 15 | proxy_pass http://192.168.2.98; 16 | subs_filter '^http:\/\/' '^https?:\/\/'; 17 | subs_filter_types *; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /nginx/conf.d/cert.conf: -------------------------------------------------------------------------------- 1 | ssl_stapling on; 2 | ssl_stapling_verify on; 3 | ssl_certificate /etc/ssl/certs/scut.343.re/fullchain.pem; 4 | ssl_certificate_key /etc/ssl/certs/scut.343.re/privkey.pem; 5 | 6 | ssl_session_cache shared:SSL:50m; 7 | add_header Strict-Transport-Security "max-age=15552000"; 8 | 9 | ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3; 10 | #ssl_protocols TLSv1.2 TLSv1.3; 11 | #ssl_ciphers TLS_AES_128_GCM_SHA256:TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384; 12 | -------------------------------------------------------------------------------- /nginx/conf.d/default.conf: -------------------------------------------------------------------------------- 1 | server { 2 | listen 80; 3 | server_name localhost; 4 | 5 | location / { 6 | root /usr/share/nginx/html; 7 | index index.html index.htm; 8 | } 9 | 10 | error_page 500 502 503 504 /50x.html; 11 | location = /50x.html { 12 | root /usr/share/nginx/html; 13 | } 14 | } 15 | 16 | -------------------------------------------------------------------------------- /nginx/conf.d/relay.conf: -------------------------------------------------------------------------------- 1 | server { 2 | listen 80; 3 | server_name relay.scut.343.re; 4 | return 301 https://$server_name$request_uri; 5 | } 6 | 7 | server { 8 | listen 443 http2 ssl; 9 | server_name relay.scut.343.re; 10 | include conf.d/cert.conf; 11 | include conf.d/zip.conf; 12 | 13 | location / { 14 | proxy_pass http://192.168.2.97; 15 | subs_filter 'tplogin.cn' 'relay.scut.343.re'; 16 | subs_filter_types *; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /nginx/conf.d/route.conf: -------------------------------------------------------------------------------- 1 | server { 2 | listen 80; 3 | server_name route.scut.343.re; 4 | return 301 https://$server_name$request_uri; 5 | } 6 | 7 | server { 8 | listen 443 http2 ssl; 9 | server_name route.scut.343.re; 10 | include conf.d/cert.conf; 11 | include conf.d/zip.conf; 12 | 13 | location / { 14 | proxy_pass http://192.168.2.1; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /nginx/conf.d/st.conf: -------------------------------------------------------------------------------- 1 | server { 2 | listen 80; 3 | server_name st.scut.343.re; 4 | return 301 https://$server_name$request_uri; 5 | } 6 | 7 | server { 8 | listen 443 http2 ssl; 9 | server_name st.scut.343.re; 10 | include conf.d/cert.conf; 11 | include conf.d/zip.conf; 12 | root /var/www/speedtest; 13 | 14 | location / { 15 | index index.html; 16 | } 17 | 18 | location ~ \.php$ { 19 | include fastcgi_params; 20 | fastcgi_pass unix:/var/run/php/php7.3-fpm.sock; 21 | fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /nginx/conf.d/switch.conf: -------------------------------------------------------------------------------- 1 | server { 2 | listen 80; 3 | server_name switch.scut.343.re; 4 | return 301 https://$server_name$request_uri; 5 | } 6 | 7 | server { 8 | listen 443 http2 ssl; 9 | server_name switch.scut.343.re; 10 | include conf.d/cert.conf; 11 | include conf.d/zip.conf; 12 | 13 | location / { 14 | proxy_set_header Host $http_host; 15 | proxy_pass http://192.168.2.99; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /nginx/conf.d/v2a.conf: -------------------------------------------------------------------------------- 1 | server { 2 | listen 80; 3 | server_name v2a.scut.343.re; 4 | return 301 https://$server_name$request_uri; 5 | } 6 | 7 | server { 8 | listen 443 http2 ssl; 9 | server_name v2a.scut.343.re; 10 | include conf.d/cert.conf; 11 | include conf.d/zip.conf; 12 | 13 | location / { 14 | proxy_pass http://192.168.2.5; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /nginx/conf.d/zip.conf: -------------------------------------------------------------------------------- 1 | gzip on; 2 | gzip_vary on; 3 | gzip_buffers 32 4k; 4 | gzip_comp_level 6; 5 | gzip_min_length 100; 6 | gzip_http_version 1.1; 7 | gzip_disable "MSIE [1-6]\."; 8 | gzip_types text/plain text/css text/xml text/javascript image/bmp image/x-icon image/svg image/svg+xml application/xml application/json application/xml+rss application/xhtml+xml application/javascript application/x-javascript application/x-httpd-php; 9 | 10 | #brotli on; 11 | #brotli_comp_level 8; 12 | #brotli_buffers 16 8k; 13 | #brotli_min_length 20; 14 | #brotli_types text/plain text/css text/xml text/javascript image/bmp image/x-icon image/svg image/svg+xml application/xml application/json application/xml+rss application/xhtml+xml application/javascript application/x-javascript application/x-httpd-php; 15 | -------------------------------------------------------------------------------- /nginx/fastcgi.conf: -------------------------------------------------------------------------------- 1 | 2 | fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; 3 | fastcgi_param QUERY_STRING $query_string; 4 | fastcgi_param REQUEST_METHOD $request_method; 5 | fastcgi_param CONTENT_TYPE $content_type; 6 | fastcgi_param CONTENT_LENGTH $content_length; 7 | 8 | fastcgi_param SCRIPT_NAME $fastcgi_script_name; 9 | fastcgi_param REQUEST_URI $request_uri; 10 | fastcgi_param DOCUMENT_URI $document_uri; 11 | fastcgi_param DOCUMENT_ROOT $document_root; 12 | fastcgi_param SERVER_PROTOCOL $server_protocol; 13 | fastcgi_param REQUEST_SCHEME $scheme; 14 | fastcgi_param HTTPS $https if_not_empty; 15 | 16 | fastcgi_param GATEWAY_INTERFACE CGI/1.1; 17 | fastcgi_param SERVER_SOFTWARE nginx/$nginx_version; 18 | 19 | fastcgi_param REMOTE_ADDR $remote_addr; 20 | fastcgi_param REMOTE_PORT $remote_port; 21 | fastcgi_param SERVER_ADDR $server_addr; 22 | fastcgi_param SERVER_PORT $server_port; 23 | fastcgi_param SERVER_NAME $server_name; 24 | 25 | # PHP only, required if PHP was built with --enable-force-cgi-redirect 26 | fastcgi_param REDIRECT_STATUS 200; 27 | -------------------------------------------------------------------------------- /nginx/fastcgi_params: -------------------------------------------------------------------------------- 1 | 2 | fastcgi_param QUERY_STRING $query_string; 3 | fastcgi_param REQUEST_METHOD $request_method; 4 | fastcgi_param CONTENT_TYPE $content_type; 5 | fastcgi_param CONTENT_LENGTH $content_length; 6 | 7 | fastcgi_param SCRIPT_NAME $fastcgi_script_name; 8 | fastcgi_param REQUEST_URI $request_uri; 9 | fastcgi_param DOCUMENT_URI $document_uri; 10 | fastcgi_param DOCUMENT_ROOT $document_root; 11 | fastcgi_param SERVER_PROTOCOL $server_protocol; 12 | fastcgi_param REQUEST_SCHEME $scheme; 13 | fastcgi_param HTTPS $https if_not_empty; 14 | 15 | fastcgi_param GATEWAY_INTERFACE CGI/1.1; 16 | fastcgi_param SERVER_SOFTWARE nginx/$nginx_version; 17 | 18 | fastcgi_param REMOTE_ADDR $remote_addr; 19 | fastcgi_param REMOTE_PORT $remote_port; 20 | fastcgi_param SERVER_ADDR $server_addr; 21 | fastcgi_param SERVER_PORT $server_port; 22 | fastcgi_param SERVER_NAME $server_name; 23 | 24 | # PHP only, required if PHP was built with --enable-force-cgi-redirect 25 | fastcgi_param REDIRECT_STATUS 200; 26 | -------------------------------------------------------------------------------- /nginx/koi-utf: -------------------------------------------------------------------------------- 1 | 2 | # This map is not a full koi8-r <> utf8 map: it does not contain 3 | # box-drawing and some other characters. Besides this map contains 4 | # several koi8-u and Byelorussian letters which are not in koi8-r. 5 | # If you need a full and standard map, use contrib/unicode2nginx/koi-utf 6 | # map instead. 7 | 8 | charset_map koi8-r utf-8 { 9 | 10 | 80 E282AC ; # euro 11 | 12 | 95 E280A2 ; # bullet 13 | 14 | 9A C2A0 ; #   15 | 16 | 9E C2B7 ; # · 17 | 18 | A3 D191 ; # small yo 19 | A4 D194 ; # small Ukrainian ye 20 | 21 | A6 D196 ; # small Ukrainian i 22 | A7 D197 ; # small Ukrainian yi 23 | 24 | AD D291 ; # small Ukrainian soft g 25 | AE D19E ; # small Byelorussian short u 26 | 27 | B0 C2B0 ; # ° 28 | 29 | B3 D081 ; # capital YO 30 | B4 D084 ; # capital Ukrainian YE 31 | 32 | B6 D086 ; # capital Ukrainian I 33 | B7 D087 ; # capital Ukrainian YI 34 | 35 | B9 E28496 ; # numero sign 36 | 37 | BD D290 ; # capital Ukrainian soft G 38 | BE D18E ; # capital Byelorussian short U 39 | 40 | BF C2A9 ; # (C) 41 | 42 | C0 D18E ; # small yu 43 | C1 D0B0 ; # small a 44 | C2 D0B1 ; # small b 45 | C3 D186 ; # small ts 46 | C4 D0B4 ; # small d 47 | C5 D0B5 ; # small ye 48 | C6 D184 ; # small f 49 | C7 D0B3 ; # small g 50 | C8 D185 ; # small kh 51 | C9 D0B8 ; # small i 52 | CA D0B9 ; # small j 53 | CB D0BA ; # small k 54 | CC D0BB ; # small l 55 | CD D0BC ; # small m 56 | CE D0BD ; # small n 57 | CF D0BE ; # small o 58 | 59 | D0 D0BF ; # small p 60 | D1 D18F ; # small ya 61 | D2 D180 ; # small r 62 | D3 D181 ; # small s 63 | D4 D182 ; # small t 64 | D5 D183 ; # small u 65 | D6 D0B6 ; # small zh 66 | D7 D0B2 ; # small v 67 | D8 D18C ; # small soft sign 68 | D9 D18B ; # small y 69 | DA D0B7 ; # small z 70 | DB D188 ; # small sh 71 | DC D18D ; # small e 72 | DD D189 ; # small shch 73 | DE D187 ; # small ch 74 | DF D18A ; # small hard sign 75 | 76 | E0 D0AE ; # capital YU 77 | E1 D090 ; # capital A 78 | E2 D091 ; # capital B 79 | E3 D0A6 ; # capital TS 80 | E4 D094 ; # capital D 81 | E5 D095 ; # capital YE 82 | E6 D0A4 ; # capital F 83 | E7 D093 ; # capital G 84 | E8 D0A5 ; # capital KH 85 | E9 D098 ; # capital I 86 | EA D099 ; # capital J 87 | EB D09A ; # capital K 88 | EC D09B ; # capital L 89 | ED D09C ; # capital M 90 | EE D09D ; # capital N 91 | EF D09E ; # capital O 92 | 93 | F0 D09F ; # capital P 94 | F1 D0AF ; # capital YA 95 | F2 D0A0 ; # capital R 96 | F3 D0A1 ; # capital S 97 | F4 D0A2 ; # capital T 98 | F5 D0A3 ; # capital U 99 | F6 D096 ; # capital ZH 100 | F7 D092 ; # capital V 101 | F8 D0AC ; # capital soft sign 102 | F9 D0AB ; # capital Y 103 | FA D097 ; # capital Z 104 | FB D0A8 ; # capital SH 105 | FC D0AD ; # capital E 106 | FD D0A9 ; # capital SHCH 107 | FE D0A7 ; # capital CH 108 | FF D0AA ; # capital hard sign 109 | } 110 | -------------------------------------------------------------------------------- /nginx/koi-win: -------------------------------------------------------------------------------- 1 | 2 | charset_map koi8-r windows-1251 { 3 | 4 | 80 88 ; # euro 5 | 6 | 95 95 ; # bullet 7 | 8 | 9A A0 ; #   9 | 10 | 9E B7 ; # · 11 | 12 | A3 B8 ; # small yo 13 | A4 BA ; # small Ukrainian ye 14 | 15 | A6 B3 ; # small Ukrainian i 16 | A7 BF ; # small Ukrainian yi 17 | 18 | AD B4 ; # small Ukrainian soft g 19 | AE A2 ; # small Byelorussian short u 20 | 21 | B0 B0 ; # ° 22 | 23 | B3 A8 ; # capital YO 24 | B4 AA ; # capital Ukrainian YE 25 | 26 | B6 B2 ; # capital Ukrainian I 27 | B7 AF ; # capital Ukrainian YI 28 | 29 | B9 B9 ; # numero sign 30 | 31 | BD A5 ; # capital Ukrainian soft G 32 | BE A1 ; # capital Byelorussian short U 33 | 34 | BF A9 ; # (C) 35 | 36 | C0 FE ; # small yu 37 | C1 E0 ; # small a 38 | C2 E1 ; # small b 39 | C3 F6 ; # small ts 40 | C4 E4 ; # small d 41 | C5 E5 ; # small ye 42 | C6 F4 ; # small f 43 | C7 E3 ; # small g 44 | C8 F5 ; # small kh 45 | C9 E8 ; # small i 46 | CA E9 ; # small j 47 | CB EA ; # small k 48 | CC EB ; # small l 49 | CD EC ; # small m 50 | CE ED ; # small n 51 | CF EE ; # small o 52 | 53 | D0 EF ; # small p 54 | D1 FF ; # small ya 55 | D2 F0 ; # small r 56 | D3 F1 ; # small s 57 | D4 F2 ; # small t 58 | D5 F3 ; # small u 59 | D6 E6 ; # small zh 60 | D7 E2 ; # small v 61 | D8 FC ; # small soft sign 62 | D9 FB ; # small y 63 | DA E7 ; # small z 64 | DB F8 ; # small sh 65 | DC FD ; # small e 66 | DD F9 ; # small shch 67 | DE F7 ; # small ch 68 | DF FA ; # small hard sign 69 | 70 | E0 DE ; # capital YU 71 | E1 C0 ; # capital A 72 | E2 C1 ; # capital B 73 | E3 D6 ; # capital TS 74 | E4 C4 ; # capital D 75 | E5 C5 ; # capital YE 76 | E6 D4 ; # capital F 77 | E7 C3 ; # capital G 78 | E8 D5 ; # capital KH 79 | E9 C8 ; # capital I 80 | EA C9 ; # capital J 81 | EB CA ; # capital K 82 | EC CB ; # capital L 83 | ED CC ; # capital M 84 | EE CD ; # capital N 85 | EF CE ; # capital O 86 | 87 | F0 CF ; # capital P 88 | F1 DF ; # capital YA 89 | F2 D0 ; # capital R 90 | F3 D1 ; # capital S 91 | F4 D2 ; # capital T 92 | F5 D3 ; # capital U 93 | F6 C6 ; # capital ZH 94 | F7 C2 ; # capital V 95 | F8 DC ; # capital soft sign 96 | F9 DB ; # capital Y 97 | FA C7 ; # capital Z 98 | FB D8 ; # capital SH 99 | FC DD ; # capital E 100 | FD D9 ; # capital SHCH 101 | FE D7 ; # capital CH 102 | FF DA ; # capital hard sign 103 | } 104 | -------------------------------------------------------------------------------- /nginx/mime.types: -------------------------------------------------------------------------------- 1 | 2 | types { 3 | text/html html htm shtml; 4 | text/css css; 5 | text/xml xml; 6 | image/gif gif; 7 | image/jpeg jpeg jpg; 8 | application/javascript js; 9 | application/atom+xml atom; 10 | application/rss+xml rss; 11 | 12 | text/mathml mml; 13 | text/plain txt; 14 | text/vnd.sun.j2me.app-descriptor jad; 15 | text/vnd.wap.wml wml; 16 | text/x-component htc; 17 | 18 | image/png png; 19 | image/tiff tif tiff; 20 | image/vnd.wap.wbmp wbmp; 21 | image/x-icon ico; 22 | image/x-jng jng; 23 | image/x-ms-bmp bmp; 24 | image/svg+xml svg svgz; 25 | image/webp webp; 26 | 27 | application/font-woff woff; 28 | application/java-archive jar war ear; 29 | application/json json; 30 | application/mac-binhex40 hqx; 31 | application/msword doc; 32 | application/pdf pdf; 33 | application/postscript ps eps ai; 34 | application/rtf rtf; 35 | application/vnd.apple.mpegurl m3u8; 36 | application/vnd.ms-excel xls; 37 | application/vnd.ms-fontobject eot; 38 | application/vnd.ms-powerpoint ppt; 39 | application/vnd.wap.wmlc wmlc; 40 | application/vnd.google-earth.kml+xml kml; 41 | application/vnd.google-earth.kmz kmz; 42 | application/x-7z-compressed 7z; 43 | application/x-cocoa cco; 44 | application/x-java-archive-diff jardiff; 45 | application/x-java-jnlp-file jnlp; 46 | application/x-makeself run; 47 | application/x-perl pl pm; 48 | application/x-pilot prc pdb; 49 | application/x-rar-compressed rar; 50 | application/x-redhat-package-manager rpm; 51 | application/x-sea sea; 52 | application/x-shockwave-flash swf; 53 | application/x-stuffit sit; 54 | application/x-tcl tcl tk; 55 | application/x-x509-ca-cert der pem crt; 56 | application/x-xpinstall xpi; 57 | application/xhtml+xml xhtml; 58 | application/xspf+xml xspf; 59 | application/zip zip; 60 | 61 | application/octet-stream bin exe dll; 62 | application/octet-stream deb; 63 | application/octet-stream dmg; 64 | application/octet-stream iso img; 65 | application/octet-stream msi msp msm; 66 | 67 | application/vnd.openxmlformats-officedocument.wordprocessingml.document docx; 68 | application/vnd.openxmlformats-officedocument.spreadsheetml.sheet xlsx; 69 | application/vnd.openxmlformats-officedocument.presentationml.presentation pptx; 70 | 71 | audio/midi mid midi kar; 72 | audio/mpeg mp3; 73 | audio/ogg ogg; 74 | audio/x-m4a m4a; 75 | audio/x-realaudio ra; 76 | 77 | video/3gpp 3gpp 3gp; 78 | video/mp2t ts; 79 | video/mp4 mp4; 80 | video/mpeg mpeg mpg; 81 | video/quicktime mov; 82 | video/webm webm; 83 | video/x-flv flv; 84 | video/x-m4v m4v; 85 | video/x-mng mng; 86 | video/x-ms-asf asx asf; 87 | video/x-ms-wmv wmv; 88 | video/x-msvideo avi; 89 | } 90 | -------------------------------------------------------------------------------- /nginx/modules-enabled/50-mod-http-auth-pam.conf: -------------------------------------------------------------------------------- 1 | /usr/share/nginx/modules-available/mod-http-auth-pam.conf -------------------------------------------------------------------------------- /nginx/modules-enabled/50-mod-http-dav-ext.conf: -------------------------------------------------------------------------------- 1 | /usr/share/nginx/modules-available/mod-http-dav-ext.conf -------------------------------------------------------------------------------- /nginx/modules-enabled/50-mod-http-echo.conf: -------------------------------------------------------------------------------- 1 | /usr/share/nginx/modules-available/mod-http-echo.conf -------------------------------------------------------------------------------- /nginx/modules-enabled/50-mod-http-geoip.conf: -------------------------------------------------------------------------------- 1 | /usr/share/nginx/modules-available/mod-http-geoip.conf -------------------------------------------------------------------------------- /nginx/modules-enabled/50-mod-http-image-filter.conf: -------------------------------------------------------------------------------- 1 | /usr/share/nginx/modules-available/mod-http-image-filter.conf -------------------------------------------------------------------------------- /nginx/modules-enabled/50-mod-http-subs-filter.conf: -------------------------------------------------------------------------------- 1 | /usr/share/nginx/modules-available/mod-http-subs-filter.conf -------------------------------------------------------------------------------- /nginx/modules-enabled/50-mod-http-upstream-fair.conf: -------------------------------------------------------------------------------- 1 | /usr/share/nginx/modules-available/mod-http-upstream-fair.conf -------------------------------------------------------------------------------- /nginx/modules-enabled/50-mod-http-xslt-filter.conf: -------------------------------------------------------------------------------- 1 | /usr/share/nginx/modules-available/mod-http-xslt-filter.conf -------------------------------------------------------------------------------- /nginx/modules-enabled/50-mod-mail.conf: -------------------------------------------------------------------------------- 1 | /usr/share/nginx/modules-available/mod-mail.conf -------------------------------------------------------------------------------- /nginx/modules-enabled/50-mod-stream.conf: -------------------------------------------------------------------------------- 1 | /usr/share/nginx/modules-available/mod-stream.conf -------------------------------------------------------------------------------- /nginx/nginx.conf: -------------------------------------------------------------------------------- 1 | user www-data; 2 | worker_processes auto; 3 | pid /run/nginx.pid; 4 | include /etc/nginx/modules-enabled/*.conf; 5 | 6 | events { 7 | worker_connections 768; 8 | # multi_accept on; 9 | } 10 | 11 | http { 12 | sendfile on; 13 | tcp_nopush on; 14 | tcp_nodelay on; 15 | keepalive_timeout 65; 16 | types_hash_max_size 2048; 17 | 18 | include /etc/nginx/mime.types; 19 | default_type application/octet-stream; 20 | 21 | access_log /var/log/nginx/access.log; 22 | error_log /var/log/nginx/error.log; 23 | 24 | include /etc/nginx/conf.d/*.conf; 25 | include /etc/nginx/sites-enabled/*; 26 | } 27 | -------------------------------------------------------------------------------- /nginx/nginx.conf.dpkg-dist: -------------------------------------------------------------------------------- 1 | user www-data; 2 | worker_processes auto; 3 | pid /run/nginx.pid; 4 | include /etc/nginx/modules-enabled/*.conf; 5 | 6 | events { 7 | worker_connections 768; 8 | # multi_accept on; 9 | } 10 | 11 | http { 12 | 13 | ## 14 | # Basic Settings 15 | ## 16 | 17 | sendfile on; 18 | tcp_nopush on; 19 | tcp_nodelay on; 20 | keepalive_timeout 65; 21 | types_hash_max_size 2048; 22 | # server_tokens off; 23 | 24 | # server_names_hash_bucket_size 64; 25 | # server_name_in_redirect off; 26 | 27 | include /etc/nginx/mime.types; 28 | default_type application/octet-stream; 29 | 30 | ## 31 | # SSL Settings 32 | ## 33 | 34 | ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE 35 | ssl_prefer_server_ciphers on; 36 | 37 | ## 38 | # Logging Settings 39 | ## 40 | 41 | access_log /var/log/nginx/access.log; 42 | error_log /var/log/nginx/error.log; 43 | 44 | ## 45 | # Gzip Settings 46 | ## 47 | 48 | gzip on; 49 | 50 | # gzip_vary on; 51 | # gzip_proxied any; 52 | # gzip_comp_level 6; 53 | # gzip_buffers 16 8k; 54 | # gzip_http_version 1.1; 55 | # gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript; 56 | 57 | ## 58 | # Virtual Host Configs 59 | ## 60 | 61 | include /etc/nginx/conf.d/*.conf; 62 | include /etc/nginx/sites-enabled/*; 63 | } 64 | 65 | 66 | #mail { 67 | # # See sample authentication script at: 68 | # # http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript 69 | # 70 | # # auth_http localhost/auth.php; 71 | # # pop3_capabilities "TOP" "USER"; 72 | # # imap_capabilities "IMAP4rev1" "UIDPLUS"; 73 | # 74 | # server { 75 | # listen localhost:110; 76 | # protocol pop3; 77 | # proxy on; 78 | # } 79 | # 80 | # server { 81 | # listen localhost:143; 82 | # protocol imap; 83 | # proxy on; 84 | # } 85 | #} 86 | -------------------------------------------------------------------------------- /nginx/proxy_params: -------------------------------------------------------------------------------- 1 | proxy_set_header Host $http_host; 2 | proxy_set_header X-Real-IP $remote_addr; 3 | proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; 4 | proxy_set_header X-Forwarded-Proto $scheme; 5 | -------------------------------------------------------------------------------- /nginx/scgi_params: -------------------------------------------------------------------------------- 1 | 2 | scgi_param REQUEST_METHOD $request_method; 3 | scgi_param REQUEST_URI $request_uri; 4 | scgi_param QUERY_STRING $query_string; 5 | scgi_param CONTENT_TYPE $content_type; 6 | 7 | scgi_param DOCUMENT_URI $document_uri; 8 | scgi_param DOCUMENT_ROOT $document_root; 9 | scgi_param SCGI 1; 10 | scgi_param SERVER_PROTOCOL $server_protocol; 11 | scgi_param REQUEST_SCHEME $scheme; 12 | scgi_param HTTPS $https if_not_empty; 13 | 14 | scgi_param REMOTE_ADDR $remote_addr; 15 | scgi_param REMOTE_PORT $remote_port; 16 | scgi_param SERVER_PORT $server_port; 17 | scgi_param SERVER_NAME $server_name; 18 | -------------------------------------------------------------------------------- /nginx/sites-available/default: -------------------------------------------------------------------------------- 1 | ## 2 | # You should look at the following URL's in order to grasp a solid understanding 3 | # of Nginx configuration files in order to fully unleash the power of Nginx. 4 | # https://www.nginx.com/resources/wiki/start/ 5 | # https://www.nginx.com/resources/wiki/start/topics/tutorials/config_pitfalls/ 6 | # https://wiki.debian.org/Nginx/DirectoryStructure 7 | # 8 | # In most cases, administrators will remove this file from sites-enabled/ and 9 | # leave it as reference inside of sites-available where it will continue to be 10 | # updated by the nginx packaging team. 11 | # 12 | # This file will automatically load configuration files provided by other 13 | # applications, such as Drupal or Wordpress. These applications will be made 14 | # available underneath a path with that package name, such as /drupal8. 15 | # 16 | # Please see /usr/share/doc/nginx-doc/examples/ for more detailed examples. 17 | ## 18 | 19 | # Default server configuration 20 | # 21 | server { 22 | listen 80 default_server; 23 | listen [::]:80 default_server; 24 | 25 | # SSL configuration 26 | # 27 | # listen 443 ssl default_server; 28 | # listen [::]:443 ssl default_server; 29 | # 30 | # Note: You should disable gzip for SSL traffic. 31 | # See: https://bugs.debian.org/773332 32 | # 33 | # Read up on ssl_ciphers to ensure a secure configuration. 34 | # See: https://bugs.debian.org/765782 35 | # 36 | # Self signed certs generated by the ssl-cert package 37 | # Don't use them in a production server! 38 | # 39 | # include snippets/snakeoil.conf; 40 | 41 | root /var/www/html; 42 | 43 | # Add index.php to the list if you are using PHP 44 | index index.html index.htm index.nginx-debian.html; 45 | 46 | server_name _; 47 | 48 | location / { 49 | # First attempt to serve request as file, then 50 | # as directory, then fall back to displaying a 404. 51 | try_files $uri $uri/ =404; 52 | } 53 | 54 | # pass PHP scripts to FastCGI server 55 | # 56 | #location ~ \.php$ { 57 | # include snippets/fastcgi-php.conf; 58 | # 59 | # # With php-fpm (or other unix sockets): 60 | # fastcgi_pass unix:/run/php/php7.3-fpm.sock; 61 | # # With php-cgi (or other tcp sockets): 62 | # fastcgi_pass 127.0.0.1:9000; 63 | #} 64 | 65 | # deny access to .htaccess files, if Apache's document root 66 | # concurs with nginx's one 67 | # 68 | #location ~ /\.ht { 69 | # deny all; 70 | #} 71 | } 72 | 73 | 74 | # Virtual Host configuration for example.com 75 | # 76 | # You can move that to a different file under sites-available/ and symlink that 77 | # to sites-enabled/ to enable it. 78 | # 79 | #server { 80 | # listen 80; 81 | # listen [::]:80; 82 | # 83 | # server_name example.com; 84 | # 85 | # root /var/www/example.com; 86 | # index index.html; 87 | # 88 | # location / { 89 | # try_files $uri $uri/ =404; 90 | # } 91 | #} 92 | -------------------------------------------------------------------------------- /nginx/sites-enabled/default: -------------------------------------------------------------------------------- 1 | /etc/nginx/sites-available/default -------------------------------------------------------------------------------- /nginx/snippets/fastcgi-php.conf: -------------------------------------------------------------------------------- 1 | # regex to split $uri to $fastcgi_script_name and $fastcgi_path 2 | fastcgi_split_path_info ^(.+?\.php)(/.*)$; 3 | 4 | # Check that the PHP script exists before passing it 5 | try_files $fastcgi_script_name =404; 6 | 7 | # Bypass the fact that try_files resets $fastcgi_path_info 8 | # see: http://trac.nginx.org/nginx/ticket/321 9 | set $path_info $fastcgi_path_info; 10 | fastcgi_param PATH_INFO $path_info; 11 | 12 | fastcgi_index index.php; 13 | include fastcgi.conf; 14 | -------------------------------------------------------------------------------- /nginx/snippets/snakeoil.conf: -------------------------------------------------------------------------------- 1 | # Self signed certificates generated by the ssl-cert package 2 | # Don't use them in a production server! 3 | 4 | ssl_certificate /etc/ssl/certs/ssl-cert-snakeoil.pem; 5 | ssl_certificate_key /etc/ssl/private/ssl-cert-snakeoil.key; 6 | -------------------------------------------------------------------------------- /nginx/uwsgi_params: -------------------------------------------------------------------------------- 1 | 2 | uwsgi_param QUERY_STRING $query_string; 3 | uwsgi_param REQUEST_METHOD $request_method; 4 | uwsgi_param CONTENT_TYPE $content_type; 5 | uwsgi_param CONTENT_LENGTH $content_length; 6 | 7 | uwsgi_param REQUEST_URI $request_uri; 8 | uwsgi_param PATH_INFO $document_uri; 9 | uwsgi_param DOCUMENT_ROOT $document_root; 10 | uwsgi_param SERVER_PROTOCOL $server_protocol; 11 | uwsgi_param REQUEST_SCHEME $scheme; 12 | uwsgi_param HTTPS $https if_not_empty; 13 | 14 | uwsgi_param REMOTE_ADDR $remote_addr; 15 | uwsgi_param REMOTE_PORT $remote_port; 16 | uwsgi_param SERVER_PORT $server_port; 17 | uwsgi_param SERVER_NAME $server_name; 18 | -------------------------------------------------------------------------------- /nginx/win-utf: -------------------------------------------------------------------------------- 1 | # This map is not a full windows-1251 <> utf8 map: it does not 2 | # contain Serbian and Macedonian letters. If you need a full map, 3 | # use contrib/unicode2nginx/win-utf map instead. 4 | 5 | charset_map windows-1251 utf-8 { 6 | 7 | 82 E2809A; # single low-9 quotation mark 8 | 9 | 84 E2809E; # double low-9 quotation mark 10 | 85 E280A6; # ellipsis 11 | 86 E280A0; # dagger 12 | 87 E280A1; # double dagger 13 | 88 E282AC; # euro 14 | 89 E280B0; # per mille 15 | 16 | 91 E28098; # left single quotation mark 17 | 92 E28099; # right single quotation mark 18 | 93 E2809C; # left double quotation mark 19 | 94 E2809D; # right double quotation mark 20 | 95 E280A2; # bullet 21 | 96 E28093; # en dash 22 | 97 E28094; # em dash 23 | 24 | 99 E284A2; # trade mark sign 25 | 26 | A0 C2A0; #   27 | A1 D18E; # capital Byelorussian short U 28 | A2 D19E; # small Byelorussian short u 29 | 30 | A4 C2A4; # currency sign 31 | A5 D290; # capital Ukrainian soft G 32 | A6 C2A6; # borken bar 33 | A7 C2A7; # section sign 34 | A8 D081; # capital YO 35 | A9 C2A9; # (C) 36 | AA D084; # capital Ukrainian YE 37 | AB C2AB; # left-pointing double angle quotation mark 38 | AC C2AC; # not sign 39 | AD C2AD; # soft hypen 40 | AE C2AE; # (R) 41 | AF D087; # capital Ukrainian YI 42 | 43 | B0 C2B0; # ° 44 | B1 C2B1; # plus-minus sign 45 | B2 D086; # capital Ukrainian I 46 | B3 D196; # small Ukrainian i 47 | B4 D291; # small Ukrainian soft g 48 | B5 C2B5; # micro sign 49 | B6 C2B6; # pilcrow sign 50 | B7 C2B7; # · 51 | B8 D191; # small yo 52 | B9 E28496; # numero sign 53 | BA D194; # small Ukrainian ye 54 | BB C2BB; # right-pointing double angle quotation mark 55 | 56 | BF D197; # small Ukrainian yi 57 | 58 | C0 D090; # capital A 59 | C1 D091; # capital B 60 | C2 D092; # capital V 61 | C3 D093; # capital G 62 | C4 D094; # capital D 63 | C5 D095; # capital YE 64 | C6 D096; # capital ZH 65 | C7 D097; # capital Z 66 | C8 D098; # capital I 67 | C9 D099; # capital J 68 | CA D09A; # capital K 69 | CB D09B; # capital L 70 | CC D09C; # capital M 71 | CD D09D; # capital N 72 | CE D09E; # capital O 73 | CF D09F; # capital P 74 | 75 | D0 D0A0; # capital R 76 | D1 D0A1; # capital S 77 | D2 D0A2; # capital T 78 | D3 D0A3; # capital U 79 | D4 D0A4; # capital F 80 | D5 D0A5; # capital KH 81 | D6 D0A6; # capital TS 82 | D7 D0A7; # capital CH 83 | D8 D0A8; # capital SH 84 | D9 D0A9; # capital SHCH 85 | DA D0AA; # capital hard sign 86 | DB D0AB; # capital Y 87 | DC D0AC; # capital soft sign 88 | DD D0AD; # capital E 89 | DE D0AE; # capital YU 90 | DF D0AF; # capital YA 91 | 92 | E0 D0B0; # small a 93 | E1 D0B1; # small b 94 | E2 D0B2; # small v 95 | E3 D0B3; # small g 96 | E4 D0B4; # small d 97 | E5 D0B5; # small ye 98 | E6 D0B6; # small zh 99 | E7 D0B7; # small z 100 | E8 D0B8; # small i 101 | E9 D0B9; # small j 102 | EA D0BA; # small k 103 | EB D0BB; # small l 104 | EC D0BC; # small m 105 | ED D0BD; # small n 106 | EE D0BE; # small o 107 | EF D0BF; # small p 108 | 109 | F0 D180; # small r 110 | F1 D181; # small s 111 | F2 D182; # small t 112 | F3 D183; # small u 113 | F4 D184; # small f 114 | F5 D185; # small kh 115 | F6 D186; # small ts 116 | F7 D187; # small ch 117 | F8 D188; # small sh 118 | F9 D189; # small shch 119 | FA D18A; # small hard sign 120 | FB D18B; # small y 121 | FC D18C; # small soft sign 122 | FD D18D; # small e 123 | FE D18E; # small yu 124 | FF D18F; # small ya 125 | } 126 | -------------------------------------------------------------------------------- /route/asset/geoip.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/3725268c9e46a44941a6d7ec7a61b5e3a5932c34/route/asset/geoip.dat -------------------------------------------------------------------------------- /route/asset/geosite.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/3725268c9e46a44941a6d7ec7a61b5e3a5932c34/route/asset/geosite.dat -------------------------------------------------------------------------------- /route/asset/update.sh: -------------------------------------------------------------------------------- 1 | GITHUB="github.com" 2 | ASSET_REPO="Loyalsoldier/v2ray-rules-dat" 3 | VERSION=$(curl --silent "https://api.github.com/repos/$ASSET_REPO/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/'); 4 | cd /etc/route/asset/ 5 | mkdir -p ./temp/ 6 | wget -P ./temp/ "https://$GITHUB/$ASSET_REPO/releases/download/$VERSION/geoip.dat" 7 | file_size=`du ./temp/geoip.dat | awk '{print $1}'` 8 | [ $file_size != "0" ] && mv -f ./temp/geoip.dat ./ 9 | wget -P ./temp/ "https://$GITHUB/$ASSET_REPO/releases/download/$VERSION/geosite.dat" 10 | file_size=`du ./temp/geosite.dat | awk '{print $1}'` 11 | [ $file_size != "0" ] && mv -f ./temp/geosite.dat ./ 12 | rm -rf ./temp/ 13 | -------------------------------------------------------------------------------- /route/config/dns.json: -------------------------------------------------------------------------------- 1 | { 2 | "dns": { 3 | "servers": [ 4 | "192.168.2.1" 5 | ] 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /route/config/inbounds.json: -------------------------------------------------------------------------------- 1 | { 2 | "inbounds": [ 3 | { 4 | "tag": "tproxy", 5 | "port": 7288, 6 | "protocol": "dokodemo-door", 7 | "settings": { 8 | "network": "tcp,udp", 9 | "followRedirect": true 10 | }, 11 | "streamSettings": { 12 | "sockopt": { 13 | "tproxy": "tproxy" 14 | } 15 | }, 16 | "sniffing": { 17 | "enabled": true, 18 | "destOverride": [ 19 | "http", 20 | "tls" 21 | ] 22 | } 23 | }, 24 | { 25 | "tag": "tproxy6", 26 | "port": 7289, 27 | "protocol": "dokodemo-door", 28 | "settings": { 29 | "network": "tcp,udp", 30 | "followRedirect": true 31 | }, 32 | "streamSettings": { 33 | "sockopt": { 34 | "tproxy": "tproxy" 35 | } 36 | }, 37 | "sniffing": { 38 | "enabled": true, 39 | "destOverride": [ 40 | "http", 41 | "tls" 42 | ] 43 | } 44 | }, 45 | { 46 | "tag": "direct", 47 | "port": 1084, 48 | "protocol": "socks", 49 | "settings": { 50 | "udp": true 51 | } 52 | }, 53 | { 54 | "tag": "direct6", 55 | "port": 1086, 56 | "protocol": "socks", 57 | "settings": { 58 | "udp": true 59 | } 60 | }, 61 | { 62 | "tag": "proxy", 63 | "port": 1094, 64 | "protocol": "socks", 65 | "settings": { 66 | "udp": true 67 | } 68 | }, 69 | { 70 | "tag": "proxy6", 71 | "port": 1096, 72 | "protocol": "socks", 73 | "settings": { 74 | "udp": true 75 | } 76 | } 77 | ] 78 | } 79 | -------------------------------------------------------------------------------- /route/config/outbounds.json: -------------------------------------------------------------------------------- 1 | { 2 | "outbounds": [ 3 | { 4 | "tag": "direct4", 5 | "protocol": "freedom", 6 | "settings": {} 7 | }, 8 | { 9 | "tag": "direct6", 10 | "protocol": "socks", 11 | "settings": { 12 | "servers": [ 13 | { 14 | "address": "192.168.2.2", 15 | "port": 1086 16 | } 17 | ] 18 | } 19 | }, 20 | { 21 | "tag": "proxy4", 22 | "protocol": "socks", 23 | "settings": { 24 | "servers": [ 25 | { 26 | "address": "192.168.2.5", 27 | "port": 20170 28 | } 29 | ] 30 | } 31 | }, 32 | { 33 | "tag": "proxy6", 34 | "protocol": "vless", 35 | "settings": { 36 | "vnext": [ 37 | { 38 | "address": "...", 39 | "port": 443, 40 | "users": [ 41 | { 42 | "id": "...", 43 | "encryption": "none", 44 | "flow": "xtls-rprx-direct" 45 | } 46 | ] 47 | } 48 | ] 49 | }, 50 | "streamSettings": { 51 | "network": "tcp", 52 | "security": "xtls", 53 | "xtlsSettings": { 54 | "allowInsecure": false, 55 | "serverName": "yang.343.re" 56 | } 57 | } 58 | }, 59 | { 60 | "tag": "block", 61 | "protocol": "blackhole", 62 | "settings": {} 63 | } 64 | ] 65 | } 66 | -------------------------------------------------------------------------------- /route/config/routing.json: -------------------------------------------------------------------------------- 1 | { 2 | "routing": { 3 | "domainStrategy": "IPOnDemand", 4 | "rules": [ 5 | { 6 | "type": "field", 7 | "inboundTag": "direct", 8 | "outboundTag": "direct4" 9 | }, 10 | { 11 | "type": "field", 12 | "inboundTag": "direct6", 13 | "outboundTag": "direct6" 14 | }, 15 | { 16 | "type": "field", 17 | "inboundTag": "proxy", 18 | "outboundTag": "proxy4" 19 | }, 20 | { 21 | "type": "field", 22 | "inboundTag": "proxy6", 23 | "outboundTag": "proxy6" 24 | }, 25 | { 26 | "type": "field", 27 | "inboundTag": [ 28 | "tproxy" 29 | ], 30 | "domain": [ 31 | "ip.menma01.com", 32 | "ds.v6ns.vm3.test-ipv6.com" 33 | ], 34 | "balancerTag": "direct" 35 | }, 36 | { 37 | "type": "field", 38 | "inboundTag": [ 39 | "tproxy6" 40 | ], 41 | "domain": [ 42 | "ip.menma01.com", 43 | "ds.v6ns.vm3.test-ipv6.com" 44 | ], 45 | "balancerTag": "direct6" 46 | }, 47 | { 48 | "type": "field", 49 | "inboundTag": [ 50 | "tproxy" 51 | ], 52 | "domain": [ 53 | "ip.343.re", 54 | "dns.343.re", 55 | "gist.github.com", 56 | "raw.githubusercontent.com", 57 | "domain:gstatic.com", 58 | "domain:googleapis.cn", 59 | "domain:xn--ngstr-lra8j.com" 60 | ], 61 | "balancerTag": "proxy" 62 | }, 63 | { 64 | "type": "field", 65 | "inboundTag": [ 66 | "tproxy6" 67 | ], 68 | "domain": [ 69 | "ip.343.re", 70 | "dns.343.re", 71 | "gist.github.com", 72 | "raw.githubusercontent.com", 73 | "domain:gstatic.com", 74 | "domain:googleapis.cn", 75 | "domain:xn--ngstr-lra8j.com" 76 | ], 77 | "balancerTag": "proxy6" 78 | }, 79 | { 80 | "type": "field", 81 | "inboundTag": [ 82 | "tproxy" 83 | ], 84 | "domain": [ 85 | "geosite:cn" 86 | ], 87 | "balancerTag": "direct" 88 | }, 89 | { 90 | "type": "field", 91 | "inboundTag": [ 92 | "tproxy6" 93 | ], 94 | "domain": [ 95 | "geosite:cn" 96 | ], 97 | "balancerTag": "direct6" 98 | }, 99 | { 100 | "type": "field", 101 | "ip": [ 102 | "8.210.148.24", 103 | "47.242.93.7", 104 | "47.242.30.65", 105 | "47.242.17.252", 106 | "119.28.88.230", 107 | "222.16.33.190" 108 | ], 109 | "balancerTag": "direct" 110 | }, 111 | { 112 | "type": "field", 113 | "ip": [ 114 | "2001:19f0:5:2236:5400:2ff:fefd:5c7c", 115 | "2001:19f0:4401:6a4:5400:3ff:fea4:fb21" 116 | ], 117 | "balancerTag": "direct6" 118 | }, 119 | { 120 | "type": "field", 121 | "inboundTag": [ 122 | "tproxy" 123 | ], 124 | "ip": [ 125 | "geoip:cn", 126 | "geoip:private" 127 | ], 128 | "balancerTag": "direct" 129 | }, 130 | { 131 | "type": "field", 132 | "inboundTag": [ 133 | "tproxy6" 134 | ], 135 | "ip": [ 136 | "geoip:cn", 137 | "geoip:private" 138 | ], 139 | "balancerTag": "direct6" 140 | }, 141 | { 142 | "type": "field", 143 | "inboundTag": [ 144 | "tproxy" 145 | ], 146 | "balancerTag": "proxy" 147 | }, 148 | { 149 | "type": "field", 150 | "inboundTag": [ 151 | "tproxy6" 152 | ], 153 | "balancerTag": "proxy6" 154 | } 155 | ], 156 | "balancers": [ 157 | { 158 | "tag": "direct", 159 | "selector": [ "direct4" ] 160 | }, 161 | { 162 | "tag": "direct6", 163 | "selector": [ "direct6" ] 164 | }, 165 | { 166 | "tag": "proxy", 167 | "selector": [ "proxy4" ] 168 | }, 169 | { 170 | "tag": "proxy6", 171 | "selector": [ "proxy6" ] 172 | } 173 | ] 174 | } 175 | } 176 | -------------------------------------------------------------------------------- /route/custom.sh: -------------------------------------------------------------------------------- 1 | iptables -t nat -A PREROUTING -d 192.168.2.4 -p udp --dport 53 -j DNAT --to-destination 192.168.2.3:5353 2 | iptables -t nat -A POSTROUTING -d 192.168.2.3 -p udp --dport 5353 -j SNAT --to 192.168.2.4 3 | iptables -t nat -A PREROUTING -d 192.168.2.4 -p tcp --dport 53 -j DNAT --to-destination 192.168.2.3:5353 4 | iptables -t nat -A POSTROUTING -d 192.168.2.3 -p tcp --dport 5353 -j SNAT --to 192.168.2.4 5 | ip6tables -t nat -A PREROUTING -d fc00::4 -p udp --dport 53 -j DNAT --to-destination [fc00::3]:5353 6 | ip6tables -t nat -A POSTROUTING -d fc00::3 -p udp --dport 5353 -j SNAT --to fc00::4 7 | ip6tables -t nat -A PREROUTING -d fc00::4 -p tcp --dport 53 -j DNAT --to-destination [fc00::3]:5353 8 | ip6tables -t nat -A POSTROUTING -d fc00::3 -p tcp --dport 5353 -j SNAT --to fc00::4 9 | -------------------------------------------------------------------------------- /route/log/ipv4.sh: -------------------------------------------------------------------------------- 1 | tail -f /etc/route/log/connection.log | grep --line-buffered -o -E "192.168.2..*" | grep --color "\->" 2 | -------------------------------------------------------------------------------- /route/log/ipv6.sh: -------------------------------------------------------------------------------- 1 | tail -f /etc/route/log/connection.log | grep --line-buffered -o -E "\[fc00::.*" | grep --color "\->" 2 | -------------------------------------------------------------------------------- /route/log/level: -------------------------------------------------------------------------------- 1 | info 2 | -------------------------------------------------------------------------------- /route/log/view.sh: -------------------------------------------------------------------------------- 1 | tail -f /etc/route/log/connection.log | grep --color "\->" 2 | -------------------------------------------------------------------------------- /route/mode/check.sh: -------------------------------------------------------------------------------- 1 | php_file="/etc/route/mode/check.php" 2 | cat>$php_file<<"EOF" 3 | $mode) { 15 | if ($status === $mode) { 16 | $result = $name; 17 | } 18 | } 19 | $result = isset($result) ? $result : 'unknow'; 20 | echo $result . PHP_EOL; 21 | 22 | ?> 23 | EOF 24 | php $php_file 25 | rm -f $php_file 26 | -------------------------------------------------------------------------------- /route/mode/direct.sh: -------------------------------------------------------------------------------- 1 | /etc/route/mode/set.sh direct 2 | -------------------------------------------------------------------------------- /route/mode/mode.json: -------------------------------------------------------------------------------- 1 | { 2 | "route": [ "direct4", "direct6", "proxy4", "proxy6"], 3 | "direct": [ "direct4", "direct6", "direct4", "direct6"], 4 | "proxy": [ "proxy4", "proxy6", "proxy4", "proxy6"], 5 | "ipv4-route": [ "direct4", "block", "proxy4", "block"], 6 | "ipv4-direct": [ "direct4", "block", "direct4", "block"], 7 | "ipv4-proxy": [ "proxy4", "block", "proxy4", "block"], 8 | "none": [ "block", "block", "block", "block"] 9 | } 10 | -------------------------------------------------------------------------------- /route/mode/proxy.sh: -------------------------------------------------------------------------------- 1 | /etc/route/mode/set.sh proxy 2 | -------------------------------------------------------------------------------- /route/mode/route.sh: -------------------------------------------------------------------------------- 1 | /etc/route/mode/set.sh route 2 | -------------------------------------------------------------------------------- /route/mode/set.sh: -------------------------------------------------------------------------------- 1 | php_file="/etc/route/mode/set.php" 2 | cat>$php_file<<"EOF" 3 | 26 | EOF 27 | php $php_file $1 28 | rm -f $php_file 29 | docker restart -t=0 route > /dev/null 30 | -------------------------------------------------------------------------------- /route/network/bypass/ipv4: -------------------------------------------------------------------------------- 1 | 169.254.0.0/16 2 | 224.0.0.0/3 3 | -------------------------------------------------------------------------------- /route/network/bypass/ipv6: -------------------------------------------------------------------------------- 1 | fc00::/7 2 | fe80::/10 3 | ff00::/8 4 | -------------------------------------------------------------------------------- /route/network/dns: -------------------------------------------------------------------------------- 1 | 192.168.2.1 2 | -------------------------------------------------------------------------------- /route/network/interface/ipv4: -------------------------------------------------------------------------------- 1 | ADDRESS=192.168.2.4/24 2 | GATEWAY=192.168.2.2 3 | FORWARD=true 4 | -------------------------------------------------------------------------------- /route/network/interface/ipv6: -------------------------------------------------------------------------------- 1 | ADDRESS=fc00::4/64 2 | GATEWAY=fc00::2 3 | FORWARD=true 4 | -------------------------------------------------------------------------------- /route/network/radvd/config: -------------------------------------------------------------------------------- 1 | AdvSendAdvert=on 2 | AdvManagedFlag=off 3 | AdvOtherConfigFlag=off 4 | 5 | MinRtrAdvInterval=10 6 | MaxRtrAdvInterval=30 7 | MinDelayBetweenRAs=3 8 | 9 | AdvOnLink=on 10 | AdvAutonomous=on 11 | AdvRouterAddr=off 12 | AdvValidLifetime=600 13 | AdvPreferredLifetime=100 14 | -------------------------------------------------------------------------------- /route/network/radvd/disable.sh: -------------------------------------------------------------------------------- 1 | status=`cat config | grep AdvSendAdvert | grep -o on` 2 | if [ "$status" = "on" ]; then 3 | sed -i 's/^AdvSendAdvert=.*/AdvSendAdvert=off/;' ./config 4 | docker restart -t=0 route 5 | fi 6 | -------------------------------------------------------------------------------- /route/network/radvd/enable.sh: -------------------------------------------------------------------------------- 1 | status=`cat config | grep AdvSendAdvert | grep -o off` 2 | if [ "$status" = "off" ]; then 3 | sed -i 's/^AdvSendAdvert=.*/AdvSendAdvert=on/;' ./config 4 | docker restart -t=0 route 5 | fi 6 | -------------------------------------------------------------------------------- /route/rules/block_domain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/3725268c9e46a44941a6d7ec7a61b5e3a5932c34/route/rules/block_domain -------------------------------------------------------------------------------- /route/rules/block_ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/3725268c9e46a44941a6d7ec7a61b5e3a5932c34/route/rules/block_ip -------------------------------------------------------------------------------- /route/rules/direct_domain: -------------------------------------------------------------------------------- 1 | ip.menma01.com 2 | ds.v6ns.vm3.test-ipv6.com 3 | -------------------------------------------------------------------------------- /route/rules/direct_ipv4: -------------------------------------------------------------------------------- 1 | 8.210.148.24 2 | 47.242.93.7 3 | 47.242.30.65 4 | 47.242.17.252 5 | 119.28.88.230 6 | 222.16.33.190 7 | -------------------------------------------------------------------------------- /route/rules/direct_ipv6: -------------------------------------------------------------------------------- 1 | 2001:19f0:5:2236:5400:2ff:fefd:5c7c 2 | 2001:19f0:4401:6a4:5400:3ff:fea4:fb21 3 | -------------------------------------------------------------------------------- /route/rules/proxy_domain: -------------------------------------------------------------------------------- 1 | ip.343.re 2 | dns.343.re 3 | gist.github.com 4 | raw.githubusercontent.com 5 | domain:gstatic.com 6 | domain:googleapis.cn 7 | domain:xn--ngstr-lra8j.com 8 | -------------------------------------------------------------------------------- /route/rules/proxy_ipv4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/3725268c9e46a44941a6d7ec7a61b5e3a5932c34/route/rules/proxy_ipv4 -------------------------------------------------------------------------------- /route/rules/proxy_ipv6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/3725268c9e46a44941a6d7ec7a61b5e3a5932c34/route/rules/proxy_ipv6 -------------------------------------------------------------------------------- /route/scan.sh: -------------------------------------------------------------------------------- 1 | cat>>scan.php<<"EOF" 2 | 'Redmi AX3000', 6 | '192.168.2.2' => 'SCUT Web Patch', 7 | '192.168.2.3' => 'Clear DNS Server', 8 | '192.168.2.4' => 'Network Route', 9 | '192.168.2.5' => 'GFW Crossed', 10 | '192.168.2.34' => 'Raspberry-PI 4B', 11 | '192.168.2.97' => 'TL-WDA6332RE', 12 | '192.168.2.98' => 'MOAP1200D', 13 | '192.168.2.99' => 'TL-SG2005' 14 | ); 15 | 16 | function my_net() { 17 | $info = shell_exec('ifconfig'); 18 | $info = explode(PHP_EOL . PHP_EOL, $info); 19 | foreach ($info as $row) { 20 | if (strstr($row, 'macvlan')) { break; } 21 | } 22 | preg_match('/inet (192.168.2.[0-9]{1,3}) /', $row, $match); 23 | $ip = isset($match[1]) ? $match[1] : ''; 24 | preg_match('/ether (([0-9a-f]{2}:){5}[0-9a-f]{2}) /', $row, $match); 25 | $mac = isset($match[1]) ? $match[1] : ''; 26 | return array( 27 | 'ip' => $ip, 28 | 'mac' => strtoupper($mac) 29 | ); 30 | } 31 | 32 | function nmap_scan($area) { 33 | shell_exec('nmap -sn -PR ' . $area . ' -oX temp'); 34 | $raw = file_get_contents('temp'); 35 | shell_exec('rm -f temp'); 36 | $info = json_decode(json_encode(simplexml_load_string($raw)), true)['host']; 37 | if (isset($info['status'])) { 38 | $temp = $info; 39 | $info = array(); 40 | $info[] = $temp; 41 | } 42 | foreach ($info as $row) { 43 | $type = $row['status']['@attributes']['reason']; 44 | if ($type === 'arp-response') { 45 | $ip = isset($row['address'][0]) ? $row['address'][0]['@attributes'] : null; 46 | $mac = isset($row['address'][1]) ? $row['address'][1]['@attributes'] : null; 47 | } else if ($type === 'localhost-response') { 48 | $ip = $row['address']['@attributes']; 49 | $mac = null; 50 | } else { 51 | echo 'error -> unknow type' . PHP_EOL; 52 | continue; 53 | } 54 | $hostname = isset($row['hostnames']['hostname']) ? $row['hostnames']['hostname']['@attributes'] : null; 55 | if ($ip !== null) { 56 | if ($ip['addrtype'] === 'ipv4') { 57 | $ip = $ip['addr']; 58 | } else { 59 | echo 'error -> unknow ip type' . PHP_EOL; 60 | $ip = null; 61 | } 62 | } 63 | if ($mac !== null) { 64 | if ($mac['addrtype'] === 'mac') { 65 | $mac = $mac['addr']; 66 | } else { 67 | echo 'error -> unknow mac type' . PHP_EOL; 68 | $mac = null; 69 | } 70 | } 71 | if ($hostname !== null) { 72 | if ($hostname['type'] === 'PTR') { 73 | $hostname = $hostname['name']; 74 | } else { 75 | echo 'error -> unknow hostname type' . PHP_EOL; 76 | $hostname = null; 77 | } 78 | } 79 | if ($ip === null) { 80 | echo 'error -> no ip address' . PHP_EOL; 81 | continue; 82 | } 83 | $list[$ip] = array( 84 | 'mac' => $mac, 85 | 'name' => $hostname 86 | ); 87 | } 88 | return $list; 89 | } 90 | 91 | function sort_client($clients) { 92 | foreach ($clients as $ip => $info) { 93 | $temp[substr($ip, 10 - strlen($ip))] = $info; 94 | } 95 | ksort($temp); 96 | foreach ($temp as $ip_postfix => $info) { 97 | unset($temp[$ip_postfix]); 98 | $temp['192.168.2.' . $ip_postfix] = $info; 99 | } 100 | return $temp; 101 | } 102 | 103 | function client_scan() { 104 | global $ip2name, $mac2name; 105 | $clients = nmap_scan('192.168.2.0/24'); 106 | sleep(3); 107 | $client_list_1 = nmap_scan('192.168.2.100-199'); 108 | sleep(3); 109 | $client_list_2 = nmap_scan('192.168.2.100-199'); 110 | foreach ($client_list_1 as $ip => $info) { 111 | if (!isset($clients[$ip])) { $clients[$ip] = $info; } 112 | } 113 | foreach ($client_list_2 as $ip => $info) { 114 | if (!isset($clients[$ip])) { $clients[$ip] = $info; } 115 | } 116 | $self = my_net(); 117 | if (isset($self['ip'])) { 118 | $clients[$self['ip']]['mac'] = $self['mac']; 119 | } 120 | foreach ($ip2name as $ip => $name) { 121 | if (isset($clients[$ip])) { 122 | $clients[$ip]['name'] = $name; 123 | } 124 | } 125 | foreach ($mac2name as $mac => $name) { 126 | foreach ($clients as $ip => $client) { 127 | if ($client['mac'] === $mac) { 128 | $clients[$ip]['name'] = $name; 129 | break; 130 | } 131 | } 132 | } 133 | return sort_client($clients); 134 | } 135 | 136 | $mac2name = json_decode(file_get_contents('/etc/route/client.json'), true); 137 | $clients = client_scan(); 138 | $length = 0; 139 | foreach ($clients as $info) { 140 | if (strlen($info['name']) > $length) { 141 | $length = strlen($info['name']); 142 | } 143 | } 144 | echo '┌───────────────┬───────────────────┬' . str_pad('', ($length + 2) * 3, '─') . '┐' . PHP_EOL; 145 | $dhcp_area = false; 146 | $color = "1;30m"; 147 | foreach ($clients as $ip => $info) { 148 | if (!$dhcp_area && substr($ip, 10 - strlen($ip)) >= 100) { 149 | echo '├───────────────┼───────────────────┼' . str_pad('', ($length + 2) * 3, '─') . '┤' . PHP_EOL; 150 | $color = "36m"; 151 | $dhcp_area = true; 152 | } 153 | $row = '│ '; 154 | $row .= "\033[" . $color . str_pad($ip, 13, ' ') . "\033[0m"; 155 | $row .= ' │ '; 156 | $row .= "\033[" . $color . str_pad($info['mac'], 17, ' ') . "\033[0m"; 157 | $row .= ' │ '; 158 | $row .= "\033[" . $color . str_pad($info['name'], $length, ' ') . "\033[0m"; 159 | $row .= ' │'; 160 | echo $row . PHP_EOL; 161 | } 162 | echo '└───────────────┴───────────────────┴' . str_pad('', ($length + 2) * 3, '─') . '┘' . PHP_EOL; 163 | 164 | ?> 165 | EOF 166 | 167 | php ./scan.php 168 | rm -f ./scan.php 169 | -------------------------------------------------------------------------------- /route/start.sh: -------------------------------------------------------------------------------- 1 | cat>/etc/route/rules.php<<"EOF" 2 | 'field', 23 | 'inboundTag' => 'direct', 24 | 'outboundTag' => 'direct4' 25 | ); 26 | 27 | $rules[] = array( 28 | 'type' => 'field', 29 | 'inboundTag' => 'direct6', 30 | 'outboundTag' => 'direct6' 31 | ); 32 | 33 | $rules[] = array( 34 | 'type' => 'field', 35 | 'inboundTag' => 'proxy', 36 | 'outboundTag' => 'proxy4' 37 | ); 38 | 39 | $rules[] = array( 40 | 'type' => 'field', 41 | 'inboundTag' => 'proxy6', 42 | 'outboundTag' => 'proxy6' 43 | ); 44 | 45 | $records = get_records('rules/block_domain'); 46 | if (count($records) !== 0) { 47 | $rules[] = array( 48 | 'type' => 'field', 49 | 'domain' => $records, 50 | 'outboundTag' => 'block' 51 | ); 52 | } 53 | 54 | $records = get_records('rules/block_ip'); 55 | if (count($records) !== 0) { 56 | $rules[] = array( 57 | 'type' => 'field', 58 | 'ip' => $records, 59 | 'outboundTag' => 'block' 60 | ); 61 | } 62 | 63 | $records = get_records('rules/direct_domain'); 64 | if (count($records) !== 0) { 65 | $rules[] = array( 66 | 'type' => 'field', 67 | 'inboundTag' => ['tproxy'], 68 | 'domain' => $records, 69 | 'balancerTag' => 'direct' 70 | ); 71 | } 72 | 73 | $records = get_records('rules/direct_domain'); 74 | if (count($records) !== 0) { 75 | $rules[] = array( 76 | 'type' => 'field', 77 | 'inboundTag' => ['tproxy6'], 78 | 'domain' => $records, 79 | 'balancerTag' => 'direct6' 80 | ); 81 | } 82 | 83 | $records = get_records('rules/proxy_domain'); 84 | if (count($records) !== 0) { 85 | $rules[] = array( 86 | 'type' => 'field', 87 | 'inboundTag' => ['tproxy'], 88 | 'domain' => $records, 89 | 'balancerTag' => 'proxy' 90 | ); 91 | } 92 | 93 | $records = get_records('rules/proxy_domain'); 94 | if (count($records) !== 0) { 95 | $rules[] = array( 96 | 'type' => 'field', 97 | 'inboundTag' => ['tproxy6'], 98 | 'domain' => $records, 99 | 'balancerTag' => 'proxy6' 100 | ); 101 | } 102 | 103 | $rules[] = array( 104 | 'type' => 'field', 105 | 'inboundTag' => ['tproxy'], 106 | 'domain' => ['geosite:cn'], 107 | 'balancerTag' => 'direct' 108 | ); 109 | 110 | $rules[] = array( 111 | 'type' => 'field', 112 | 'inboundTag' => ['tproxy6'], 113 | 'domain' => ['geosite:cn'], 114 | 'balancerTag' => 'direct6' 115 | ); 116 | 117 | $records = get_records('rules/direct_ipv4'); 118 | if (count($records) !== 0) { 119 | $rules[] = array( 120 | 'type' => 'field', 121 | 'ip' => $records, 122 | 'balancerTag' => 'direct' 123 | ); 124 | } 125 | 126 | $records = get_records('rules/direct_ipv6'); 127 | if (count($records) !== 0) { 128 | $rules[] = array( 129 | 'type' => 'field', 130 | 'ip' => $records, 131 | 'balancerTag' => 'direct6' 132 | ); 133 | } 134 | 135 | $records = get_records('rules/proxy_ipv4'); 136 | if (count($records) !== 0) { 137 | $rules[] = array( 138 | 'type' => 'field', 139 | 'ip' => $records, 140 | 'balancerTag' => 'proxy' 141 | ); 142 | } 143 | 144 | $records = get_records('rules/proxy_ipv6'); 145 | if (count($records) !== 0) { 146 | $rules[] = array( 147 | 'type' => 'field', 148 | 'ip' => $records, 149 | 'balancerTag' => 'proxy6' 150 | ); 151 | } 152 | 153 | $rules[] = array( 154 | 'type' => 'field', 155 | 'inboundTag' => ['tproxy'], 156 | 'ip' => ['geoip:cn','geoip:private'], 157 | 'balancerTag' => 'direct' 158 | ); 159 | 160 | $rules[] = array( 161 | 'type' => 'field', 162 | 'inboundTag' => ['tproxy6'], 163 | 'ip' => ['geoip:cn','geoip:private'], 164 | 'balancerTag' => 'direct6' 165 | ); 166 | 167 | $rules[] = array( 168 | 'type' => 'field', 169 | 'inboundTag' => ['tproxy'], 170 | 'balancerTag' => 'proxy' 171 | ); 172 | 173 | $rules[] = array( 174 | 'type' => 'field', 175 | 'inboundTag' => ['tproxy6'], 176 | 'balancerTag' => 'proxy6' 177 | ); 178 | 179 | file_put_contents($path . 'rules/temp.json', json_encode($rules)); 180 | $contents = '"rules": ' . shell_exec('jq . ' . $path . 'rules/temp.json'); 181 | shell_exec('rm -f ' . $path . 'rules/temp.json'); 182 | $contents = explode(PHP_EOL, $contents); 183 | foreach ($contents as &$content) { 184 | if ($content == null) { continue; } 185 | $content = ' ' . $content; 186 | } 187 | $contents = implode(PHP_EOL, $contents); 188 | 189 | $config = '{ 190 | "routing": { 191 | "domainStrategy": "IPOnDemand",' . PHP_EOL . $contents; 192 | $config = substr($config, 0, strlen($config) - 1) . ',' . PHP_EOL; 193 | 194 | $config_raw = explode(PHP_EOL, file_get_contents($path . 'config/routing.json')); 195 | foreach ($config_raw as $row) { 196 | if (strstr($row, ' "balancers": [')) { 197 | $flag_start = true; 198 | } 199 | if (isset($flag_start)) { 200 | $config .= $row . PHP_EOL; 201 | } 202 | } 203 | $config = substr($config, 0, strlen($config) - 1); 204 | file_put_contents($path . 'config/routing.json', $config); 205 | 206 | ?> 207 | EOF 208 | php /etc/route/rules.php 209 | rm -f /etc/route/rules.php 210 | temp=`docker ps -a | grep -o route` 211 | if [ "$temp" != "" ]; then 212 | docker restart -t=0 route > /dev/null 213 | else 214 | docker run --restart always \ 215 | --name route \ 216 | --network macvlan \ 217 | --privileged -d \ 218 | --volume /etc/route/:/etc/xray/expose/ \ 219 | --volume /etc/timezone:/etc/timezone:ro \ 220 | --volume /etc/localtime:/etc/localtime:ro \ 221 | dnomd343/tproxy:latest > /dev/null 222 | fi 223 | sleep 1s 224 | docker ps -a 225 | -------------------------------------------------------------------------------- /scutweb/asset/geoip.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/3725268c9e46a44941a6d7ec7a61b5e3a5932c34/scutweb/asset/geoip.dat -------------------------------------------------------------------------------- /scutweb/asset/geosite.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/3725268c9e46a44941a6d7ec7a61b5e3a5932c34/scutweb/asset/geosite.dat -------------------------------------------------------------------------------- /scutweb/asset/update.sh: -------------------------------------------------------------------------------- 1 | GITHUB="github.com" 2 | ASSET_REPO="Loyalsoldier/v2ray-rules-dat" 3 | VERSION=$(curl --silent "https://api.github.com/repos/$ASSET_REPO/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/'); 4 | cd /etc/scutweb/asset/ 5 | mkdir -p ./temp/ 6 | wget -P ./temp/ "https://$GITHUB/$ASSET_REPO/releases/download/$VERSION/geoip.dat" 7 | file_size=`du ./temp/geoip.dat | awk '{print $1}'` 8 | [ $file_size != "0" ] && mv -f ./temp/geoip.dat ./ 9 | wget -P ./temp/ "https://$GITHUB/$ASSET_REPO/releases/download/$VERSION/geosite.dat" 10 | file_size=`du ./temp/geosite.dat | awk '{print $1}'` 11 | [ $file_size != "0" ] && mv -f ./temp/geosite.dat ./ 12 | rm -rf ./temp/ 13 | -------------------------------------------------------------------------------- /scutweb/check.sh: -------------------------------------------------------------------------------- 1 | php_file="/etc/scutweb/check.php" 2 | cat>$php_file<<"EOF" 3 | ["http://baidu.com", "192.168.2.2:1681"], 9 | "nodeB_IPv4" => ["http://baidu.com", "192.168.2.2:1682"], 10 | "nodeC_IPv4" => ["http://baidu.com", "192.168.2.2:1683"], 11 | "nodeA_IPv6" => ["http://test6.nju.edu.cn", "192.168.2.2:1681"], 12 | "nodeB_IPv6" => ["http://test6.nju.edu.cn", "192.168.2.2:1682"], 13 | "nodeC_IPv6" => ["http://test6.nju.edu.cn", "192.168.2.2:1683"], 14 | ); 15 | 16 | foreach ($check_list as $name => $fields) { 17 | echo $name . ' -> '; 18 | if (check_target($fields[0], $fields[1])) { 19 | echo 'ok' . PHP_EOL; 20 | } else { 21 | echo 'error' . PHP_EOL; 22 | } 23 | } 24 | 25 | function check_target($url, $socks) { 26 | global $time_out; 27 | $cmd = 'curl --silent ' . $url . ' --max-time ' . $time_out . ' --socks5 ' . $socks; 28 | $content = shell_exec($cmd); 29 | return (strstr(strtolower($content), ' 33 | EOF 34 | php $php_file 35 | rm -f $php_file 36 | -------------------------------------------------------------------------------- /scutweb/config/dns.json: -------------------------------------------------------------------------------- 1 | { 2 | "dns": {} 3 | } 4 | -------------------------------------------------------------------------------- /scutweb/config/inbounds.json: -------------------------------------------------------------------------------- 1 | { 2 | "inbounds": [ 3 | { 4 | "tag": "tproxy", 5 | "port": 7288, 6 | "protocol": "dokodemo-door", 7 | "settings": { 8 | "network": "tcp,udp", 9 | "followRedirect": true 10 | }, 11 | "streamSettings": { 12 | "sockopt": { 13 | "tproxy": "tproxy" 14 | } 15 | } 16 | }, 17 | { 18 | "tag": "tproxy6", 19 | "port": 7289, 20 | "protocol": "dokodemo-door", 21 | "settings": { 22 | "network": "tcp,udp", 23 | "followRedirect": true 24 | }, 25 | "streamSettings": { 26 | "sockopt": { 27 | "tproxy": "tproxy" 28 | } 29 | } 30 | }, 31 | { 32 | "tag": "ipv4", 33 | "port": 1084, 34 | "protocol": "socks", 35 | "settings": { 36 | "udp": true 37 | } 38 | }, 39 | { 40 | "tag": "ipv6", 41 | "port": 1086, 42 | "protocol": "socks", 43 | "settings": { 44 | "udp": true 45 | } 46 | }, 47 | { 48 | "tag": "nodeA", 49 | "port": 1681, 50 | "protocol": "socks", 51 | "settings": { 52 | "udp": true 53 | } 54 | }, 55 | { 56 | "tag": "nodeB", 57 | "port": 1682, 58 | "protocol": "socks", 59 | "settings": { 60 | "udp": true 61 | } 62 | }, 63 | { 64 | "tag": "nodeC", 65 | "port": 1683, 66 | "protocol": "socks", 67 | "settings": { 68 | "udp": true 69 | } 70 | }, 71 | { 72 | "tag": "socks", 73 | "port": 1080, 74 | "protocol": "socks", 75 | "settings": { 76 | "udp": true 77 | }, 78 | "sniffing": { 79 | "enabled": true, 80 | "destOverride": [ 81 | "http", 82 | "tls" 83 | ] 84 | } 85 | }, 86 | { 87 | "tag": "http", 88 | "port": 1081, 89 | "protocol": "http", 90 | "settings": { 91 | "allowTransparent": false 92 | }, 93 | "sniffing": { 94 | "enabled": true, 95 | "destOverride": [ 96 | "http", 97 | "tls" 98 | ] 99 | } 100 | } 101 | ] 102 | } 103 | -------------------------------------------------------------------------------- /scutweb/config/routing.json: -------------------------------------------------------------------------------- 1 | { 2 | "routing": { 3 | "domainStrategy": "AsIs", 4 | "rules": [ 5 | { 6 | "type": "field", 7 | "inboundTag": [ "nodeA" ], 8 | "outboundTag": "nodeA" 9 | }, 10 | { 11 | "type": "field", 12 | "inboundTag": [ "nodeB" ], 13 | "outboundTag": "nodeB" 14 | }, 15 | { 16 | "type": "field", 17 | "inboundTag": [ "nodeC" ], 18 | "outboundTag": "nodeC" 19 | }, 20 | { 21 | "type": "field", 22 | "inboundTag": [ "tproxy", "ipv4" ], 23 | "balancerTag": "ipv4" 24 | }, 25 | { 26 | "type": "field", 27 | "inboundTag": [ "tproxy6", "ipv6" ], 28 | "balancerTag": "ipv6" 29 | }, 30 | { 31 | "type": "field", 32 | "network": "tcp,udp", 33 | "balancerTag": "ipv6" 34 | } 35 | ], 36 | "balancers": [ 37 | { 38 | "tag": "ipv4", 39 | "selector": [ "nodeA" ] 40 | }, 41 | { 42 | "tag": "ipv6", 43 | "selector": [ "nodeC" ] 44 | } 45 | ] 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /scutweb/custom.sh: -------------------------------------------------------------------------------- 1 | iptables -t nat -N SCUT_PING 2 | iptables -t nat -A SCUT_PING -j DNAT --to-destination 192.168.2.2 3 | iptables -t nat -A PREROUTING -i eth0 -p icmp -j SCUT_PING 4 | ip6tables -t nat -N SCUT_PING 5 | ip6tables -t nat -A SCUT_PING -j DNAT --to-destination fc00::2 6 | ip6tables -t nat -A PREROUTING -i eth0 -p icmp -j SCUT_PING 7 | -------------------------------------------------------------------------------- /scutweb/log/view.sh: -------------------------------------------------------------------------------- 1 | tail -f /etc/scutweb/log/access.log | grep --line-buffered -v "223.5.5.5:53\|119.29.29.29:53\|114.114.114.114:53" | grep --color "[0-2][0-9]:[0-5][0-9]:[0-5][0-9]\|accepted" 2 | -------------------------------------------------------------------------------- /scutweb/network/bypass/ipv4: -------------------------------------------------------------------------------- 1 | 169.254.0.0/16 2 | 224.0.0.0/3 3 | -------------------------------------------------------------------------------- /scutweb/network/bypass/ipv6: -------------------------------------------------------------------------------- 1 | fc00::/7 2 | fe80::/10 3 | ff00::/8 4 | -------------------------------------------------------------------------------- /scutweb/network/dns: -------------------------------------------------------------------------------- 1 | 192.168.2.1 2 | -------------------------------------------------------------------------------- /scutweb/network/interface/ipv4: -------------------------------------------------------------------------------- 1 | ADDRESS=192.168.2.2/24 2 | GATEWAY=192.168.2.1 3 | FORWARD=true 4 | -------------------------------------------------------------------------------- /scutweb/network/interface/ipv6: -------------------------------------------------------------------------------- 1 | ADDRESS=fc00::2/64 2 | GATEWAY= 3 | FORWARD=true 4 | -------------------------------------------------------------------------------- /scutweb/network/radvd/config: -------------------------------------------------------------------------------- 1 | AdvSendAdvert=on 2 | AdvManagedFlag=off 3 | AdvOtherConfigFlag=off 4 | 5 | MinRtrAdvInterval=10 6 | MaxRtrAdvInterval=30 7 | MinDelayBetweenRAs=3 8 | 9 | AdvOnLink=on 10 | AdvAutonomous=on 11 | AdvRouterAddr=off 12 | AdvValidLifetime=600 13 | AdvPreferredLifetime=100 14 | -------------------------------------------------------------------------------- /scutweb/network/radvd/ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/3725268c9e46a44941a6d7ec7a61b5e3a5932c34/scutweb/network/radvd/ignore -------------------------------------------------------------------------------- /scutweb/start.sh: -------------------------------------------------------------------------------- 1 | temp=`docker ps -a | grep -o scutweb` 2 | if [ "$temp" != "" ]; then 3 | docker restart -t=0 scutweb > /dev/null 4 | else 5 | docker run --restart always \ 6 | --name scutweb \ 7 | --network macvlan \ 8 | --privileged -d \ 9 | --volume /etc/scutweb/:/etc/xray/expose/ \ 10 | --volume /etc/timezone:/etc/timezone:ro \ 11 | --volume /etc/localtime:/etc/localtime:ro \ 12 | dnomd343/tproxy:latest > /dev/null 13 | fi 14 | sleep 1s 15 | docker ps -a 16 | --------------------------------------------------------------------------------