├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── dict ├── ip_black_list.txt ├── next_sub.txt └── subnames_full.txt ├── lib ├── core.go ├── dns.go ├── dns │ ├── dnsaxfr.go │ └── fdns.go ├── helpers.go ├── http.go └── options.go ├── log └── qq.com.txt └── main.go /.gitignore: -------------------------------------------------------------------------------- 1 | # ---> Go 2 | # Binaries for programs and plugins 3 | *.exe 4 | *.exe~ 5 | *.dll 6 | *.so 7 | *.dylib 8 | 9 | # Test binary, build with `go test -c` 10 | *.test 11 | 12 | # Output of the go coverage tool, specifically when used with LiteIDE 13 | *.out 14 | 15 | .* 16 | log/* 17 | bin 18 | dict -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | TARGET=./bin 2 | ARCHS=amd64 386 3 | LDFLAGS="-s -w" 4 | #LDFLAGS="-s -w -X main.VERSION=0.3 -X 'main.GIT_HASH=`git log --stat |head -1|awk '{print $$2}'`' -X 'main.GO_VERSION=`go version`'" 5 | BIN="subdomain-scanner" 6 | PARKAGE=`find ./bin -type d` 7 | current: 8 | go build -ldflags=${LDFLAGS} 9 | 10 | windows: 11 | @for GOARCH in ${ARCHS}; do \ 12 | echo "Building for windows $${GOARCH} ..." ; \ 13 | mkdir -p ${TARGET}/${BIN}-windows-$${GOARCH} ; \ 14 | GOOS=windows GOARCH=$${GOARCH} go build -ldflags=${LDFLAGS} \ 15 | -o ${TARGET}/${BIN}-windows-$${GOARCH}/${BIN}.exe ; \ 16 | done; \ 17 | echo "Done." 18 | 19 | linux: 20 | @for GOARCH in ${ARCHS}; do \ 21 | echo "Building for linux $${GOARCH} ..." ; \ 22 | mkdir -p ${TARGET}/${BIN}-linux-$${GOARCH} ; \ 23 | GOOS=linux GOARCH=$${GOARCH} go build -ldflags=${LDFLAGS} \ 24 | -o ${TARGET}/${BIN}-linux-$${GOARCH}/${BIN} ; \ 25 | done; \ 26 | echo "Done." 27 | 28 | darwin: 29 | @for GOARCH in ${ARCHS}; do \ 30 | echo "Building for darwin $${GOARCH} ..." ; \ 31 | mkdir -p ${TARGET}/${BIN}-darwin-$${GOARCH} ; \ 32 | GOOS=darwin GOARCH=$${GOARCH} go build -ldflags=${LDFLAGS} \ 33 | -o ${TARGET}/${BIN}-darwin-$${GOARCH}/${BIN} ; \ 34 | done; \ 35 | echo "Done." 36 | tag: 37 | @for S in ${PARKAGE}; do \ 38 | echo "cp -Rfv dict $${S}/" ; \ 39 | echo "tar -zcvf $${S}.tar.gz $${S}" ; \ 40 | done; \ 41 | 42 | all: darwin linux windows 43 | 44 | clean: 45 | rm -Rf ${TARGET} 46 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | subdomain-scanner 2 | ====== 3 | 使用Golang编写的子域名检测程序,特点就是快、快、快。 4 | 5 | 扫描速度依赖于网络环境。1Mb带宽,200个goroutine,稳定1700左右/s的扫描速度。 6 | 7 | 默认为谷歌的DNS服务器,可自行配置其它DNS。 8 | 9 | 10 | ## Building ## 11 | go get github.com/miekg/dns 12 | go get github.com/hashicorp/go-multierror 13 | go get github.com/fengdingbo/subdomain-scanner 14 | cd $GOPATH/src/github.com/fengdingbo/subdomain-scanner/ 15 | make 16 | ./subdomain-scanner -h 17 | 18 | 19 | ## Download from releases ## 20 | Download compiled binaries from [releases](https://github.com/fengdingbo/subdomain-scanner/releases) 21 | 22 | 23 | ## Usage ## 24 | Usage of ./subdomain-scanner -h 25 | -axfr 26 | DNS Zone Transfer Protocol (AXFR) of RFC 5936 (default true) 27 | -d string 28 | The target Domain 29 | -depth int 30 | Scan sub domain depth. range[>=1] (default 1) 31 | -dns string 32 | DNS global server (default "8.8.8.8/8.8.4.4") 33 | -f string 34 | File contains new line delimited subs (default "dict/subnames_full.txt") 35 | -fw 36 | Force scan with wildcard domain (default true) 37 | -h Show this help message and exit 38 | -l string 39 | The target Domain in file 40 | -o string 41 | Output file to write results to (defaults to ./log/{target}).txt 42 | -t int 43 | Num of scan threads (default 200) 44 | 45 | 46 | ## Examples ## 47 | $./subdomain-scanner -d qq.com 48 | ============================================= 49 | subdomain-scanner v0.4#dev 50 | ============================================= 51 | [+] Threads : 200 52 | [+] Domain : qq.com 53 | [+] Dict : dict/subnames_full.txt 54 | [+] Depth : 1 55 | [+] Help : false 56 | [+] Log : log/qq.com.txt 57 | [+] DNSServer : 8.8.8.8/8.8.4.4 58 | [+] WildcardDomain : true 59 | [+] AXFC : true 60 | [+] ScanDomainList : [qq.com] 61 | ============================================= 62 | 2018/12/10 00:05:05 [+] Validate DNS servers... 63 | 2018/12/10 00:05:05 [+] Found DNS Server 8.8.8.8/8.8.4.4 64 | 2018/12/10 00:05:05 [+] Validate AXFR of DNS zone transfer 65 | 2018/12/10 00:05:08 Starting 66 | 2018/12/10 00:05:52 All Done. 2146 found, 1744.6328/s, 76120 scanned in 43.63 seconds 67 | 2018/12/10 00:05:52 The output result file is log/qq.com.txt 68 | 69 | 70 | ## Change Log 71 | * [2018-12-03] 72 | * 更好的参数调用提示 73 | * [2018-12-01] 74 | * 支持DNS域传送 75 | * 泛域名识别+扫描(泛域名得到的ip加入黑名单,继续爆破非黑名单ip) 76 | * [2018-11-30] 77 | * 重构并发逻辑 78 | * go官方的net包,不够完善,好多RFC都不支持,比如[RFC 4592](https://github.com/golang/go/issues/28947),所以使用了一个第三方包来做dns解析,提升扫描效率。 79 | * [2018-11-27] 80 | * Demo雏形 81 | 82 | 83 | ## TODO ## 84 | - [x] 可选dns服务器 85 | - [x] 自定义字典 86 | - [x] 并发扫描 87 | - [x] 泛域名识别+扫描(泛域名得到的ip加入黑名单,继续爆破非黑名单ip) 88 | - [x] 支持DNS域传送 89 | - [x] 从文件中获取需要检测的域名 90 | - [ ] 支持DNS AAAA,ipv6检测 91 | - [x] 深度扫描(多级子域名检测) 92 | - [ ] 自定义导出格式、计划支持txt、json等 93 | - [x] 更友好的参数调用提示 94 | - [ ] 支持api接口调用 95 | 96 | 97 | ## Thanks ## 98 | [https://github.com/miekg/dns](https://github.com/miekg/dns) 99 | 100 | [https://github.com/OJ/gobuster](https://github.com/OJ/gobuster) 101 | 102 | [https://github.com/binaryfigments/axfr](https://github.com/binaryfigments/axfr) 103 | 104 | [https://github.com/lijiejie/subDomainsBrute](https://github.com/lijiejie/subDomainsBrute) 105 | -------------------------------------------------------------------------------- /dict/ip_black_list.txt: -------------------------------------------------------------------------------- 1 | 108.160.166.92 2 | 110.249.209.42 3 | 118.5.49.6 4 | 120.192.83.163 5 | 123.129.254.12 6 | 123.129.254.13 7 | 123.129.254.14 8 | 123.129.254.15 9 | 125.211.213.132 10 | 128.121.126.139 11 | 159.106.121.75 12 | 169.132.13.103 13 | 173.252.102.16 14 | 173.252.103.64 15 | 173.252.110.21 16 | 174.36.196.242 17 | 174.37.54.20 18 | 183.221.250.11 19 | 185.85.13.155 20 | 188.5.4.96 21 | 189.163.17.5 22 | 192.67.198.6 23 | 197.4.4.12 24 | 199.59.148.140 25 | 199.59.148.97 26 | 199.59.149.136 27 | 199.59.150.11 28 | 199.59.150.49 29 | 202.106.1.2 30 | 202.181.7.85 31 | 202.98.24.122 32 | 202.98.24.124 33 | 202.98.24.125 34 | 203.161.230.171 35 | 203.98.7.65 36 | 205.186.152.122 37 | 207.12.88.98 38 | 208.43.170.231 39 | 208.56.31.43 40 | 209.145.54.50 41 | 209.220.30.174 42 | 209.36.73.33 43 | 211.138.34.204 44 | 211.138.74.132 45 | 211.94.66.147 46 | 211.98.70.195 47 | 211.98.70.226 48 | 211.98.70.227 49 | 211.98.71.195 50 | 213.169.251.35 51 | 216.221.188.182 52 | 216.234.179.13 53 | 218.93.250.18 54 | 220.165.8.172 55 | 220.165.8.174 56 | 220.250.64.20 57 | 221.179.46.190 58 | 23.89.5.60 59 | 243.185.187.39 60 | 249.129.46.48 61 | 253.157.14.165 62 | 31.13.64.33 63 | 31.13.65.17 64 | 31.13.66.1 65 | 31.13.66.23 66 | 31.13.68.1 67 | 31.13.69.86 68 | 31.13.70.20 69 | 31.13.71.7 70 | 31.13.72.1 71 | 31.13.72.23 72 | 31.13.73.1 73 | 31.13.74.40 74 | 31.13.78.65 75 | 31.13.78.66 76 | 31.13.79.17 77 | 31.13.80.1 78 | 31.13.81.17 79 | 31.13.82.1 80 | 31.13.82.17 81 | 31.13.82.23 82 | 31.13.83.8 83 | 31.13.84.16 84 | 31.13.85.16 85 | 31.13.85.8 86 | 31.13.86.1 87 | 31.13.86.8 88 | 37.61.54.158 89 | 4.36.66.178 90 | 42.123.125.237 91 | 46.82.174.68 92 | 49.2.123.56 93 | 54.76.135.1 94 | 59.24.3.173 95 | 60.19.29.22 96 | 61.131.208.210 97 | 61.131.208.211 98 | 64.13.232.149 99 | 64.33.88.161 100 | 64.33.99.47 101 | 64.66.163.251 102 | 65.104.202.252 103 | 65.160.219.113 104 | 66.220.147.11 105 | 66.220.147.44 106 | 66.220.149.18 107 | 66.220.152.28 108 | 66.220.158.32 109 | 66.45.252.237 110 | 67.15.100.252 111 | 67.15.129.210 112 | 67.228.126.62 113 | 67.228.235.91 114 | 67.228.74.123 115 | 69.171.224.12 116 | 69.171.224.40 117 | 69.171.225.13 118 | 69.171.229.73 119 | 69.171.230.18 120 | 69.171.233.24 121 | 69.171.233.37 122 | 69.171.234.29 123 | 69.171.235.101 124 | 69.171.235.64 125 | 69.171.237.16 126 | 69.171.239.11 127 | 69.171.240.27 128 | 69.171.242.30 129 | 69.171.244.11 130 | 69.171.245.84 131 | 69.171.247.32 132 | 69.171.247.71 133 | 69.171.248.128 134 | 69.171.248.65 135 | 69.63.176.15 136 | 69.63.180.173 137 | 69.63.181.12 138 | 69.63.184.14 139 | 69.63.184.30 140 | 69.63.186.31 141 | 69.63.187.12 142 | 69.63.189.16 143 | 69.63.190.26 144 | 72.14.205.104 145 | 72.14.205.99 146 | 74.125.127.113 147 | 74.86.118.24 148 | 74.86.12.172 149 | 74.86.142.55 150 | 74.86.151.167 151 | 74.86.17.48 152 | 74.86.226.234 153 | 74.86.228.110 154 | 74.86.3.208 155 | 75.126.115.192 156 | 75.126.124.162 157 | 75.126.135.131 158 | 75.126.150.210 159 | 75.126.164.178 160 | 77.4.7.92 161 | 78.16.49.15 162 | 8.7.198.45 163 | 88.191.249.183 164 | 92.242.144.2 165 | 93.46.8.89 -------------------------------------------------------------------------------- /dict/next_sub.txt: -------------------------------------------------------------------------------- 1 | test 2 | test2 3 | t 4 | dev 5 | 1 6 | 2 7 | 3 8 | s1 9 | s2 10 | s3 11 | admin 12 | adm 13 | a 14 | ht 15 | adminht 16 | webht 17 | web 18 | gm 19 | sys 20 | system 21 | manage 22 | manager 23 | mgr 24 | b 25 | c 26 | passport 27 | bata 28 | wei 29 | weixin 30 | wechat 31 | wx 32 | wiki 33 | upload 34 | ftp 35 | pic 36 | jira 37 | zabbix 38 | nagios 39 | bug 40 | bugzilla 41 | sql 42 | mysql 43 | db 44 | stmp 45 | pop 46 | imap 47 | mail 48 | zimbra 49 | exchange 50 | forum 51 | bbs 52 | list 53 | count 54 | counter 55 | img 56 | img01 57 | img02 58 | img03 59 | img04 60 | api 61 | cache 62 | js 63 | css 64 | app 65 | apps 66 | wap 67 | m 68 | sms 69 | zip 70 | monitor 71 | proxy 72 | update 73 | upgrade 74 | stat 75 | stats 76 | data 77 | portal 78 | blog 79 | autodiscover 80 | en 81 | search 82 | so 83 | oa 84 | database 85 | home 86 | sso 87 | help 88 | vip 89 | s 90 | w 91 | down 92 | download 93 | downloads 94 | dl 95 | svn 96 | git 97 | log 98 | staff 99 | vpn 100 | sslvpn 101 | ssh 102 | scanner 103 | sandbox 104 | ldap 105 | lab 106 | go 107 | demo 108 | console 109 | cms 110 | auth 111 | crm 112 | erp 113 | res 114 | static 115 | old 116 | new 117 | beta 118 | image 119 | service 120 | login 121 | 3g 122 | docs 123 | it 124 | e 125 | live 126 | library 127 | files 128 | i 129 | d 130 | cp 131 | connect 132 | gateway 133 | lib 134 | preview 135 | backup 136 | share 137 | status 138 | assets 139 | user 140 | vote 141 | bugs 142 | cas 143 | feedback 144 | id 145 | edm 146 | survey 147 | union 148 | ceshi 149 | dev1 150 | updates 151 | phpmyadmin 152 | pma 153 | edit 154 | master 155 | xml 156 | control 157 | profile 158 | zhidao 159 | tool 160 | toolbox 161 | boss 162 | activity 163 | www -------------------------------------------------------------------------------- /lib/core.go: -------------------------------------------------------------------------------- 1 | package lib 2 | 3 | import ( 4 | "fmt" 5 | "os" 6 | "time" 7 | "log" 8 | "bufio" 9 | "sync" 10 | "net" 11 | "strings" 12 | "context" 13 | "github.com/fengdingbo/subdomain-scanner/lib/dns" 14 | ) 15 | 16 | type Result struct { 17 | Host string 18 | Addr []net.IP 19 | } 20 | 21 | type Scanner struct { 22 | opts *Options // Options 23 | preWordChan chan string // 24 | wordChan chan string // 字典队列 25 | found int // 发现域名数 26 | count int // 字典总数 27 | issued int // 当前处理数 28 | log *os.File // log文件 29 | mu *sync.RWMutex // 锁 30 | timeStart time.Time // 执行开始时间 31 | BlackList map[string]string // 解析的黑名单字典,ip->泛域名 32 | } 33 | 34 | func NewScanner(opts *Options) *Scanner { 35 | var this Scanner 36 | this.opts = opts 37 | 38 | this.wordChan = make(chan string, this.opts.Threads) 39 | this.preWordChan = make(chan string) 40 | this.mu = new(sync.RWMutex) 41 | this.BlackList = make(map[string]string) 42 | //this.LoadBlackListFile() 43 | 44 | f, err := os.Create(opts.Log) 45 | this.log = f 46 | 47 | if err != nil { 48 | log.Fatalln(err) 49 | } 50 | return &this 51 | } 52 | 53 | // 验证泛域名 54 | // 解析泛域名后将解析的结果加入黑名单 55 | func (this *Scanner) WildcardsDomain(s string) bool { 56 | //log.Printf("[+] Validate wildcard domain *.%v exists", this.opts.Domain) 57 | if ip, ok := this.IsWildcardsDomain(s); ok { 58 | //log.Printf("[+] Domain %v is wildcard,*.%v ip is %v", this.opts.Domain, this.opts.Domain, ip) 59 | //if ! this.opts.WildcardDomain { 60 | // return true 61 | //} 62 | 63 | for _, v := range ip { 64 | this.BlackList[v.String()] = fmt.Sprintf("*.%s", this.opts.Domain) 65 | } 66 | 67 | return true 68 | } 69 | 70 | return false 71 | } 72 | 73 | func (this *Scanner) Start() { 74 | if ok := this.WildcardsDomain(this.opts.Domain); ok && !this.opts.WildcardDomain { 75 | return 76 | } 77 | 78 | this.timeStart = time.Now() 79 | var wg sync.WaitGroup 80 | //wg.Add(1) 81 | 82 | ctx, cancel := context.WithCancel(context.Background()) 83 | defer cancel() 84 | 85 | go this.progressPrint(ctx, &wg) 86 | go this.preWord(&wg) 87 | for i := 0; i < this.opts.Threads; i++ { 88 | go this.worker(&wg) 89 | } 90 | 91 | // 读取字典 92 | f, err := os.Open(this.opts.Dict) 93 | if err != nil { 94 | panic(err) 95 | } 96 | 97 | defer f.Close() 98 | 99 | this.count = getCountLine(f) 100 | 101 | f.Seek(0, 0) 102 | scanner := bufio.NewScanner(f) 103 | 104 | for scanner.Scan() { 105 | wg.Add(1) 106 | word := strings.TrimSpace(scanner.Text()) 107 | this.wordChan <- word 108 | } 109 | 110 | wg.Wait() 111 | 112 | format := "All Done. %d found, %.4f/s, %d scanned in %.2f seconds\n" 113 | this.mu.RLock() 114 | this.progressClean() 115 | log.Printf(format, 116 | this.found, 117 | float64(this.issued)/time.Since(this.timeStart).Seconds(), 118 | this.issued, 119 | time.Since(this.timeStart).Seconds(), 120 | ) 121 | log.Printf("The output result file is %s\n", this.opts.Log) 122 | this.mu.RUnlock() 123 | 124 | } 125 | 126 | func (this *Scanner) incr() { 127 | this.mu.Lock() 128 | this.issued++ 129 | this.mu.Unlock() 130 | } 131 | 132 | // goroutine >= 1 133 | // 负责扫描字典队列 134 | func (this *Scanner) worker(wg *sync.WaitGroup) { 135 | for v := range this.wordChan { 136 | this.incr() 137 | host := fmt.Sprintf("%s.%s", v, this.opts.Domain) 138 | ip, err := this.LookupHost(host) 139 | if err == nil { 140 | this.result(Result{host, ip}, wg) 141 | } 142 | 143 | wg.Done() 144 | } 145 | } 146 | func (this *Scanner) preWord(wg *sync.WaitGroup) { 147 | // TODO 148 | f, err := os.Open("dict/next_sub.txt") 149 | if err != nil { 150 | fmt.Println(err) 151 | } 152 | 153 | 154 | defer f.Close() 155 | // TODO 深度扫描暂时不支持泛域名扫描 156 | for v := range this.preWordChan { 157 | if ok := this.WildcardsDomain(v); !ok{ 158 | f.Seek(0, 0) 159 | scanner := bufio.NewScanner(f) 160 | 161 | for scanner.Scan() { 162 | this.mu.Lock() 163 | this.count++ 164 | this.mu.Unlock() 165 | 166 | wg.Add(1) 167 | word := strings.TrimSpace(scanner.Text()) 168 | word = fmt.Sprintf("%s.%s", word, v[0:strings.LastIndex(v, this.opts.Domain)-1]) 169 | this.wordChan <- word 170 | } 171 | } 172 | 173 | 174 | wg.Done() 175 | } 176 | } 177 | 178 | func (this *Scanner) result(re Result, wg *sync.WaitGroup) { 179 | // 如果没有一个可用ip存在,则不记录 180 | if this.IsBlackIPs(re.Addr) { 181 | return 182 | } 183 | 184 | if this.opts.Depth > 1 { 185 | wg.Add(1) 186 | go func(){ 187 | this.preWordChan<-re.Host 188 | }() 189 | } 190 | 191 | this.progressClean() 192 | 193 | fmt.Printf("[+] %v\n", re) 194 | 195 | this.mu.Lock() 196 | this.found++ 197 | this.log.WriteString(fmt.Sprintf("%v\t%v\n", re.Host, re.Addr)) 198 | this.mu.Unlock() 199 | } 200 | 201 | // 清除光标所在行的所有字符 202 | func (this *Scanner) progressClean() { 203 | fmt.Fprint(os.Stderr, "\r\x1b[2K") 204 | } 205 | 206 | // goroutine = 1 207 | // 启动后该方法负责打印进度 208 | // 直到进度到100%跳出死循环 209 | func (this *Scanner) progressPrint(c context.Context,wg *sync.WaitGroup) { 210 | tick := time.NewTicker(1 * time.Second) 211 | format := "\r%d|%.4f%%|%.4f/s|%d scanned in %.2f seconds" 212 | log.Println("Starting") 213 | 214 | for { 215 | select { 216 | case <-tick.C: 217 | this.mu.RLock() 218 | fmt.Fprintf(os.Stderr, format, 219 | this.count, 220 | float64(this.issued)/float64(this.count)*100, 221 | float64(this.issued)/time.Since(this.timeStart).Seconds(), 222 | this.issued, 223 | time.Since(this.timeStart).Seconds(), 224 | ) 225 | this.mu.RUnlock() 226 | // Force quit 227 | //if this.issued == this.count { 228 | // break Loop; 229 | //} 230 | 231 | case <-c.Done(): 232 | return 233 | } 234 | } 235 | } 236 | 237 | // 获取泛域名ip地址 238 | func (this *Scanner) IsWildcardsDomain(s string) (ip []net.IP, ok bool) { 239 | // Go package net exists bug? 240 | // @link https://github.com/golang/go/issues/28947 241 | // Nonsupport RFC 4592 242 | // net.LookupHost("*.qzone.qq.com") // --> lookup *.qzone.qq.com: no such host 243 | 244 | // md5(random string) 245 | // byte := md5.Sum([]byte(time.Now().String())) 246 | // randSub:=hex.EncodeToString(byte[:]) 247 | // host := fmt.Sprintf("%s.%s", randSub, this.opts.Domain) 248 | // addrs, err := net.LookupHost(host) 249 | 250 | host := fmt.Sprintf("*.%s", s) 251 | addrs, err := this.LookupHost(host) 252 | 253 | if err != nil { 254 | return addrs, false 255 | } 256 | 257 | return addrs, true 258 | } 259 | 260 | // 验证DNS域传送 261 | func (this *Scanner) TestAXFR(domain string) (results []string, err error) { 262 | server, err := this.LookupNS(domain) 263 | 264 | if results, err = dns.Axrf(domain, server); err == nil { 265 | for _, v := range results { 266 | this.mu.Lock() 267 | this.log.WriteString(fmt.Sprintf("%s\n", v)) 268 | this.mu.Unlock() 269 | } 270 | } 271 | return 272 | } 273 | 274 | // 验证DNS服务器是否稳定 275 | func (this *Scanner) TestDNSServer() bool { 276 | ipaddr, err := this.LookupHost("google-public-dns-a.google.com") // test lookup an existed domain 277 | 278 | if err != nil { 279 | //log.Println(err) 280 | return false 281 | } 282 | // Validate dns pollution 283 | if ipaddr[0].String() != "8.8.8.8" { 284 | // Non-existed domain test 285 | _, err := this.LookupHost("test.bad.dns.fengdingbo.com") 286 | // Bad DNS Server 287 | if err == nil { 288 | return false 289 | } 290 | } 291 | 292 | return true 293 | } 294 | 295 | func getCountLine(f *os.File) int { 296 | i := 0 297 | scanner := bufio.NewScanner(f) 298 | for scanner.Scan() { 299 | i++ 300 | } 301 | 302 | return i 303 | } 304 | -------------------------------------------------------------------------------- /lib/dns.go: -------------------------------------------------------------------------------- 1 | package lib 2 | 3 | import ( 4 | "net" 5 | "github.com/fengdingbo/subdomain-scanner/lib/dns" 6 | "strings" 7 | ) 8 | 9 | func (this *Scanner) LookupHost(host string) (addrs []net.IP, err error) { 10 | DnsResolver := dns.New(strings.Split(this.opts.DNSServer, "/")) 11 | 12 | ipaddr, err := DnsResolver.LookupHost(host) 13 | if err != nil { 14 | //log.Println(err) 15 | return 16 | } 17 | 18 | return ipaddr, nil 19 | } 20 | 21 | func (this *Scanner) LookupNS(host string) ([]string, error) { 22 | DnsResolver := dns.New(strings.Split(this.opts.DNSServer, "/")) 23 | 24 | return DnsResolver.LookupNS(host) 25 | } 26 | -------------------------------------------------------------------------------- /lib/dns/dnsaxfr.go: -------------------------------------------------------------------------------- 1 | package dns 2 | 3 | import ( 4 | "net" 5 | "strings" 6 | "errors" 7 | "github.com/miekg/dns" 8 | ) 9 | 10 | func Axrf(hostname string, servers []string) (results []string, err error) { 11 | results = []string{} 12 | domain := strings.ToLower(hostname) 13 | 14 | fqdn := dns.Fqdn(domain) 15 | for _, server := range servers { 16 | results = []string{} 17 | 18 | msg := new(dns.Msg) 19 | msg.SetAxfr(fqdn) 20 | 21 | transfer := new(dns.Transfer) 22 | answerChan, err := transfer.In(msg, net.JoinHostPort(server, "53")) 23 | if err != nil { 24 | continue 25 | } 26 | 27 | for a := range answerChan { 28 | 29 | if a.Error != nil { 30 | continue 31 | } 32 | 33 | for _, rr := range a.RR { 34 | results = append(results, rr.String()) 35 | } 36 | } 37 | 38 | if (len(results) == 0) { 39 | continue 40 | } 41 | return results, nil 42 | } 43 | return results, errors.New("Transfer failed") 44 | } 45 | -------------------------------------------------------------------------------- /lib/dns/fdns.go: -------------------------------------------------------------------------------- 1 | package dns 2 | 3 | import ( 4 | "net" 5 | "github.com/miekg/dns" 6 | "strings" 7 | "math/rand" 8 | "errors" 9 | "time" 10 | ) 11 | 12 | func New(servers []string) *DnsResolver { 13 | for i := range servers { 14 | servers[i] = net.JoinHostPort(servers[i], "53") 15 | } 16 | 17 | return &DnsResolver{servers, len(servers) * 2, rand.New(rand.NewSource(time.Now().UnixNano()))} 18 | } 19 | 20 | type DnsResolver struct { 21 | Servers []string 22 | RetryTimes int 23 | r *rand.Rand 24 | } 25 | 26 | // 27 | // func LookupHost(domain string) ([]net.IP, error) {} 28 | 29 | func (r *DnsResolver) LookupHost(host string) ([]net.IP, error) { 30 | return r.lookupHost(host, r.RetryTimes) 31 | } 32 | 33 | func (r *DnsResolver) lookupHost(host string, triesLeft int) ([]net.IP, error) { 34 | m1 := new(dns.Msg) 35 | m1.Id = dns.Id() 36 | m1.RecursionDesired = true 37 | m1.Question = make([]dns.Question, 1) 38 | m1.Question[0] = dns.Question{dns.Fqdn(host), dns.TypeA, dns.ClassINET} 39 | in, err := dns.Exchange(m1, r.Servers[r.r.Intn(len(r.Servers))]) 40 | 41 | result := []net.IP{} 42 | 43 | if err != nil { 44 | if strings.HasSuffix(err.Error(), "i/o timeout") && triesLeft > 0 { 45 | triesLeft-- 46 | return r.lookupHost(host, triesLeft) 47 | } 48 | return result, err 49 | } 50 | 51 | if in != nil && in.Rcode != dns.RcodeSuccess { 52 | return result, errors.New(dns.RcodeToString[in.Rcode]) 53 | 54 | } 55 | 56 | if len(in.Answer) == 0 { 57 | return result, errors.New("Unknown") 58 | } 59 | 60 | for _, record := range in.Answer { 61 | if t, ok := record.(*dns.A); ok { 62 | result = append(result, t.A) 63 | } 64 | } 65 | return result, err 66 | } 67 | 68 | func (r *DnsResolver) LookupNS(host string) ([]string, error) { 69 | return r.lookupNS(host, r.RetryTimes) 70 | } 71 | 72 | func (r *DnsResolver) lookupNS(host string, triesLeft int) ([]string, error) { 73 | m1 := new(dns.Msg) 74 | m1.Id = dns.Id() 75 | m1.RecursionDesired = true 76 | m1.Question = make([]dns.Question, 1) 77 | m1.Question[0] = dns.Question{dns.Fqdn(host), dns.TypeNS, dns.ClassINET} 78 | in, err := dns.Exchange(m1, r.Servers[r.r.Intn(len(r.Servers))]) 79 | 80 | result := []string{} 81 | if err != nil { 82 | if strings.HasSuffix(err.Error(), "i/o timeout") && triesLeft > 0 { 83 | triesLeft-- 84 | return r.lookupNS(host, triesLeft) 85 | } 86 | return result, err 87 | } 88 | 89 | if in != nil && in.Rcode != dns.RcodeSuccess { 90 | return result, errors.New(dns.RcodeToString[in.Rcode]) 91 | } 92 | 93 | if len(in.Answer) == 0 { 94 | return result, errors.New("Unknown") 95 | } 96 | 97 | for _, record := range in.Answer { 98 | if t, ok := record.(*dns.NS); ok { 99 | result = append(result, t.Ns) 100 | } 101 | } 102 | return result, err 103 | } 104 | -------------------------------------------------------------------------------- /lib/helpers.go: -------------------------------------------------------------------------------- 1 | package lib 2 | 3 | import ( 4 | "net" 5 | "os" 6 | "fmt" 7 | "bufio" 8 | "strings" 9 | ) 10 | 11 | func (this *Scanner) IsBlackIPs(ips []net.IP) bool { 12 | i := len(ips); 13 | for _, v := range ips { 14 | if (this.IsBlackList(v.String())) { 15 | i-- 16 | } 17 | } 18 | 19 | if i == 0 { 20 | return true 21 | } 22 | 23 | return false 24 | } 25 | 26 | func (this *Scanner) IsBlackList(s string) bool { 27 | if !IsPublicIP(net.ParseIP(s)) { 28 | return true 29 | } 30 | 31 | //blackIps := []string{"1.1.1.1", "127.0.0.1", "0.0.0.0", "0.0.0.1"} 32 | 33 | if _, ok := this.BlackList[s]; ok { 34 | return true 35 | } 36 | return false 37 | } 38 | 39 | func (this *Scanner) LoadBlackListFile() { 40 | f, err := os.Open("dict/ip_black_list.txt") 41 | if err != nil { 42 | fmt.Println(err) 43 | } 44 | 45 | scanner := bufio.NewScanner(f) 46 | 47 | for scanner.Scan() { 48 | this.BlackList[strings.TrimSpace(scanner.Text())] = "" 49 | } 50 | defer f.Close() 51 | } 52 | 53 | func IsPublicIP(IP net.IP) bool { 54 | if IP.IsLoopback() || IP.IsLinkLocalMulticast() || IP.IsLinkLocalUnicast() { 55 | return false 56 | } 57 | if ip4 := IP.To4(); ip4 != nil { 58 | switch true { 59 | case ip4[0] == 10: 60 | return false 61 | case ip4[0] == 172 && ip4[1] >= 16 && ip4[1] <= 31: 62 | return false 63 | case ip4[0] == 192 && ip4[1] == 168: 64 | return false 65 | default: 66 | return true 67 | } 68 | } 69 | return false 70 | } 71 | -------------------------------------------------------------------------------- /lib/http.go: -------------------------------------------------------------------------------- 1 | package lib 2 | 3 | import ( 4 | "fmt" 5 | "net/http" 6 | ) 7 | 8 | func Head(url string) (code int,err error){ 9 | client := &http.Client{} 10 | 11 | reqest, err := http.NewRequest("HEAD", url, nil) 12 | 13 | if err != nil { 14 | return code,fmt.Errorf("%v", err) 15 | } 16 | reqest.Header.Add("User-Agent", "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Safari/537.36") 17 | response, err := client.Do(reqest) 18 | 19 | if err != nil { 20 | return code,fmt.Errorf("%v", err) 21 | } 22 | 23 | defer response.Body.Close() 24 | return response.StatusCode,nil 25 | } -------------------------------------------------------------------------------- /lib/options.go: -------------------------------------------------------------------------------- 1 | package lib 2 | 3 | import ( 4 | "os" 5 | "fmt" 6 | "reflect" 7 | "bufio" 8 | "github.com/hashicorp/go-multierror" 9 | "flag" 10 | "strings" 11 | ) 12 | 13 | type Options struct { 14 | Threads int 15 | Domain string 16 | Dict string 17 | Depth int 18 | Help bool 19 | Log string 20 | DNSServer string 21 | WildcardDomain bool 22 | AXFC bool 23 | ScanListFN string 24 | ScanDomainList []string 25 | } 26 | 27 | func New() *Options { 28 | return &Options{ 29 | } 30 | } 31 | 32 | func (opts *Options) existsDomain() bool { 33 | opts.ScanDomainList = []string{} 34 | for { 35 | if opts.ScanListFN != "" { 36 | f, err := os.Open(opts.ScanListFN) 37 | if err != nil { 38 | break; 39 | } 40 | 41 | scanner := bufio.NewScanner(f) 42 | for scanner.Scan() { 43 | if s:=strings.TrimSpace(scanner.Text());s!="" { 44 | opts.ScanDomainList = append(opts.ScanDomainList, s) 45 | } 46 | } 47 | f.Close() 48 | } 49 | 50 | break; 51 | } 52 | 53 | if (len(opts.ScanDomainList) > 0) { 54 | return true 55 | } 56 | if opts.Domain != "" { 57 | opts.ScanDomainList = append(opts.ScanDomainList, opts.Domain) 58 | return true 59 | } 60 | 61 | return false 62 | } 63 | 64 | func (opts *Options) Validate() *multierror.Error { 65 | if (opts.Help) { 66 | flag.Usage() 67 | os.Exit(0) 68 | } 69 | 70 | var errorList *multierror.Error 71 | if (! opts.existsDomain()) { 72 | errorList = multierror.Append(errorList, fmt.Errorf("Domain (-d): Must be specified")) 73 | } 74 | 75 | if opts.Threads <= 0 { 76 | errorList = multierror.Append(errorList, fmt.Errorf("-t best > 0")) 77 | } 78 | if opts.Depth <= 0 { 79 | errorList = multierror.Append(errorList, fmt.Errorf("Depth scan (-depth): range [>=1]")) 80 | } 81 | 82 | _, err := os.Stat(opts.Dict) 83 | if err != nil { 84 | errorList = multierror.Append(errorList, fmt.Errorf("Dictionary file (-f): Must be specified")) 85 | } 86 | if opts.Log == "" { 87 | logDir := "log" 88 | _, err := os.Stat(logDir) 89 | if err != nil { 90 | os.Mkdir(logDir, os.ModePerm) 91 | } 92 | opts.Log = fmt.Sprintf("%s/%s.txt", logDir, opts.Domain) 93 | } 94 | 95 | if opts.DNSServer == "" { 96 | //============================================= 97 | // 114 DNS 114.114.114.114/114.114.115.115 98 | // 阿里 AliDNS 223.5.5.5/223.6.6.6 99 | // 百度 BaiduDNS 180.76.76.76 100 | // DNSPod DNS+ 119.29.29.29/182.254.116.116 101 | // CNNIC SDNS 1.2.4.8/210.2.4.8 102 | // oneDNS 117.50.11.11/117.50.22.22 103 | // DNS 派 104 | // 电信/移动/铁通 101.226.4.6/218.30.118.6 105 | // DNS 派 联通 123.125.81.6/140.207.198.6 106 | // Google DNS 8.8.8.8/8.8.4.4 107 | // IBM Quad9 9.9.9.9 108 | // OpenDNS 208.67.222.222/208.67.220.220 109 | // V2EX DNS 199.91.73.222/178.79.131.110 110 | //============================================= 111 | opts.DNSServer = "8.8.8.8/8.8.4.4" 112 | } 113 | 114 | return errorList 115 | } 116 | 117 | func (opts *Options) PrintOptions() { 118 | value := reflect.ValueOf(*opts) 119 | types := reflect.TypeOf(*opts) 120 | 121 | fmt.Fprintln(os.Stderr, `============================================= 122 | subdomain-scanner v0.4#dev 123 | =============================================`) 124 | 125 | for i := 0; i < types.NumField(); i++ { 126 | if types.Field(i).Name[0] >= 65 && types.Field(i).Name[0] <= 90 { 127 | if value.Field(i).Interface() != "" { 128 | fmt.Fprintf(os.Stderr, "[+] %-15s: %v\n", types.Field(i).Name, value.Field(i).Interface()) 129 | } 130 | } 131 | } 132 | fmt.Fprintln(os.Stderr, "=============================================") 133 | } 134 | -------------------------------------------------------------------------------- /log/qq.com.txt: -------------------------------------------------------------------------------- 1 | users.qq.com [123.206.33.170] 2 | portal.qq.com [0.0.0.1] 3 | s.qq.com [58.250.136.68] 4 | office.qq.com [203.205.151.50] 5 | cn.qq.com [203.205.219.231] 6 | rr.qq.com [0.0.0.1] 7 | cs.qq.com [0.0.0.1] 8 | blog.qq.com [103.7.30.123] 9 | astro.qq.com [203.205.151.47] 10 | fr.qq.com [203.205.219.231] 11 | ff.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 12 | share.qq.com [0.0.0.1] 13 | seo.qq.com [0.0.0.1] 14 | bip.qq.com [119.147.128.119] 15 | en.qq.com [203.205.219.231] 16 | de.qq.com [183.3.226.66] 17 | new.qq.com [203.205.151.47] 18 | class.qq.com [14.17.57.230] 19 | hh.qq.com [0.0.0.1] 20 | user.qq.com [0.0.0.1] 21 | e.qq.com [112.90.74.174] 22 | i.qq.com [203.205.151.50] 23 | my.qq.com [203.205.142.160] 24 | passport.qq.com [183.60.84.154] 25 | ns1.qq.com [123.151.178.115 157.255.246.101] 26 | local.qq.com [134.175.75.251] 27 | bbs.qq.com [103.7.30.123] 28 | active.qq.com [163.177.68.219] 29 | ac.qq.com [203.205.151.100] 30 | ue.qq.com [58.251.80.234] 31 | sms.qq.com [183.3.225.67] 32 | news.qq.com [203.205.151.47] 33 | a.qq.com [203.205.138.79 203.205.158.59 203.205.158.37 203.205.158.38 203.205.138.57] 34 | sites.qq.com [0.0.0.1] 35 | mail.qq.com [203.205.128.111 103.7.30.100] 36 | web.qq.com [203.205.219.231] 37 | games.qq.com [203.205.151.47] 38 | h5.qq.com [101.227.160.34] 39 | kk.qq.com [163.177.72.188] 40 | is.qq.com [58.247.214.35] 41 | search.qq.com [0.0.0.1] 42 | app.qq.com [203.205.147.218] 43 | am.qq.com [0.0.0.1] 44 | static.qq.com [0.0.0.1] 45 | ab.qq.com [203.205.128.168 203.205.128.169] 46 | task.qq.com [203.205.151.26] 47 | music.qq.com [203.205.158.56 203.205.158.35 203.205.158.53 203.205.158.54 203.205.158.34 203.205.138.71 203.205.158.55] 48 | v.qq.com [203.205.158.38 203.205.138.57 203.205.138.79 203.205.158.59 203.205.158.37] 49 | store.qq.com [203.205.138.79 203.205.158.59 203.205.158.37 203.205.158.38 203.205.138.57] 50 | server.qq.com [0.0.0.1] 51 | info.qq.com [0.0.0.1] 52 | pay.qq.com [203.205.151.58] 53 | media.qq.com [203.205.151.47] 54 | tools.qq.com [0.0.0.1] 55 | help.qq.com [14.17.41.220] 56 | edu.qq.com [203.205.151.47] 57 | p.qq.com [203.205.151.50] 58 | fa.qq.com [0.0.0.1] 59 | tv.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 60 | d3.qq.com [0.0.0.1] 61 | video.qq.com [2.17.49.183] 62 | member.qq.com [203.205.142.160] 63 | shop.qq.com [203.205.158.59 203.205.158.37 203.205.158.38 203.205.138.57 203.205.138.79] 64 | corp.qq.com [0.0.0.1] 65 | science.qq.com [103.7.30.123] 66 | club.qq.com [203.205.142.160] 67 | doc.qq.com [203.205.128.167] 68 | sk.qq.com [123.151.148.69] 69 | life.qq.com [58.250.136.110] 70 | u.qq.com [103.7.30.123] 71 | feeds.qq.com [203.205.179.231 203.205.179.230] 72 | design.qq.com [0.0.0.1] 73 | love.qq.com [58.247.214.157] 74 | biz.qq.com [112.90.77.139] 75 | data.qq.com [183.61.49.204] 76 | top.qq.com [0.0.0.1] 77 | vip.qq.com [203.205.142.182] 78 | ta.qq.com [183.232.95.229] 79 | id.qq.com [203.205.151.50] 80 | cdn.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 81 | go.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 82 | om.qq.com [2.17.30.20] 83 | ling.qq.com [0.0.0.1] 84 | personal.qq.com [0.0.0.1] 85 | auto.qq.com [203.205.151.47] 86 | net.qq.com [0.0.0.1] 87 | car.qq.com [0.0.0.1] 88 | software.qq.com [0.0.0.1] 89 | moto.qq.com [61.151.217.46 101.226.86.182] 90 | w8.qq.com [101.226.86.182 61.151.217.46] 91 | union.qq.com [203.205.142.168] 92 | faq.qq.com [0.0.0.1] 93 | ss.qq.com [0.0.0.1] 94 | dd.qq.com [0.0.0.1] 95 | es.qq.com [203.205.158.59 203.205.158.37 203.205.158.38 203.205.138.57 203.205.138.79] 96 | www.qq.com [23.219.132.75] 97 | pp.qq.com [103.7.30.123] 98 | m.qq.com [203.205.179.231 203.205.179.230] 99 | k.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 100 | ar.qq.com [203.205.151.14] 101 | support.qq.com [203.205.151.247] 102 | demo.qq.com [0.0.0.1] 103 | ae.qq.com [0.0.0.1] 104 | d2.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 105 | st.qq.com [0.0.0.1] 106 | content.qq.com [0.0.0.1] 107 | f5.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 108 | hd.qq.com [183.232.88.239] 109 | cp.qq.com [203.205.151.47] 110 | h6.qq.com [0.0.0.1] 111 | uni.qq.com [203.205.142.170] 112 | open.qq.com [103.7.30.72] 113 | monitor.qq.com [0.0.0.1] 114 | gm.qq.com [0.0.0.1] 115 | lvyou.qq.com [0.0.0.1] 116 | files.qq.com [101.226.86.182 61.151.217.46] 117 | registry.qq.com [0.0.0.1] 118 | cge.qq.com [61.151.224.117] 119 | b.qq.com [112.90.77.139] 120 | it.qq.com [203.205.151.47] 121 | wap.qq.com [61.151.217.46 101.226.86.182] 122 | platform.qq.com [100.116.48.39] 123 | cms.qq.com [2.17.30.20] 124 | tuan.qq.com [203.205.147.218] 125 | n.qq.com [0.0.0.1] 126 | ban.qq.com [0.0.0.1] 127 | home.qq.com [203.205.147.218] 128 | sc.qq.com [203.205.179.231 203.205.179.230] 129 | d1.qq.com [0.0.0.1] 130 | domain.qq.com [0.0.0.1] 131 | nn.qq.com [0.0.0.1] 132 | guid.qq.com [14.17.32.232] 133 | up.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 134 | d6.qq.com [0.0.0.1] 135 | hr.qq.com [183.3.226.68] 136 | gw.qq.com [0.0.0.1] 137 | health.qq.com [203.205.151.47] 138 | hello.qq.com [58.251.82.189] 139 | mp2.qq.com [0.0.0.1] 140 | start.qq.com [203.205.128.167] 141 | bl.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 142 | h2.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 143 | 007.qq.com [183.3.233.192] 144 | pb.qq.com [59.37.116.28] 145 | vfs.qq.com [183.3.234.145] 146 | sd.qq.com [103.7.30.123] 147 | city.qq.com [203.205.151.47] 148 | tr.qq.com [1.1.1.1] 149 | intl.qq.com [203.205.219.231] 150 | api.qq.com [203.205.219.231] 151 | brain.qq.com [0.0.0.1] 152 | res.qq.com [203.205.128.167] 153 | king.qq.com [203.205.142.182] 154 | ok.qq.com [101.227.130.100] 155 | img.qq.com [0.0.0.1] 156 | pl.qq.com [0.0.0.1] 157 | ic.qq.com [203.205.179.231 203.205.179.230] 158 | ui.qq.com [203.205.151.247] 159 | d.qq.com [115.159.101.226] 160 | ford.qq.com [0.0.0.1] 161 | ifn.qq.com [0.0.0.1] 162 | translate.qq.com [203.205.151.220] 163 | d4.qq.com [0.0.0.1] 164 | cat.qq.com [203.205.128.169 203.205.128.168] 165 | wz.qq.com [0.0.0.1] 166 | wm.qq.com [0.0.0.1] 167 | vp.qq.com [203.205.151.26] 168 | rock.qq.com [103.7.30.123] 169 | tourism.qq.com [119.29.47.241] 170 | ads.qq.com [14.17.32.217] 171 | jobs.qq.com [203.205.151.14] 172 | mim.qq.com [0.0.0.1] 173 | all.qq.com [103.7.30.123] 174 | business.qq.com [203.205.151.47] 175 | qing.qq.com [0.0.0.1] 176 | ideas.qq.com [183.232.88.196] 177 | ccc.qq.com [163.177.68.201] 178 | ipod.qq.com [0.0.0.1] 179 | alpha.qq.com [0.0.0.1] 180 | angrybirds.qq.com [0.0.0.1] 181 | tu.qq.com [203.205.151.26] 182 | group.qq.com [120.198.199.51] 183 | linux.qq.com [61.151.191.145] 184 | telecom.qq.com [101.226.86.182 61.151.217.46] 185 | ap.qq.com [14.17.41.220] 186 | good.qq.com [203.205.151.41] 187 | bt.qq.com [203.205.151.14] 188 | 1.qq.com [101.89.15.139] 189 | doctor.qq.com [203.205.179.231 203.205.179.230] 190 | qs.qq.com [0.0.0.1] 191 | free.qq.com [0.0.0.1] 192 | dns.qq.com [119.29.29.229] 193 | book.qq.com [101.226.103.89] 194 | llk.qq.com [103.7.30.40] 195 | chat.qq.com [0.0.0.1] 196 | rdm.qq.com [203.205.179.230 203.205.179.231] 197 | fly.qq.com [203.205.151.41] 198 | now.qq.com [203.205.151.21] 199 | safe.qq.com [59.37.108.163] 200 | area.qq.com [0.0.0.1] 201 | cnc.qq.com [0.0.0.1] 202 | sa.qq.com [0.0.0.1] 203 | best.qq.com [183.232.94.102] 204 | fj.qq.com [203.205.151.47] 205 | star.qq.com [103.7.30.123] 206 | root.qq.com [203.205.128.167] 207 | cafe.qq.com [58.251.81.31] 208 | imp.qq.com [14.17.42.15] 209 | config.qq.com [0.0.0.1] 210 | learn.qq.com [0.0.0.1] 211 | itv.qq.com [0.0.0.1] 212 | mga.qq.com [203.205.219.232] 213 | dcf.qq.com [203.205.179.231 203.205.179.230] 214 | bd.qq.com [0.0.0.1] 215 | sf.qq.com [61.151.217.46 101.226.86.182] 216 | ca.qq.com [0.0.0.1] 217 | sps.qq.com [0.0.0.1] 218 | index.qq.com [0.0.0.1] 219 | dl.qq.com [119.39.204.41] 220 | cloudphone.qq.com [0.0.0.1] 221 | wifi.qq.com [203.205.179.231 203.205.179.230] 222 | dj.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 223 | ee.qq.com [0.0.0.1] 224 | c.qq.com [203.205.179.231 203.205.179.230] 225 | live.qq.com [119.28.164.78 203.205.138.118 203.205.138.12 119.28.164.206 203.205.138.76 119.28.164.205 203.205.138.106 119.28.164.79 119.28.165.14 119.28.164.204 203.205.138.233 203.205.138.78] 226 | kb.qq.com [103.7.30.123] 227 | me.qq.com [203.205.219.231] 228 | le.qq.com [112.90.77.203] 229 | tap.qq.com [0.0.0.1] 230 | 404.qq.com [0.0.0.1] 231 | hc.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 232 | az.qq.com [0.0.0.1] 233 | mt.qq.com [0.0.0.1] 234 | delta.qq.com [0.0.0.1] 235 | monster.qq.com [0.0.0.1] 236 | rpg.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 237 | login.qq.com [0.0.0.1] 238 | so.qq.com [0.0.0.1] 239 | 6.qq.com [0.0.0.1] 240 | yuedu.qq.com [0.0.0.1] 241 | victor.qq.com [203.205.142.147] 242 | 2012.qq.com [203.205.151.47] 243 | t.qq.com [103.7.30.52] 244 | emperor.qq.com [192.1.0.0] 245 | fun.qq.com [183.232.88.156] 246 | og.qq.com [203.205.179.231 203.205.179.230] 247 | sports.qq.com [203.205.151.47] 248 | download.qq.com [184.51.15.172 184.51.15.142] 249 | panel.qq.com [203.205.151.47] 250 | 3d.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 251 | 108.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 252 | 52.qq.com [58.250.136.104] 253 | adv.qq.com [0.0.0.1] 254 | 3g.qq.com [101.226.86.182 61.151.217.46] 255 | hotel.qq.com [203.205.147.218] 256 | account.qq.com [14.17.41.220] 257 | hera.qq.com [61.129.7.121] 258 | sport.qq.com [103.7.30.123] 259 | bs.qq.com [183.232.94.102] 260 | analytics.qq.com [203.205.151.47] 261 | cc.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 262 | mobile.qq.com [101.226.86.182 61.151.217.46] 263 | developer.qq.com [183.232.94.17] 264 | venus.qq.com [0.0.0.1] 265 | signup.qq.com [203.205.151.191] 266 | idata.qq.com [0.0.0.1] 267 | art.qq.com [163.177.71.179] 268 | lineage2.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 269 | ktv.qq.com [0.0.0.1] 270 | service.qq.com [157.255.173.152] 271 | poker.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 272 | helper.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 273 | master.qq.com [0.0.0.1] 274 | apple.qq.com [163.177.68.205] 275 | client.qq.com [0.0.0.1] 276 | img1.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 277 | photo.qq.com [203.205.147.218] 278 | rpc.qq.com [0.0.0.1] 279 | happy.qq.com [183.61.46.160] 280 | wsop.qq.com [0.0.0.1] 281 | shu.qq.com [0.0.0.1] 282 | ino.qq.com [203.205.218.80] 283 | hi.qq.com [103.7.28.160] 284 | in.qq.com [0.0.0.1] 285 | gu.qq.com [203.205.151.45] 286 | kernel.qq.com [61.151.191.145] 287 | ja.qq.com [0.0.0.1] 288 | ka.qq.com [0.0.0.1] 289 | jp.qq.com [203.205.219.231] 290 | qqhaoma.qq.com [203.205.151.26] 291 | cash.qq.com [203.205.151.88] 292 | pro.qq.com [0.0.0.1] 293 | r.qq.com [101.227.130.70] 294 | teacher.qq.com [0.0.0.1] 295 | nl.qq.com [203.205.147.218] 296 | pc.qq.com [203.205.128.167] 297 | community.qq.com [0.0.0.1] 298 | qy.qq.com [0.0.0.1] 299 | pt.qq.com [0.0.0.1] 300 | ro.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 301 | pr.qq.com [0.0.0.1] 302 | tt.qq.com [203.205.128.167] 303 | ru.qq.com [203.205.151.47] 304 | uu.qq.com [0.0.0.1] 305 | vi.qq.com [0.0.0.1] 306 | site.qq.com [61.151.217.46 101.226.86.182] 307 | 2011.qq.com [203.205.151.47] 308 | card.qq.com [58.250.136.104] 309 | labs.qq.com [0.0.0.1] 310 | money.qq.com [203.205.151.47] 311 | journal.qq.com [101.226.103.89] 312 | cool.qq.com [203.205.147.218] 313 | w.qq.com [203.205.151.26] 314 | penguin.qq.com [58.251.81.223] 315 | focus.qq.com [0.0.0.1] 316 | 5.qq.com [0.0.0.1] 317 | just.qq.com [175.155.120.111] 318 | ftx.qq.com [0.0.0.1] 319 | mtv.qq.com [0.0.0.1] 320 | abc.qq.com [203.205.128.11] 321 | 2008.qq.com [103.7.30.123] 322 | excel.qq.com [0.0.0.1] 323 | yuan.qq.com [0.0.0.1] 324 | big.qq.com [0.0.0.1] 325 | popo.qq.com [0.0.0.1] 326 | emarketing.qq.com [0.0.0.1] 327 | pic.qq.com [203.205.128.167] 328 | hsbc.qq.com [0.0.0.1] 329 | samsung.qq.com [0.0.0.1] 330 | tcc.qq.com [125.39.213.73] 331 | yoyo.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 332 | ing.qq.com [0.0.0.1] 333 | memo.qq.com [163.177.90.103] 334 | nokia.qq.com [0.0.0.1] 335 | soho.qq.com [203.205.179.231 203.205.179.230] 336 | tuya.qq.com [0.0.0.1] 337 | visa.qq.com [0.0.0.1] 338 | avon.qq.com [0.0.0.1] 339 | world.qq.com [203.205.151.47] 340 | tech.qq.com [203.205.151.47] 341 | ns4.qq.com [125.39.247.247 184.105.206.124 203.205.220.27 58.144.154.100 125.39.46.125] 342 | ef.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 343 | ts1.qq.com [59.36.120.122] 344 | inbound.qq.com [0.0.0.1] 345 | sky.qq.com [203.205.151.41] 346 | test.qq.com [58.250.137.42] 347 | conf.qq.com [0.0.0.1] 348 | west.qq.com [0.0.0.1] 349 | social.qq.com [61.129.7.70] 350 | testing.qq.com [0.0.0.1] 351 | 7.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 352 | pictures.qq.com [58.251.80.193] 353 | http.qq.com [103.7.30.123] 354 | sw.qq.com [0.0.0.1] 355 | easy.qq.com [183.57.48.61] 356 | nissan.qq.com [0.0.0.1] 357 | 0.qq.com [0.0.0.1] 358 | gp.qq.com [0.0.0.1] 359 | train.qq.com [0.0.0.1] 360 | nc.qq.com [117.135.175.159] 361 | source.qq.com [203.205.128.216] 362 | sm.qq.com [0.0.0.1] 363 | www1.qq.com [0.0.0.1] 364 | dragon.qq.com [0.0.0.1] 365 | lincoln.qq.com [0.0.0.1] 366 | supplier.qq.com [58.250.137.46] 367 | mgc.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 368 | hu.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 369 | front.qq.com [0.0.0.1] 370 | hm.qq.com [203.205.151.26] 371 | tx.qq.com [0.0.0.1] 372 | hn.qq.com [203.205.151.47] 373 | athena.qq.com [139.199.233.134] 374 | an.qq.com [0.0.0.1] 375 | sun.qq.com [0.0.0.1] 376 | aq.qq.com [14.17.41.220] 377 | proxy.qq.com [103.7.30.123] 378 | research.qq.com [0.0.0.1] 379 | file.qq.com [163.177.73.175 163.177.73.176 163.177.73.178 163.177.73.162] 380 | gd.qq.com [203.205.151.47] 381 | email.qq.com [203.205.128.111 103.7.30.100] 382 | link.qq.com [0.0.0.1] 383 | bz.qq.com [111.161.64.48 111.161.64.40] 384 | cv.qq.com [0.0.0.1] 385 | cm.qq.com [0.0.0.1] 386 | developers.qq.com [0.0.0.1] 387 | tour.qq.com [203.205.151.47] 388 | cert.qq.com [0.0.0.1] 389 | at.qq.com [203.205.179.231 203.205.179.230] 390 | ec.qq.com [125.39.83.100] 391 | build.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 392 | as.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 393 | by.qq.com [203.205.158.38 203.205.138.57 203.205.138.79 203.205.158.59 203.205.158.37] 394 | ak.qq.com [0.0.0.1] 395 | cd.qq.com [203.205.151.47] 396 | ie.qq.com [203.205.179.231 203.205.179.230] 397 | dc.qq.com [203.205.128.160] 398 | af.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 399 | name.qq.com [0.0.0.1] 400 | co.qq.com [0.0.0.1] 401 | cr.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 402 | security.qq.com [14.17.41.220] 403 | antivirus.qq.com [0.0.0.1] 404 | bg.qq.com [203.205.179.231 203.205.179.230] 405 | et.qq.com [0.0.0.1] 406 | sj.qq.com [203.205.128.167] 407 | fw.qq.com [203.205.151.47] 408 | ups.qq.com [0.0.0.1] 409 | ch.qq.com [0.0.0.1] 410 | gg.qq.com [0.0.0.1] 411 | gy.qq.com [203.205.151.47] 412 | cz.qq.com [0.0.0.1] 413 | iq.qq.com [0.0.0.1] 414 | ops.qq.com [0.0.0.1] 415 | smc.qq.com [203.205.128.158] 416 | gs.qq.com [0.0.0.1] 417 | hk.qq.com [203.205.140.114 203.205.140.29] 418 | gl.qq.com [0.0.0.1] 419 | auth.qq.com [203.205.128.177] 420 | mx1.qq.com [103.7.30.40] 421 | l.qq.com [203.205.151.51] 422 | backup.qq.com [101.226.86.182 61.151.217.46] 423 | io.qq.com [0.0.0.1] 424 | bof.qq.com [59.37.116.28] 425 | bj.qq.com [203.205.151.47] 426 | fm.qq.com [203.205.151.222] 427 | im.qq.com [203.205.151.21] 428 | storage.qq.com [0.0.0.1] 429 | pub.qq.com [0.0.0.1] 430 | secret.qq.com [0.0.0.1] 431 | gf.qq.com [0.0.0.1] 432 | 17.qq.com [58.250.136.104] 433 | lt.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 434 | fo.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 435 | webdev.qq.com [61.151.217.46 101.226.86.182] 436 | lb.qq.com [0.0.0.1] 437 | 9.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 438 | hp.qq.com [203.205.158.37 203.205.158.38 203.205.138.57 203.205.138.79 203.205.158.59] 439 | ms.qq.com [203.205.179.230 203.205.179.231] 440 | gt.qq.com [203.205.128.168 203.205.128.169] 441 | mq.qq.com [183.61.51.29] 442 | wiki.qq.com [0.0.0.1] 443 | sec.qq.com [113.108.21.117] 444 | f.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 445 | ls.qq.com [0.0.0.1] 446 | g.qq.com [101.226.233.187] 447 | pics.qq.com [103.7.30.123] 448 | desktop.qq.com [203.205.128.167] 449 | bob.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 450 | mx.qq.com [0.0.0.1] 451 | lk.qq.com [203.205.128.167] 452 | lr.qq.com [203.205.158.64 203.205.158.58 203.205.138.20 203.205.138.21 203.205.158.65] 453 | ajax.qq.com [101.226.86.182 61.151.217.46] 454 | ke.qq.com [203.205.147.235] 455 | mp.qq.com [203.205.151.50] 456 | whois.qq.com [0.0.0.1] 457 | md.qq.com [0.0.0.1] 458 | kh.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 459 | np.qq.com [0.0.0.1] 460 | nd.qq.com [103.7.30.86] 461 | ns.qq.com [0.0.0.1] 462 | bm.qq.com [123.206.3.14] 463 | dz.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 464 | ng.qq.com [0.0.0.1] 465 | cg.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 466 | nf.qq.com [0.0.0.1] 467 | ps.qq.com [0.0.0.1] 468 | py.qq.com [103.7.30.111] 469 | maps.qq.com [203.205.128.186] 470 | events.qq.com [0.0.0.1] 471 | nt.qq.com [203.205.151.41] 472 | apps.qq.com [203.205.219.228] 473 | rc.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 474 | fs.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 475 | mv.qq.com [203.205.158.35 203.205.158.53 203.205.158.54 203.205.158.34 203.205.138.71 203.205.158.55 203.205.158.56] 476 | mg.qq.com [203.205.138.79 203.205.158.59 203.205.158.37 203.205.158.38 203.205.138.57] 477 | mh.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 478 | mm.qq.com [58.251.148.247 58.251.148.139] 479 | flash.qq.com [103.7.30.123] 480 | xmail.qq.com [0.0.0.1] 481 | kp.qq.com [203.205.179.230 203.205.179.231] 482 | voice.qq.com [203.205.138.79 203.205.158.59 203.205.158.37 203.205.158.38 203.205.138.57] 483 | tool.qq.com [0.0.0.1] 484 | sales.qq.com [203.205.138.57 203.205.138.79 203.205.158.59 203.205.158.37 203.205.158.38] 485 | qa.qq.com [0.0.0.1] 486 | rs.qq.com [0.0.0.1] 487 | mk.qq.com [0.0.0.1] 488 | sr.qq.com [0.0.0.1] 489 | td.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 490 | app1.qq.com [0.0.0.1] 491 | vm.qq.com [203.205.147.218] 492 | sz.qq.com [0.0.0.1] 493 | monitoring.qq.com [0.0.0.1] 494 | sl.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 495 | tw.qq.com [103.7.28.160] 496 | tg.qq.com [58.251.139.167] 497 | ut.qq.com [0.0.0.1] 498 | feedback.qq.com [203.205.179.231 203.205.179.230] 499 | tf.qq.com [61.151.217.46 101.226.86.182] 500 | sy.qq.com [112.90.74.173] 501 | gold.qq.com [0.0.0.1] 502 | ph.qq.com [58.251.148.139 58.251.148.247] 503 | qmail.qq.com [203.205.128.111 103.7.30.100] 504 | tp.qq.com [203.205.151.46] 505 | japan.qq.com [0.0.0.1] 506 | tm.qq.com [0.0.0.1] 507 | mo.qq.com [0.0.0.1] 508 | wan.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 509 | enterprise.qq.com [112.90.77.139] 510 | ly.qq.com [203.205.151.47] 511 | shopping.qq.com [203.205.138.57 203.205.138.79 203.205.158.59 203.205.158.37 203.205.158.38] 512 | zebra.qq.com [103.7.30.123] 513 | legal.qq.com [0.0.0.1] 514 | xp.qq.com [0.0.0.1] 515 | reg.qq.com [203.205.151.191] 516 | ba.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 517 | ua.qq.com [0.0.0.1] 518 | young.qq.com [0.0.0.1] 519 | work.qq.com [203.205.151.14] 520 | nr.qq.com [203.205.158.59 203.205.158.37 203.205.158.38 203.205.138.57 203.205.138.79] 521 | ny.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 522 | post.qq.com [0.0.0.1] 523 | y.qq.com [203.205.138.71 203.205.158.55 203.205.158.56 203.205.158.35 203.205.158.53 203.205.158.54 203.205.158.34] 524 | mp3.qq.com [203.205.158.34 203.205.138.71 203.205.158.55 203.205.158.56 203.205.158.35 203.205.158.53 203.205.158.54] 525 | log.qq.com [101.227.160.36] 526 | kg.qq.com [23.219.132.103] 527 | page.qq.com [117.135.175.146] 528 | wallet.qq.com [203.205.151.58] 529 | wf.qq.com [0.0.0.1] 530 | studio.qq.com [0.0.0.1] 531 | ws.qq.com [220.194.95.185] 532 | fk.qq.com [183.3.235.71 14.215.140.54] 533 | pg.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 534 | ml.qq.com [0.0.0.1] 535 | designer.qq.com [203.205.151.247] 536 | sb.qq.com [183.232.94.102] 537 | ye.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 538 | yt.qq.com [0.0.0.1] 539 | buy.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 540 | rss.qq.com [103.7.30.123] 541 | 12.qq.com [103.7.30.123] 542 | nm.qq.com [103.7.30.123] 543 | bug.qq.com [58.251.148.247 58.251.148.139] 544 | 8.qq.com [0.0.0.1] 545 | r2.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 546 | public.qq.com [0.0.0.1] 547 | se.qq.com [163.177.73.107] 548 | win.qq.com [203.205.142.199] 549 | sh.qq.com [203.205.151.47] 550 | 15.qq.com [103.7.30.123] 551 | tk.qq.com [0.0.0.1] 552 | av.qq.com [0.0.0.1] 553 | ns2.qq.com [123.151.66.78 203.205.176.236 121.51.160.46] 554 | 18.qq.com [0.0.0.1] 555 | mu.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 556 | map.qq.com [203.205.128.186] 557 | back.qq.com [61.151.217.46 101.226.86.182] 558 | ag.qq.com [203.205.179.231 203.205.179.230] 559 | nj.qq.com [103.7.30.123] 560 | sg.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 561 | re.qq.com [203.205.151.47] 562 | ad.qq.com [0.0.0.1] 563 | golf.qq.com [203.205.151.47] 564 | no.qq.com [203.205.151.26] 565 | hub.qq.com [0.0.0.1] 566 | docs.qq.com [203.205.151.50] 567 | rose.qq.com [183.61.38.186] 568 | calendar.qq.com [203.205.128.167] 569 | ns3.qq.com [183.192.201.116 112.60.1.69 182.140.177.149] 570 | pk.qq.com [0.0.0.1] 571 | 03.qq.com [0.0.0.1] 572 | ai.qq.com [203.205.179.230 203.205.179.231] 573 | mn.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 574 | crm.qq.com [112.90.77.139] 575 | apollo.qq.com [0.0.0.1] 576 | pop.qq.com [58.251.139.219 163.177.72.198] 577 | yu.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 578 | 3.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 579 | read.qq.com [101.226.103.89] 580 | wy.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 581 | fi.qq.com [101.226.86.182 61.151.217.46] 582 | aa.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 583 | mc.qq.com [0.0.0.1] 584 | java.qq.com [61.151.217.46 101.226.86.182] 585 | register.qq.com [203.205.151.191] 586 | aba.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 587 | exchange.qq.com [183.232.98.163] 588 | nz.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 589 | talk.qq.com [58.251.148.139 58.251.148.247] 590 | mac.qq.com [203.205.128.167] 591 | disk.qq.com [140.207.127.60] 592 | tj.qq.com [203.205.151.47] 593 | mall.qq.com [203.205.158.59 203.205.158.37 203.205.158.38 203.205.138.57 203.205.138.79] 594 | wa.qq.com [203.205.158.52 203.205.138.19 203.205.158.66] 595 | act.qq.com [203.205.147.195] 596 | adb.qq.com [203.205.142.183] 597 | acts.qq.com [203.205.151.47] 598 | ace.qq.com [0.0.0.1] 599 | zw.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 600 | adi.qq.com [0.0.0.1] 601 | adc.qq.com [0.0.0.1] 602 | adn.qq.com [0.0.0.1] 603 | acc.qq.com [203.205.151.14] 604 | b2b.qq.com [112.90.77.139] 605 | accel.qq.com [101.226.86.182 61.151.217.46] 606 | action.qq.com [0.0.0.1] 607 | ah.qq.com [103.7.30.123] 608 | adnet.qq.com [203.205.142.168] 609 | ailab.qq.com [0.0.0.1] 610 | adidas.qq.com [0.0.0.1] 611 | agar.qq.com [0.0.0.1] 612 | age.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 613 | algo.qq.com [193.112.232.94] 614 | alert.qq.com [0.0.0.1] 615 | ali.qq.com [139.199.125.51] 616 | moon.qq.com [0.0.0.1] 617 | john.qq.com [203.205.147.153] 618 | amber.qq.com [0.0.0.1] 619 | ams.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 620 | android.qq.com [0.0.0.1] 621 | amp.qq.com [0.0.0.1] 622 | and.qq.com [0.0.0.1] 623 | ao.qq.com [0.0.0.1] 624 | apd.qq.com [203.205.151.219 103.7.29.76 203.205.149.26 203.205.149.241 203.205.150.102 203.205.149.249 203.205.149.237] 625 | apm.qq.com [0.0.0.1] 626 | asn.qq.com [203.205.128.160] 627 | ark.qq.com [203.205.147.196] 628 | asr.qq.com [58.251.81.188] 629 | ask.qq.com [0.0.0.1] 630 | atc.qq.com [140.207.123.187] 631 | aurora.qq.com [0.0.0.1] 632 | audit.qq.com [0.0.0.1] 633 | avengers.qq.com [0.0.0.1] 634 | ax.qq.com [0.0.0.1] 635 | asura.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 636 | awm.qq.com [0.0.0.1] 637 | avatar.qq.com [0.0.0.1] 638 | bacon.qq.com [0.0.0.1] 639 | att.qq.com [0.0.0.1] 640 | ava.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 641 | baba.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 642 | bada.qq.com [163.177.73.178 163.177.73.162 163.177.73.175 163.177.73.176] 643 | band.qq.com [0.0.0.1] 644 | bao.qq.com [101.226.233.187] 645 | bang.qq.com [223.167.86.170] 646 | bandaid.qq.com [0.0.0.1] 647 | baby.qq.com [203.205.151.47] 648 | barcode.qq.com [203.205.142.147] 649 | battle.qq.com [103.7.30.123] 650 | bass.qq.com [0.0.0.1] 651 | bear.qq.com [0.0.0.1] 652 | bak.qq.com [61.151.217.46 101.226.86.182] 653 | beacon.qq.com [203.205.179.231 203.205.179.230] 654 | bella.qq.com [203.205.151.47] 655 | bbc.qq.com [0.0.0.1] 656 | bbn.qq.com [0.0.0.1] 657 | b2c.qq.com [58.250.136.104] 658 | bigbang.qq.com [0.0.0.1] 659 | bingo.qq.com [183.57.48.17] 660 | bi.qq.com [203.205.151.47] 661 | bk.qq.com [0.0.0.1] 662 | bf.qq.com [0.0.0.1] 663 | birds.qq.com [203.205.138.21 203.205.158.65 203.205.158.64 203.205.158.58 203.205.138.20] 664 | bio.qq.com [0.0.0.1] 665 | blade.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 666 | block.qq.com [0.0.0.1] 667 | blt.qq.com [103.7.30.123] 668 | boke.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 669 | bobo.qq.com [203.205.151.21] 670 | bottom.qq.com [0.0.0.1] 671 | boss.qq.com [0.0.0.1] 672 | bonus.qq.com [183.3.233.164] 673 | box.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 674 | brand.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 675 | boom.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 676 | brew.qq.com [58.251.148.247 58.251.148.139] 677 | bread.qq.com [0.0.0.1] 678 | bosch.qq.com [0.0.0.1] 679 | btr.qq.com [0.0.0.1] 680 | broadcast.qq.com [0.0.0.1] 681 | bud.qq.com [0.0.0.1] 682 | budweiser.qq.com [0.0.0.1] 683 | bsg.qq.com [0.0.0.1] 684 | btest.qq.com [163.177.92.75] 685 | bst.qq.com [183.232.94.102] 686 | cai.qq.com [0.0.0.1] 687 | camera.qq.com [163.177.68.178] 688 | cap.qq.com [203.205.151.14] 689 | candy.qq.com [0.0.0.1] 690 | cartoon.qq.com [103.7.30.123] 691 | cam.qq.com [203.205.151.26] 692 | campus.qq.com [203.205.151.47] 693 | catcher.qq.com [58.247.214.71] 694 | cbl.qq.com [103.7.30.123] 695 | carry.qq.com [0.0.0.1] 696 | ccd.qq.com [103.7.30.123] 697 | ccs.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 698 | cb.qq.com [219.133.60.197] 699 | cen.qq.com [0.0.0.1] 700 | cdc.qq.com [14.17.41.228] 701 | cf.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 702 | cdp.qq.com [203.205.151.14] 703 | chain.qq.com [183.3.225.122] 704 | chao.qq.com [203.205.219.228] 705 | che.qq.com [203.205.151.51] 706 | chart.qq.com [112.90.77.139] 707 | cheng.qq.com [0.0.0.1] 708 | chess.qq.com [0.0.0.1] 709 | cfm.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 710 | chevy.qq.com [0.0.0.1] 711 | chicken.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 712 | china.qq.com [203.205.151.47] 713 | chic.qq.com [103.7.30.123] 714 | beyond.qq.com [0.0.0.1] 715 | chen.qq.com [0.0.0.1] 716 | chrysler.qq.com [0.0.0.1] 717 | chuang.qq.com [0.0.0.1] 718 | chun.qq.com [103.7.30.123] 719 | chong.qq.com [203.205.151.21] 720 | cjm.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 721 | civ.qq.com [0.0.0.1] 722 | ck.qq.com [0.0.0.1] 723 | classical.qq.com [103.7.30.123] 724 | clock.qq.com [0.0.0.1] 725 | cj.qq.com [183.61.51.29] 726 | cloud.qq.com [119.28.38.179 119.28.34.128] 727 | cmu.qq.com [0.0.0.1] 728 | cmc.qq.com [0.0.0.1] 729 | cmp.qq.com [0.0.0.1] 730 | code.qq.com [0.0.0.1] 731 | circle.qq.com [203.205.219.231] 732 | coc.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 733 | coffee.qq.com [0.0.0.1] 734 | cola.qq.com [0.0.0.1] 735 | coke.qq.com [0.0.0.1] 736 | college.qq.com [14.17.42.64] 737 | commune.qq.com [219.133.49.155] 738 | compass.qq.com [183.232.88.153] 739 | connect.qq.com [203.205.151.50] 740 | converse.qq.com [0.0.0.1] 741 | coral.qq.com [203.205.151.45] 742 | cod.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 743 | color.qq.com [0.0.0.1] 744 | comic.qq.com [58.246.220.12] 745 | cookie.qq.com [0.0.0.1] 746 | coop.qq.com [125.39.133.40] 747 | cos.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 748 | cq.qq.com [203.205.151.47] 749 | cross.qq.com [0.0.0.1] 750 | cpc.qq.com [0.0.0.1] 751 | crash.qq.com [0.0.0.1] 752 | credit.qq.com [0.0.0.1] 753 | csb.qq.com [0.0.0.1] 754 | crown.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 755 | css.qq.com [0.0.0.1] 756 | cue.qq.com [134.175.75.18] 757 | ctt.qq.com [0.0.0.1] 758 | csv.qq.com [0.0.0.1] 759 | cti.qq.com [203.205.151.47] 760 | ct.qq.com [0.0.0.1] 761 | current.qq.com [0.0.0.1] 762 | cube.qq.com [0.0.0.1] 763 | cheer.qq.com [61.151.217.46 101.226.86.182] 764 | cps.qq.com [203.205.151.21] 765 | da.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 766 | dada.qq.com [0.0.0.1] 767 | daas.qq.com [0.0.0.1] 768 | dav.qq.com [220.249.243.199 157.255.174.114] 769 | cy.qq.com [203.205.151.47] 770 | dao.qq.com [203.205.151.47] 771 | dark.qq.com [0.0.0.1] 772 | databank.qq.com [0.0.0.1] 773 | daphne.qq.com [0.0.0.1] 774 | darwin.qq.com [61.151.229.203 61.151.225.225] 775 | dance.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 776 | date.qq.com [101.226.86.182 61.151.217.46] 777 | dcd.qq.com [0.0.0.1] 778 | ddd.qq.com [0.0.0.1] 779 | debug.qq.com [0.0.0.1] 780 | defender.qq.com [14.17.30.93] 781 | ddt.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 782 | denny.qq.com [0.0.0.1] 783 | dep.qq.com [0.0.0.1] 784 | deco.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 785 | df.qq.com [0.0.0.1] 786 | dcg.qq.com [0.0.0.1] 787 | dcm.qq.com [183.3.233.164] 788 | dfj.qq.com [0.0.0.1] 789 | desk.qq.com [203.205.128.167] 790 | dg.qq.com [0.0.0.1] 791 | dh.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 792 | device.qq.com [58.250.137.43] 793 | dfm.qq.com [0.0.0.1] 794 | dinner.qq.com [0.0.0.1] 795 | digi.qq.com [103.7.30.123] 796 | djt.qq.com [58.251.81.26] 797 | dlm.qq.com [0.0.0.1] 798 | dns2.qq.com [61.135.157.245] 799 | dns1.qq.com [219.133.41.245] 800 | ding.qq.com [0.0.0.1] 801 | dn.qq.com [203.205.158.37 203.205.158.38 203.205.138.57 203.205.138.79 203.205.158.59] 802 | dmc.qq.com [14.17.32.188] 803 | display.qq.com [0.0.0.1] 804 | djc.qq.com [61.151.224.51] 805 | dkh.qq.com [0.0.0.1] 806 | dong.qq.com [203.205.179.230 203.205.179.231] 807 | dove.qq.com [0.0.0.1] 808 | dna.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 809 | doudou.qq.com [0.0.0.1] 810 | down.qq.com [203.205.138.242 119.28.164.220 203.205.138.241 203.205.158.43 203.205.138.243 203.205.158.48 203.205.138.244 119.28.164.222 203.205.158.41 119.28.164.223 203.205.138.240 203.205.158.40 119.28.164.219] 811 | dld.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 812 | dr.qq.com [0.0.0.1] 813 | dov.qq.com [203.205.151.14] 814 | domo.qq.com [101.226.86.182 61.151.217.46] 815 | dp.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 816 | dps.qq.com [0.0.0.1] 817 | drive.qq.com [0.0.0.1] 818 | dso.qq.com [0.0.0.1] 819 | ds.qq.com [0.0.0.1] 820 | dsp.qq.com [0.0.0.1] 821 | dpl.qq.com [0.0.0.1] 822 | dream.qq.com [103.7.30.123] 823 | du.qq.com [0.0.0.1] 824 | dts.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 825 | dt.qq.com [203.205.128.112] 826 | duo.qq.com [183.232.88.238] 827 | dsg.qq.com [0.0.0.1] 828 | dv.qq.com [0.0.0.1] 829 | dw.qq.com [203.205.151.41] 830 | ea.qq.com [0.0.0.1] 831 | ears.qq.com [0.0.0.1] 832 | duty.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 833 | dwn.qq.com [101.227.160.30] 834 | ear.qq.com [0.0.0.1] 835 | dy.qq.com [103.7.30.123] 836 | editor.qq.com [0.0.0.1] 837 | economy.qq.com [203.205.151.47] 838 | ei.qq.com [0.0.0.1] 839 | cosmo.qq.com [103.7.30.123] 840 | eight.qq.com [101.226.86.182 61.151.217.46] 841 | eid.qq.com [0.0.0.1] 842 | em.qq.com [112.90.77.139] 843 | encore.qq.com [0.0.0.1] 844 | ep.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 845 | empire.qq.com [0.0.0.1] 846 | epic.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 847 | epc.qq.com [0.0.0.1] 848 | ent.qq.com [203.205.151.47] 849 | error.qq.com [0.0.0.1] 850 | english.qq.com [203.205.219.231] 851 | ex.qq.com [157.255.174.114 220.249.243.199] 852 | europa.qq.com [0.0.0.1] 853 | ernie.qq.com [59.37.116.43] 854 | eyes.qq.com [0.0.0.1] 855 | eve.qq.com [0.0.0.1] 856 | explore.qq.com [58.247.214.40] 857 | face.qq.com [103.7.30.72] 858 | fang.qq.com [58.251.148.247 58.251.148.139] 859 | fb.qq.com [0.0.0.1] 860 | fc.qq.com [111.230.189.144] 861 | fast.qq.com [0.0.0.1] 862 | exp.qq.com [203.205.151.247] 863 | fd.qq.com [0.0.0.1] 864 | fact.qq.com [203.205.151.47] 865 | fbi.qq.com [163.177.71.179] 866 | fh.qq.com [0.0.0.1] 867 | fen.qq.com [0.0.0.1] 868 | fighter.qq.com [0.0.0.1] 869 | family.qq.com [203.205.151.26] 870 | find.qq.com [125.39.240.37] 871 | fcm.qq.com [14.17.41.220] 872 | fct.qq.com [193.112.225.48] 873 | fda.qq.com [0.0.0.1] 874 | first.qq.com [0.0.0.1] 875 | fg.qq.com [203.205.147.218] 876 | fire.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 877 | five.qq.com [0.0.0.1] 878 | film.qq.com [23.219.132.103] 879 | flower.qq.com [203.205.179.230 203.205.179.231] 880 | finance.qq.com [203.205.151.47] 881 | fmc.qq.com [0.0.0.1] 882 | fish.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 883 | food.qq.com [203.205.138.20 203.205.138.21 203.205.158.65 203.205.158.64 203.205.158.58] 884 | flight.qq.com [0.0.0.1] 885 | fps.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 886 | fn.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 887 | football.qq.com [203.205.138.20 203.205.138.21 203.205.158.65 203.205.158.64 203.205.158.58] 888 | forest.qq.com [0.0.0.1] 889 | form.qq.com [0.0.0.1] 890 | ft.qq.com [0.0.0.1] 891 | fruit.qq.com [0.0.0.1] 892 | function.qq.com [103.7.30.72] 893 | fsf.qq.com [0.0.0.1] 894 | fsj.qq.com [0.0.0.1] 895 | fx.qq.com [203.205.142.160] 896 | fusion.qq.com [203.205.151.50] 897 | fwd.qq.com [0.0.0.1] 898 | gad.qq.com [14.17.57.225] 899 | gaia.qq.com [0.0.0.1] 900 | gang.qq.com [0.0.0.1] 901 | etest.qq.com [100.113.10.33] 902 | garden.qq.com [0.0.0.1] 903 | fy.qq.com [0.0.0.1] 904 | gap.qq.com [203.205.151.160] 905 | fz.qq.com [203.205.158.37 203.205.158.38 203.205.138.57 203.205.138.79 203.205.158.59] 906 | gamer.qq.com [58.247.214.109] 907 | gdt.qq.com [163.177.68.205] 908 | game.qq.com [203.205.158.38 203.205.138.57 203.205.138.79 203.205.158.59 203.205.158.37] 909 | gdb.qq.com [0.0.0.1] 910 | galaxy.qq.com [0.0.0.1] 911 | gdc.qq.com [183.60.118.96] 912 | gb.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 913 | gc.qq.com [203.205.219.231] 914 | girl.qq.com [0.0.0.1] 915 | geo.qq.com [0.0.0.1] 916 | gog.qq.com [0.0.0.1] 917 | gods.qq.com [0.0.0.1] 918 | get.qq.com [203.205.219.231] 919 | god.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 920 | gj.qq.com [203.205.179.230 203.205.179.231] 921 | gift.qq.com [0.0.0.1] 922 | gluttony.qq.com [0.0.0.1] 923 | gov.qq.com [0.0.0.1] 924 | graph.qq.com [103.7.30.64] 925 | green.qq.com [103.7.30.123] 926 | greatwall.qq.com [111.230.125.213] 927 | grd.qq.com [0.0.0.1] 928 | gri.qq.com [163.177.71.179] 929 | growth.qq.com [134.175.158.19] 930 | guild.qq.com [0.0.0.1] 931 | guard.qq.com [163.177.90.19] 932 | gps.qq.com [0.0.0.1] 933 | h.qq.com [0.0.0.1] 934 | habo.qq.com [203.205.128.167] 935 | gun.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 936 | hammer.qq.com [0.0.0.1] 937 | hall.qq.com [0.0.0.1] 938 | halley.qq.com [61.151.225.225 61.151.229.203] 939 | hao.qq.com [203.205.128.11] 940 | han.qq.com [0.0.0.1] 941 | hea.qq.com [203.205.151.47] 942 | hawk.qq.com [0.0.0.1] 943 | hb.qq.com [203.205.151.47] 944 | here.qq.com [61.151.217.46 101.226.86.182] 945 | heat.qq.com [203.205.179.230 203.205.179.231] 946 | hez.qq.com [203.205.151.41] 947 | hero.qq.com [0.0.0.1] 948 | hl.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 949 | hijack.qq.com [111.30.138.172] 950 | hg.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 951 | hoop.qq.com [203.205.151.47] 952 | homework.qq.com [0.0.0.1] 953 | history.qq.com [203.205.151.47] 954 | hj.qq.com [0.0.0.1] 955 | house.qq.com [203.205.151.47] 956 | hobby.qq.com [0.0.0.1] 957 | hot.qq.com [203.205.179.231 203.205.179.230] 958 | holiday.qq.com [103.7.30.123] 959 | horizon.qq.com [203.205.151.247] 960 | guo.qq.com [0.0.0.1] 961 | hua.qq.com [0.0.0.1] 962 | hs.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 963 | hun.qq.com [0.0.0.1] 964 | hss.qq.com [0.0.0.1] 965 | hy.qq.com [203.205.142.160] 966 | hunt.qq.com [0.0.0.1] 967 | https.qq.com [203.205.151.47] 968 | iac.qq.com [0.0.0.1] 969 | icetea.qq.com [0.0.0.1] 970 | icare.qq.com [103.7.30.123] 971 | ice.qq.com [0.0.0.1] 972 | ido.qq.com [203.205.151.21] 973 | idea.qq.com [121.51.132.57] 974 | ig.qq.com [0.0.0.1] 975 | if.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 976 | ika.qq.com [58.250.9.40] 977 | ib.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 978 | imap.qq.com [58.251.139.219 163.177.72.198] 979 | ime.qq.com [0.0.0.1] 980 | hz.qq.com [103.7.30.123] 981 | image.qq.com [203.205.128.167] 982 | ics.qq.com [0.0.0.1] 983 | inet.qq.com [0.0.0.1] 984 | inf.qq.com [101.226.103.89] 985 | imc.qq.com [14.17.32.142] 986 | intel.qq.com [0.0.0.1] 987 | ip.qq.com [0.0.0.1] 988 | insight.qq.com [203.205.151.47] 989 | ipp.qq.com [0.0.0.1] 990 | irs.qq.com [125.39.133.45] 991 | isd.qq.com [0.0.0.1] 992 | iso.qq.com [123.151.66.17] 993 | iv.qq.com [58.250.136.111] 994 | istar.qq.com [61.151.217.46 101.226.86.182] 995 | iu.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 996 | iwan.qq.com [59.37.96.241 203.205.151.41] 997 | j.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 998 | jdb.qq.com [0.0.0.1] 999 | jc.qq.com [0.0.0.1] 1000 | jdl.qq.com [0.0.0.1] 1001 | jdm.qq.com [0.0.0.1] 1002 | jade.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 1003 | jd.qq.com [0.0.0.1] 1004 | ios.qq.com [203.205.219.231] 1005 | jfb.qq.com [0.0.0.1] 1006 | jfm.qq.com [0.0.0.1] 1007 | jia.qq.com [183.66.97.161] 1008 | jhm.qq.com [0.0.0.1] 1009 | jj.qq.com [0.0.0.1] 1010 | ji.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 1011 | jg.qq.com [112.90.77.139] 1012 | jh.qq.com [0.0.0.1] 1013 | jf.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 1014 | job.qq.com [219.133.48.42] 1015 | jn.qq.com [103.7.30.123] 1016 | jimu.qq.com [0.0.0.1] 1017 | jjj.qq.com [203.205.151.47] 1018 | jl.qq.com [103.7.30.123] 1019 | jb.qq.com [0.0.0.1] 1020 | jin.qq.com [163.177.73.176 163.177.73.178 163.177.73.162 163.177.73.175] 1021 | jk.qq.com [0.0.0.1] 1022 | joy.qq.com [203.205.151.47] 1023 | joke.qq.com [203.205.151.47] 1024 | js.qq.com [203.205.151.47] 1025 | jt.qq.com [0.0.0.1] 1026 | joker.qq.com [0.0.0.1] 1027 | juventus.qq.com [203.205.151.47] 1028 | juice.qq.com [0.0.0.1] 1029 | jr.qq.com [1.1.1.1] 1030 | jump.qq.com [184.51.15.142 184.51.15.172] 1031 | jw.qq.com [0.0.0.1] 1032 | kan.qq.com [203.205.138.57 203.205.138.79 203.205.158.59 203.205.158.37 203.205.158.38] 1033 | juju.qq.com [61.151.217.46 101.226.86.182] 1034 | juba.qq.com [101.226.86.182 61.151.217.46] 1035 | kbs.qq.com [203.205.151.47] 1036 | kc.qq.com [203.205.179.230 203.205.179.231] 1037 | kdb.qq.com [0.0.0.1] 1038 | kapu.qq.com [203.205.142.199] 1039 | kd.qq.com [203.205.151.50] 1040 | kart.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 1041 | kids.qq.com [103.7.30.123] 1042 | key.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 1043 | keys.qq.com [58.250.136.111] 1044 | kill.qq.com [0.0.0.1] 1045 | kingkong.qq.com [0.0.0.1] 1046 | kfc.qq.com [0.0.0.1] 1047 | kf.qq.com [59.37.96.218] 1048 | kid.qq.com [203.205.151.47] 1049 | kl.qq.com [58.251.148.139 58.251.148.247] 1050 | kitty.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 1051 | kof.qq.com [0.0.0.1] 1052 | ksf.qq.com [0.0.0.1] 1053 | kt.qq.com [0.0.0.1] 1054 | kubo.qq.com [0.0.0.1] 1055 | kpl.qq.com [58.247.206.182] 1056 | kylin.qq.com [0.0.0.1] 1057 | lady.qq.com [103.7.30.123] 1058 | lai.qq.com [0.0.0.1] 1059 | label.qq.com [0.0.0.1] 1060 | ldp.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 1061 | lang.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 1062 | last.qq.com [0.0.0.1] 1063 | lct.qq.com [203.205.151.21] 1064 | leaf.qq.com [59.37.96.56] 1065 | learning.qq.com [203.205.151.47] 1066 | leap.qq.com [0.0.0.1] 1067 | law.qq.com [119.29.215.76] 1068 | ld.qq.com [0.0.0.1] 1069 | lego.qq.com [0.0.0.1] 1070 | lh.qq.com [203.205.151.26] 1071 | liang.qq.com [0.0.0.1] 1072 | lg.qq.com [103.7.30.123] 1073 | levin.qq.com [0.0.0.1] 1074 | list.qq.com [0.0.0.1] 1075 | lipton.qq.com [0.0.0.1] 1076 | lm.qq.com [101.227.130.59] 1077 | libs.qq.com [203.205.151.47] 1078 | lo.qq.com [0.0.0.1] 1079 | lll.qq.com [0.0.0.1] 1080 | lj.qq.com [183.232.94.102] 1081 | localhost.qq.com [0.0.0.1] 1082 | ll.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 1083 | line.qq.com [101.226.103.40] 1084 | ln.qq.com [203.205.151.47] 1085 | lpc.qq.com [0.0.0.1] 1086 | lolo.qq.com [0.0.0.1] 1087 | lms.qq.com [0.0.0.1] 1088 | lq.qq.com [0.0.0.1] 1089 | lord.qq.com [0.0.0.1] 1090 | luan.qq.com [0.0.0.1] 1091 | lp.qq.com [203.205.158.58 203.205.138.20 203.205.138.21 203.205.158.65 203.205.158.64] 1092 | lx.qq.com [0.0.0.1] 1093 | ltd.qq.com [112.90.77.139] 1094 | mag.qq.com [0.0.0.1] 1095 | magic.qq.com [103.7.30.72] 1096 | mad.qq.com [61.151.217.46 101.226.86.182] 1097 | mark.qq.com [163.177.84.24] 1098 | marble.qq.com [0.0.0.1] 1099 | marketing.qq.com [0.0.0.1] 1100 | market.qq.com [0.0.0.1] 1101 | mars.qq.com [0.0.0.1] 1102 | match.qq.com [14.17.57.194] 1103 | mask.qq.com [203.205.128.168 203.205.128.169] 1104 | mate.qq.com [0.0.0.1] 1105 | mb.qq.com [203.205.179.230 203.205.179.231] 1106 | mcd.qq.com [0.0.0.1] 1107 | mcm.qq.com [0.0.0.1] 1108 | matrix.qq.com [101.226.86.182 61.151.217.46] 1109 | mcp.qq.com [0.0.0.1] 1110 | mbox.qq.com [0.0.0.1] 1111 | meeting.qq.com [58.251.100.24] 1112 | medialab.qq.com [203.205.151.51] 1113 | mdata.qq.com [61.151.217.46 101.226.86.182] 1114 | meng.qq.com [0.0.0.1] 1115 | mff.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 1116 | metal.qq.com [0.0.0.1] 1117 | metro.qq.com [101.226.86.182 61.151.217.46] 1118 | mf.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 1119 | mgw.qq.com [0.0.0.1] 1120 | midas.qq.com [59.37.116.64 59.37.96.221] 1121 | mia.qq.com [0.0.0.1] 1122 | mid.qq.com [0.0.0.1] 1123 | milk.qq.com [0.0.0.1] 1124 | milo.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 1125 | minutemaid.qq.com [0.0.0.1] 1126 | mil.qq.com [203.205.151.47] 1127 | mho.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 1128 | mkt.qq.com [101.226.86.182 61.151.217.46] 1129 | mj.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 1130 | mini.qq.com [203.205.151.47] 1131 | mob.qq.com [61.151.217.46 101.226.86.182] 1132 | mobi.qq.com [101.226.86.182 61.151.217.46] 1133 | mir.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 1134 | moa.qq.com [0.0.0.1] 1135 | moc.qq.com [120.198.199.152] 1136 | mmp.qq.com [0.0.0.1] 1137 | module.qq.com [14.17.57.198] 1138 | moka.qq.com [0.0.0.1] 1139 | monkey.qq.com [111.230.163.170] 1140 | mmm.qq.com [0.0.0.1] 1141 | mmd.qq.com [0.0.0.1] 1142 | merc.qq.com [203.205.219.146] 1143 | moo.qq.com [203.205.158.52 203.205.138.19 203.205.158.66] 1144 | mop.qq.com [0.0.0.1] 1145 | moment.qq.com [0.0.0.1] 1146 | mma.qq.com [203.205.151.21] 1147 | mimi.qq.com [184.51.15.172 184.51.15.142] 1148 | mos.qq.com [0.0.0.1] 1149 | mms.qq.com [58.251.148.247 58.251.148.139] 1150 | motorola.qq.com [0.0.0.1] 1151 | moni.qq.com [0.0.0.1] 1152 | moss.qq.com [58.250.136.22] 1153 | mou.qq.com [0.0.0.1] 1154 | msg.qq.com [0.0.0.1] 1155 | mrl.qq.com [0.0.0.1] 1156 | mta.qq.com [59.37.97.25] 1157 | movie.qq.com [103.7.30.123] 1158 | msf.qq.com [101.226.86.182 61.151.217.46] 1159 | mtp.qq.com [203.205.151.46] 1160 | mur.qq.com [121.51.141.112] 1161 | museum.qq.com [0.0.0.1] 1162 | msm.qq.com [101.226.89.167] 1163 | mz.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 1164 | nana.qq.com [0.0.0.1] 1165 | nanjing.qq.com [203.205.151.47] 1166 | nba.qq.com [184.51.15.172 184.51.15.142] 1167 | nb.qq.com [0.0.0.1] 1168 | mvs.qq.com [58.251.81.190] 1169 | nds.qq.com [0.0.0.1] 1170 | netgate.qq.com [219.133.48.170] 1171 | ndc.qq.com [203.205.151.41] 1172 | nfs.qq.com [0.0.0.1] 1173 | nike.qq.com [0.0.0.1] 1174 | nlp.qq.com [125.39.133.28] 1175 | ninja.qq.com [58.251.81.193] 1176 | niu.qq.com [58.251.148.139 58.251.148.247] 1177 | nimitz.qq.com [183.61.38.179] 1178 | noah.qq.com [0.0.0.1] 1179 | notebook.qq.com [103.7.30.123] 1180 | note.qq.com [0.0.0.1] 1181 | novel.qq.com [101.226.103.89] 1182 | nmc.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 1183 | nw.qq.com [0.0.0.1] 1184 | o.qq.com [203.205.219.231] 1185 | oa.qq.com [0.0.0.1] 1186 | oc.qq.com [0.0.0.1] 1187 | nws.qq.com [111.161.53.75] 1188 | offline.qq.com [58.251.139.217] 1189 | ol.qq.com [0.0.0.1] 1190 | ooc.qq.com [0.0.0.1] 1191 | on.qq.com [0.0.0.1] 1192 | ooo.qq.com [0.0.0.1] 1193 | oops.qq.com [163.177.92.68] 1194 | omo.qq.com [0.0.0.1] 1195 | ocr.qq.com [203.205.151.21] 1196 | op.qq.com [0.0.0.1] 1197 | olympic.qq.com [103.7.30.123] 1198 | oreo.qq.com [0.0.0.1] 1199 | oracle.qq.com [101.226.86.182 61.151.217.46] 1200 | one.qq.com [0.0.0.1] 1201 | osm.qq.com [0.0.0.1] 1202 | os.qq.com [203.205.219.231] 1203 | oma.qq.com [103.7.30.79] 1204 | oto.qq.com [163.177.73.162 163.177.73.175 163.177.73.176 163.177.73.178] 1205 | pack.qq.com [0.0.0.1] 1206 | oz.qq.com [183.232.98.145] 1207 | pai.qq.com [0.0.0.1] 1208 | ott.qq.com [0.0.0.1] 1209 | pad.qq.com [0.0.0.1] 1210 | panama.qq.com [0.0.0.1] 1211 | next.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 1212 | panda.qq.com [58.251.81.197] 1213 | pan.qq.com [0.0.0.1] 1214 | pac.qq.com [14.17.43.248] 1215 | pao.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 1216 | pang.qq.com [103.7.30.90] 1217 | paragon.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 1218 | pal.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 1219 | patent.qq.com [203.205.151.223] 1220 | pala.qq.com [0.0.0.1] 1221 | patrol.qq.com [183.232.88.209] 1222 | palm.qq.com [203.205.219.231] 1223 | papa.qq.com [58.251.148.139 58.251.148.247] 1224 | path.qq.com [0.0.0.1] 1225 | pcf.qq.com [0.0.0.1] 1226 | pd.qq.com [103.7.30.52] 1227 | pecker.qq.com [0.0.0.1] 1228 | peng.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 1229 | peak.qq.com [0.0.0.1] 1230 | pepsi.qq.com [0.0.0.1] 1231 | pet.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 1232 | pgc.qq.com [0.0.0.1] 1233 | philips.qq.com [0.0.0.1] 1234 | pie.qq.com [203.205.151.21] 1235 | phs.qq.com [0.0.0.1] 1236 | ping.qq.com [0.0.0.1] 1237 | origin.qq.com [101.226.103.89] 1238 | pin.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 1239 | pilot.qq.com [183.61.56.30] 1240 | play.qq.com [125.39.213.73] 1241 | pim.qq.com [203.205.128.167] 1242 | plane.qq.com [0.0.0.1] 1243 | place.qq.com [61.151.217.46 101.226.86.182] 1244 | planet.qq.com [111.230.160.129] 1245 | pix.qq.com [103.7.30.44] 1246 | picture.qq.com [61.151.217.46 101.226.86.182] 1247 | pm.qq.com [203.205.128.167] 1248 | pms.qq.com [203.205.151.50] 1249 | pingpong.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 1250 | plus.qq.com [203.205.179.230 203.205.179.231] 1251 | poe.qq.com [203.205.138.79 203.205.158.59 203.205.158.37 203.205.158.38 203.205.138.57] 1252 | pocket.qq.com [103.7.30.102] 1253 | phone.qq.com [61.151.217.46 101.226.86.182] 1254 | portable.qq.com [0.0.0.1] 1255 | pong.qq.com [0.0.0.1] 1256 | poi.qq.com [61.151.217.46 101.226.86.182] 1257 | prince.qq.com [0.0.0.1] 1258 | pos.qq.com [0.0.0.1] 1259 | prize.qq.com [125.39.133.40] 1260 | privacy.qq.com [203.205.151.47] 1261 | ptp.qq.com [0.0.0.1] 1262 | pu.qq.com [0.0.0.1] 1263 | point.qq.com [61.151.217.46 101.226.86.182] 1264 | puke.qq.com [0.0.0.1] 1265 | push.qq.com [0.0.0.1] 1266 | qian.qq.com [203.205.151.51] 1267 | q.qq.com [58.247.206.188] 1268 | qc.qq.com [0.0.0.1] 1269 | qb.qq.com [163.177.67.112] 1270 | qm.qq.com [203.205.151.26] 1271 | qad.qq.com [0.0.0.1] 1272 | qi.qq.com [0.0.0.1] 1273 | quan.qq.com [203.205.179.230 203.205.179.231] 1274 | ptt.qq.com [61.151.217.46 101.226.86.182] 1275 | qzone.qq.com [203.205.138.57 203.205.138.79 203.205.158.59 203.205.158.37 203.205.158.38] 1276 | rain.qq.com [203.205.151.47] 1277 | qt.qq.com [203.205.151.51] 1278 | qms.qq.com [0.0.0.1] 1279 | rap.qq.com [203.205.151.47] 1280 | quiz.qq.com [0.0.0.1] 1281 | randy.qq.com [0.0.0.1] 1282 | raz.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 1283 | recruit.qq.com [203.205.151.14] 1284 | ranch.qq.com [0.0.0.1] 1285 | rar.qq.com [0.0.0.1] 1286 | reader.qq.com [203.205.151.243 203.205.142.162] 1287 | relax.qq.com [101.226.86.182 61.151.217.46] 1288 | repair.qq.com [0.0.0.1] 1289 | request.qq.com [0.0.0.1] 1290 | rf.qq.com [203.205.158.38 203.205.138.57 203.205.138.79 203.205.158.59 203.205.158.37] 1291 | rh.qq.com [0.0.0.1] 1292 | retail.qq.com [203.205.179.230 203.205.179.231] 1293 | rk.qq.com [0.0.0.1] 1294 | rm.qq.com [0.0.0.1] 1295 | rmp.qq.com [118.25.34.111] 1296 | rms.qq.com [0.0.0.1] 1297 | robotics.qq.com [203.205.128.186] 1298 | rlm.qq.com [0.0.0.1] 1299 | road.qq.com [0.0.0.1] 1300 | robot.qq.com [0.0.0.1] 1301 | rl.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 1302 | ring.qq.com [58.251.148.139 58.251.148.247] 1303 | rom.qq.com [163.177.73.175 163.177.73.176 163.177.73.178 163.177.73.162] 1304 | ros.qq.com [101.226.86.182 61.151.217.46] 1305 | rong.qq.com [103.7.30.123] 1306 | roll.qq.com [125.39.240.46] 1307 | rp.qq.com [0.0.0.1] 1308 | robotic.qq.com [0.0.0.1] 1309 | rule.qq.com [0.0.0.1] 1310 | run.qq.com [103.7.30.39] 1311 | rz.qq.com [163.177.92.75] 1312 | rust.qq.com [0.0.0.1] 1313 | sai.qq.com [0.0.0.1] 1314 | sad.qq.com [0.0.0.1] 1315 | rtc.qq.com [123.151.42.30] 1316 | rtx.qq.com [103.7.30.111] 1317 | sandbox.qq.com [0.0.0.1] 1318 | sale.qq.com [203.205.158.59 203.205.158.37 203.205.158.38 203.205.138.57 203.205.138.79] 1319 | sandwich.qq.com [0.0.0.1] 1320 | sas.qq.com [58.250.137.27] 1321 | sand.qq.com [0.0.0.1] 1322 | save.qq.com [101.226.86.182 61.151.217.46] 1323 | say.qq.com [203.205.219.231] 1324 | screen.qq.com [0.0.0.1] 1325 | sds.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 1326 | sdg.qq.com [0.0.0.1] 1327 | see.qq.com [0.0.0.1] 1328 | scan.qq.com [101.226.89.167] 1329 | selene.qq.com [0.0.0.1] 1330 | sdc.qq.com [193.112.227.136] 1331 | seals.qq.com [0.0.0.1] 1332 | rainbow.qq.com [0.0.0.1] 1333 | shaka.qq.com [14.215.158.28] 1334 | seven.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 1335 | seraph.qq.com [101.226.86.182 61.151.217.46] 1336 | sen.qq.com [0.0.0.1] 1337 | sgm.qq.com [0.0.0.1] 1338 | sgn.qq.com [0.0.0.1] 1339 | shen.qq.com [0.0.0.1] 1340 | sharp.qq.com [0.0.0.1] 1341 | shang.qq.com [58.251.100.24] 1342 | shell.qq.com [203.205.147.195] 1343 | shine.qq.com [101.226.86.182 61.151.217.46] 1344 | shi.qq.com [121.51.131.47] 1345 | shanghai.qq.com [0.0.0.1] 1346 | she.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 1347 | sing.qq.com [0.0.0.1] 1348 | sight.qq.com [0.0.0.1] 1349 | show.qq.com [203.205.147.218] 1350 | sif.qq.com [123.207.157.208] 1351 | shark.qq.com [203.205.158.53 203.205.158.54 203.205.158.34 203.205.138.71 203.205.158.55 203.205.158.56 203.205.158.35] 1352 | singer.qq.com [0.0.0.1] 1353 | sjb.qq.com [14.215.153.89] 1354 | signature.qq.com [203.205.151.247] 1355 | slab.qq.com [203.205.128.167] 1356 | slide.qq.com [0.0.0.1] 1357 | slg.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 1358 | small.qq.com [0.0.0.1] 1359 | smash.qq.com [0.0.0.1] 1360 | skynet.qq.com [183.36.108.153] 1361 | smtp.qq.com [14.17.57.241 14.18.245.164] 1362 | smp.qq.com [0.0.0.1] 1363 | smite.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 1364 | skin.qq.com [0.0.0.1] 1365 | snow.qq.com [0.0.0.1] 1366 | snip.qq.com [103.7.30.111] 1367 | soccer.qq.com [203.205.151.47] 1368 | sns.qq.com [0.0.0.1] 1369 | soft.qq.com [203.205.128.167] 1370 | soma.qq.com [103.7.30.79] 1371 | smart.qq.com [58.251.148.139 58.251.148.247] 1372 | sml.qq.com [0.0.0.1] 1373 | smd.qq.com [0.0.0.1] 1374 | sou.qq.com [203.205.151.14] 1375 | soso.qq.com [0.0.0.1] 1376 | sp.qq.com [183.232.94.102] 1377 | spec.qq.com [0.0.0.1] 1378 | space.qq.com [203.205.151.47] 1379 | soul.qq.com [0.0.0.1] 1380 | sound.qq.com [0.0.0.1] 1381 | spark.qq.com [0.0.0.1] 1382 | sonic.qq.com [0.0.0.1] 1383 | speech.qq.com [0.0.0.1] 1384 | speed.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 1385 | sporter.qq.com [163.177.92.108] 1386 | spring.qq.com [0.0.0.1] 1387 | sprite.qq.com [0.0.0.1] 1388 | srf.qq.com [111.202.101.33] 1389 | ssp.qq.com [0.0.0.1] 1390 | sss.qq.com [0.0.0.1] 1391 | srv.qq.com [0.0.0.1] 1392 | stack.qq.com [0.0.0.1] 1393 | sq.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 1394 | stars.qq.com [103.7.30.123] 1395 | ssl.qq.com [203.205.151.50] 1396 | ssk.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 1397 | stock.qq.com [203.205.151.47] 1398 | stream.qq.com [0.0.0.1] 1399 | stone.qq.com [0.0.0.1] 1400 | style.qq.com [203.205.138.57 203.205.138.79 203.205.158.59 203.205.158.37 203.205.158.38] 1401 | strong.qq.com [0.0.0.1] 1402 | stun.qq.com [0.0.0.1] 1403 | study.qq.com [203.205.179.230 203.205.179.231] 1404 | story.qq.com [58.247.214.46] 1405 | stride.qq.com [0.0.0.1] 1406 | supers.qq.com [203.205.158.59 203.205.158.37 203.205.158.38 203.205.138.57 203.205.138.79] 1407 | survey.qq.com [0.0.0.1] 1408 | svr.qq.com [0.0.0.1] 1409 | sx.qq.com [0.0.0.1] 1410 | sura.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 1411 | tae.qq.com [0.0.0.1] 1412 | sync.qq.com [0.0.0.1] 1413 | tactic.qq.com [113.96.231.227] 1414 | tad.qq.com [0.0.0.1] 1415 | super.qq.com [203.205.147.218] 1416 | table.qq.com [0.0.0.1] 1417 | tablet.qq.com [61.151.217.46 101.226.86.182] 1418 | tang.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 1419 | sxl.qq.com [0.0.0.1] 1420 | tams.qq.com [203.205.147.195] 1421 | tank.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 1422 | tarot.qq.com [0.0.0.1] 1423 | tao.qq.com [0.0.0.1] 1424 | tan.qq.com [0.0.0.1] 1425 | tango.qq.com [0.0.0.1] 1426 | target.qq.com [0.0.0.1] 1427 | tav.qq.com [203.205.128.168 203.205.128.169] 1428 | tai.qq.com [0.0.0.1] 1429 | tdc.qq.com [183.232.91.114] 1430 | teach.qq.com [0.0.0.1] 1431 | tb.qq.com [58.250.135.154] 1432 | tcs.qq.com [223.167.154.100] 1433 | tab.qq.com [203.205.219.231] 1434 | tcss.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 1435 | tar.qq.com [203.205.128.169 203.205.128.168] 1436 | tba.qq.com [0.0.0.1] 1437 | tec.qq.com [0.0.0.1] 1438 | ten.qq.com [0.0.0.1] 1439 | tbh.qq.com [0.0.0.1] 1440 | tea.qq.com [163.177.92.68] 1441 | tdd.qq.com [203.205.138.150 203.205.138.228 203.205.138.237 203.205.138.231 203.205.138.187 203.205.138.238 203.205.138.152 203.205.138.226 203.205.138.104 203.205.138.44 203.205.138.227 203.205.138.17 203.205.138.45 203.205.138.15 203.205.138.245] 1442 | tgc.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 1443 | tfc.qq.com [203.205.151.51] 1444 | tgpc.qq.com [203.205.179.231 203.205.179.230] 1445 | teta.qq.com [203.205.179.230 203.205.179.231] 1446 | tex.qq.com [0.0.0.1] 1447 | tas.qq.com [203.205.128.186] 1448 | thinker.qq.com [203.205.151.47] 1449 | tic.qq.com [0.0.0.1] 1450 | ti.qq.com [203.205.151.21] 1451 | tim.qq.com [203.205.151.50] 1452 | tes.qq.com [203.205.179.230 203.205.179.231] 1453 | tel.qq.com [101.226.86.182 61.151.217.46] 1454 | tips.qq.com [140.207.69.85] 1455 | tga.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 1456 | timi.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 1457 | tita.qq.com [163.177.73.162 163.177.73.175 163.177.73.176 163.177.73.178] 1458 | time.qq.com [203.205.151.47] 1459 | tmo.qq.com [203.205.147.195] 1460 | times.qq.com [0.0.0.1] 1461 | timo.qq.com [0.0.0.1] 1462 | toma.qq.com [125.39.247.204] 1463 | ticket.qq.com [0.0.0.1] 1464 | tl.qq.com [0.0.0.1] 1465 | tong.qq.com [0.0.0.1] 1466 | tmc.qq.com [203.205.151.47] 1467 | tnt.qq.com [0.0.0.1] 1468 | tmp.qq.com [203.205.151.47] 1469 | tms.qq.com [163.177.73.162 163.177.73.175 163.177.73.176 163.177.73.178] 1470 | toc.qq.com [0.0.0.1] 1471 | tos.qq.com [163.177.73.176 163.177.73.178 163.177.73.162 163.177.73.175] 1472 | tps.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 1473 | toy.qq.com [183.3.225.64] 1474 | trace.qq.com [103.7.30.118] 1475 | ting.qq.com [119.28.109.132 118.191.216.42 118.191.216.57] 1476 | trans.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 1477 | travel.qq.com [0.0.0.1] 1478 | transfer.qq.com [203.205.179.231 203.205.179.230] 1479 | toshiba.qq.com [0.0.0.1] 1480 | trident.qq.com [0.0.0.1] 1481 | trip.qq.com [0.0.0.1] 1482 | town.qq.com [0.0.0.1] 1483 | trust.qq.com [0.0.0.1] 1484 | tsingtao.qq.com [0.0.0.1] 1485 | tsa.qq.com [0.0.0.1] 1486 | tsc.qq.com [140.207.62.121] 1487 | tts.qq.com [203.205.151.21] 1488 | tsw.qq.com [0.0.0.1] 1489 | tsh.qq.com [180.153.210.15] 1490 | tui.qq.com [0.0.0.1] 1491 | ttt.qq.com [0.0.0.1] 1492 | touch.qq.com [61.151.217.46 101.226.86.182] 1493 | trp.qq.com [203.205.128.167] 1494 | ttl.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 1495 | tstar.qq.com [0.0.0.1] 1496 | tsp.qq.com [0.0.0.1] 1497 | ty.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 1498 | twx.qq.com [117.135.175.157] 1499 | tyre.qq.com [0.0.0.1] 1500 | twin.qq.com [203.205.151.47] 1501 | ud.qq.com [183.61.56.28] 1502 | ul.qq.com [0.0.0.1] 1503 | ufo.qq.com [0.0.0.1] 1504 | ugo.qq.com [182.254.5.159] 1505 | tutor.qq.com [0.0.0.1] 1506 | tutu.qq.com [103.7.30.123] 1507 | ulab.qq.com [0.0.0.1] 1508 | ucar.qq.com [59.37.97.80] 1509 | ur.qq.com [203.205.151.247] 1510 | urban.qq.com [203.205.142.166] 1511 | vac.qq.com [184.51.15.190 184.51.15.151] 1512 | utp.qq.com [203.205.147.245] 1513 | vas.qq.com [112.90.74.175] 1514 | vehicle.qq.com [0.0.0.1] 1515 | verify.qq.com [163.177.68.211] 1516 | view.qq.com [203.205.151.47] 1517 | viso.qq.com [0.0.0.1] 1518 | vivo.qq.com [0.0.0.1] 1519 | visual.qq.com [0.0.0.1] 1520 | vote.qq.com [0.0.0.1] 1521 | vv.qq.com [0.0.0.1] 1522 | vs.qq.com [203.205.151.47] 1523 | wal.qq.com [203.205.147.245] 1524 | wai.qq.com [163.177.73.175 163.177.73.176 163.177.73.178 163.177.73.162] 1525 | walton.qq.com [0.0.0.1] 1526 | wang.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 1527 | watch.qq.com [0.0.0.1] 1528 | wb.qq.com [59.36.121.160] 1529 | webproxy.qq.com [163.177.68.177 163.177.68.188] 1530 | we.qq.com [203.205.143.159] 1531 | water.qq.com [0.0.0.1] 1532 | wc.qq.com [203.205.151.47] 1533 | weather.qq.com [203.205.151.47] 1534 | wall.qq.com [0.0.0.1] 1535 | war.qq.com [0.0.0.1] 1536 | volunteer.qq.com [163.177.68.211] 1537 | wg.qq.com [0.0.0.1] 1538 | vnet.qq.com [0.0.0.1] 1539 | wei.qq.com [121.51.131.47] 1540 | way.qq.com [101.226.86.182 61.151.217.46] 1541 | wind.qq.com [0.0.0.1] 1542 | wh.qq.com [203.205.151.210] 1543 | wimbledon.qq.com [203.205.151.47] 1544 | wis.qq.com [140.143.42.115] 1545 | winner.qq.com [0.0.0.1] 1546 | winer.qq.com [0.0.0.1] 1547 | where.qq.com [61.151.217.46 101.226.86.182] 1548 | wing.qq.com [0.0.0.1] 1549 | widget.qq.com [203.205.219.231] 1550 | wise.qq.com [182.254.118.8] 1551 | whs.qq.com [203.205.128.169 203.205.128.168] 1552 | wo.qq.com [0.0.0.1] 1553 | wit.qq.com [0.0.0.1] 1554 | wings.qq.com [0.0.0.1] 1555 | wp.qq.com [58.251.100.24] 1556 | wr.qq.com [100.118.129.182] 1557 | wk.qq.com [101.226.86.182 61.151.217.46] 1558 | word.qq.com [0.0.0.1] 1559 | woz.qq.com [0.0.0.1] 1560 | wsi.qq.com [203.205.151.48] 1561 | wt.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 1562 | workshop.qq.com [0.0.0.1] 1563 | wsk.qq.com [59.37.97.95] 1564 | wpo.qq.com [163.177.73.178 163.177.73.162 163.177.73.175 163.177.73.176] 1565 | wow.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 1566 | wsj.qq.com [0.0.0.1] 1567 | x.qq.com [0.0.0.1] 1568 | wx.qq.com [203.205.151.221] 1569 | xcd.qq.com [0.0.0.1] 1570 | xc.qq.com [203.205.128.167] 1571 | xb.qq.com [0.0.0.1] 1572 | write.qq.com [203.205.142.207] 1573 | xh.qq.com [223.167.154.54] 1574 | xing.qq.com [125.39.133.28] 1575 | wsq.qq.com [203.205.128.161] 1576 | wsm.qq.com [203.205.151.48] 1577 | wpc.qq.com [0.0.0.1] 1578 | xg.qq.com [183.3.225.63] 1579 | wl.qq.com [203.205.138.57 203.205.138.79 203.205.158.59 203.205.158.37 203.205.158.38] 1580 | xn.qq.com [0.0.0.1] 1581 | xring.qq.com [58.251.148.139 58.251.148.247] 1582 | wtc.qq.com [0.0.0.1] 1583 | xl.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 1584 | xiao.qq.com [0.0.0.1] 1585 | xlab.qq.com [203.205.128.167] 1586 | xd.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 1587 | wuxian.qq.com [101.226.86.182 61.151.217.46] 1588 | xian.qq.com [203.205.151.47] 1589 | xia.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 1590 | xun.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 1591 | xs.qq.com [0.0.0.1] 1592 | yo.qq.com [0.0.0.1] 1593 | xt.qq.com [203.205.151.41] 1594 | yes.qq.com [0.0.0.1] 1595 | yao.qq.com [140.207.127.117] 1596 | yin.qq.com [0.0.0.1] 1597 | ys.qq.com [0.0.0.1] 1598 | yue.qq.com [103.7.30.123] 1599 | you.qq.com [0.0.0.1] 1600 | xxxx.qq.com [0.0.0.1] 1601 | yp.qq.com [0.0.0.1] 1602 | xx.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 1603 | yr.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 1604 | yy.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 1605 | zhu.qq.com [0.0.0.1] 1606 | zion.qq.com [0.0.0.1] 1607 | yule.qq.com [103.7.30.123] 1608 | zero.qq.com [0.0.0.1] 1609 | z.qq.com [203.205.138.57 203.205.138.79 203.205.158.59 203.205.158.37 203.205.158.38] 1610 | zoo.qq.com [0.0.0.1] 1611 | zz.qq.com [0.0.0.1] 1612 | zb.qq.com [203.205.138.79 203.205.158.59 203.205.158.37 203.205.158.38 203.205.138.57] 1613 | yun.qq.com [119.28.34.128 119.28.38.179] 1614 | qh.qq.com [0.0.0.1] 1615 | nx.qq.com [0.0.0.1] 1616 | yn.qq.com [103.7.30.123] 1617 | xz.qq.com [0.0.0.1] 1618 | xj.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 1619 | web2.qq.com [203.205.219.231] 1620 | gx.qq.com [103.7.30.123] 1621 | mx2.qq.com [157.255.174.11] 1622 | vod.qq.com [0.0.0.1] 1623 | join.qq.com [183.232.93.167] 1624 | web3.qq.com [203.205.219.231] 1625 | 123.qq.com [103.7.30.123] 1626 | lian.qq.com [0.0.0.1] 1627 | mx3.qq.com [103.7.30.40] 1628 | webapp.qq.com [103.7.30.123] 1629 | 2014.qq.com [203.205.151.47] 1630 | gz.qq.com [103.7.30.123] 1631 | yc.qq.com [101.226.103.89] 1632 | webservice.qq.com [0.0.0.1] 1633 | qq.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 1634 | zh.qq.com [0.0.0.1] 1635 | 400.qq.com [0.0.0.1] 1636 | 2010.qq.com [203.205.151.47] 1637 | t7.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 1638 | zj.qq.com [203.205.151.47] 1639 | ipad.qq.com [203.205.151.47] 1640 | qd.qq.com [0.0.0.1] 1641 | zx.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 1642 | 888.qq.com [203.205.151.12] 1643 | preview.qq.com [0.0.0.1] 1644 | review.qq.com [0.0.0.1] 1645 | baike.qq.com [203.205.179.231 203.205.179.230] 1646 | webgame.qq.com [0.0.0.1] 1647 | weixin.qq.com [103.7.30.120] 1648 | jz.qq.com [58.250.137.79] 1649 | yx.qq.com [203.205.128.167] 1650 | zy.qq.com [0.0.0.1] 1651 | jy.qq.com [58.251.148.247 58.251.148.139] 1652 | jx.qq.com [103.7.30.123] 1653 | feed.qq.com [0.0.0.1] 1654 | zt.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 1655 | weibo.qq.com [184.51.15.142 184.51.15.172] 1656 | rx.qq.com [0.0.0.1] 1657 | password.qq.com [14.17.41.220] 1658 | ww2.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 1659 | school.qq.com [140.207.127.95] 1660 | player.qq.com [203.205.138.19 203.205.158.66 203.205.158.52] 1661 | yw.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 1662 | hospital.qq.com [203.205.179.230 203.205.179.231] 1663 | fashion.qq.com [203.205.151.47] 1664 | meet.qq.com [101.226.86.182 61.151.217.46] 1665 | t1.qq.com [0.0.0.1] 1666 | ebook.qq.com [101.226.103.89] 1667 | 1111.qq.com [0.0.0.1] 1668 | lz.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 1669 | xm.qq.com [203.205.151.47] 1670 | mx4.qq.com [0.0.0.1] 1671 | w5.qq.com [1.1.1.1] 1672 | 168.qq.com [0.0.0.1] 1673 | qz.qq.com [203.205.147.218] 1674 | v5.qq.com [203.205.151.41] 1675 | big5.qq.com [0.0.0.1] 1676 | zk.qq.com [203.205.138.20 203.205.138.21 203.205.158.65 203.205.158.64 203.205.158.58] 1677 | m4.qq.com [203.205.128.167] 1678 | try.qq.com [203.205.142.160] 1679 | esales.qq.com [14.17.32.248] 1680 | im2.qq.com [203.205.219.231] 1681 | report.qq.com [103.7.30.123] 1682 | oauth.qq.com [0.0.0.1] 1683 | 111.qq.com [0.0.0.1] 1684 | qr.qq.com [0.0.0.1] 1685 | ad1.qq.com [0.0.0.1] 1686 | zc.qq.com [203.205.151.21] 1687 | xq.qq.com [0.0.0.1] 1688 | 4g.qq.com [163.177.73.175 163.177.73.176 163.177.73.178 163.177.73.162] 1689 | yh.qq.com [0.0.0.1] 1690 | m5.qq.com [203.205.128.167] 1691 | c4.qq.com [0.0.0.1] 1692 | f1.qq.com [103.7.30.123] 1693 | yz.qq.com [0.0.0.1] 1694 | hebei.qq.com [203.205.151.47] 1695 | 800.qq.com [0.0.0.1] 1696 | todo.qq.com [0.0.0.1] 1697 | 114.qq.com [183.232.94.102] 1698 | shanxi.qq.com [0.0.0.1] 1699 | peixun.qq.com [0.0.0.1] 1700 | bbs1.qq.com [0.0.0.1] 1701 | lining.qq.com [0.0.0.1] 1702 | hx.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 1703 | 666.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 1704 | wj.qq.com [203.205.151.247] 1705 | xy.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 1706 | zt2.qq.com [0.0.0.1] 1707 | mov.qq.com [183.3.235.196] 1708 | 999.qq.com [0.0.0.1] 1709 | jie.qq.com [0.0.0.1] 1710 | xk.qq.com [0.0.0.1] 1711 | 777.qq.com [0.0.0.1] 1712 | c2.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 1713 | piao.qq.com [0.0.0.1] 1714 | wenwen.qq.com [58.250.137.84] 1715 | bx.qq.com [0.0.0.1] 1716 | zf.qq.com [117.144.242.111] 1717 | diy.qq.com [103.7.30.123] 1718 | kaoshi.qq.com [0.0.0.1] 1719 | yl.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 1720 | pinpai.qq.com [0.0.0.1] 1721 | exmail.qq.com [103.7.30.46] 1722 | l2.qq.com [203.205.151.51] 1723 | yb.qq.com [203.205.179.231 203.205.179.230] 1724 | hunan.qq.com [0.0.0.1] 1725 | shouji.qq.com [103.7.30.123] 1726 | miao.qq.com [0.0.0.1] 1727 | zixun.qq.com [0.0.0.1] 1728 | g2.qq.com [0.0.0.1] 1729 | shenzhen.qq.com [0.0.0.1] 1730 | yj.qq.com [101.226.86.182 61.151.217.46] 1731 | 22.qq.com [0.0.0.1] 1732 | zg.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 1733 | bq.qq.com [103.7.30.72] 1734 | iy.qq.com [0.0.0.1] 1735 | wx2.qq.com [113.96.233.139 14.17.43.34] 1736 | ditu.qq.com [203.205.128.186] 1737 | sanguo.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 1738 | gaokao.qq.com [103.7.30.123] 1739 | qf.qq.com [58.251.139.163] 1740 | zq.qq.com [0.0.0.1] 1741 | zl.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 1742 | 21.qq.com [0.0.0.1] 1743 | opinion.qq.com [0.0.0.1] 1744 | qp.qq.com [0.0.0.1] 1745 | wxtest.qq.com [203.205.143.159] 1746 | 100.qq.com [0.0.0.1] 1747 | openapi.qq.com [203.205.219.231] 1748 | yd.qq.com [203.205.142.162 203.205.151.243] 1749 | cmcc.qq.com [101.226.86.182 61.151.217.46] 1750 | ou.qq.com [0.0.0.1] 1751 | iphone.qq.com [203.205.179.230 203.205.179.231] 1752 | qk.qq.com [0.0.0.1] 1753 | qe.qq.com [0.0.0.1] 1754 | jq.qq.com [58.251.100.24] 1755 | qx.qq.com [0.0.0.1] 1756 | qj.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 1757 | zd.qq.com [203.205.179.230 203.205.179.231] 1758 | d5.qq.com [0.0.0.1] 1759 | wq.qq.com [0.0.0.1] 1760 | vo.qq.com [0.0.0.1] 1761 | vr.qq.com [119.29.180.96] 1762 | tq.qq.com [203.205.179.230 203.205.179.231] 1763 | ry.qq.com [0.0.0.1] 1764 | adx.qq.com [121.51.132.57] 1765 | jipiao.qq.com [0.0.0.1] 1766 | jiaju.qq.com [203.205.151.47] 1767 | ay.qq.com [0.0.0.1] 1768 | dq.qq.com [0.0.0.1] 1769 | qo.qq.com [0.0.0.1] 1770 | 1314.qq.com [112.90.78.171] 1771 | xw.qq.com [203.205.151.47] 1772 | daohang.qq.com [203.205.128.11] 1773 | xin.qq.com [58.251.148.139 58.251.148.247] 1774 | fund.qq.com [103.7.30.123] 1775 | notice.qq.com [183.61.51.29] 1776 | fanyi.qq.com [203.205.179.231 203.205.179.230] 1777 | sign.qq.com [0.0.0.1] 1778 | unicom.qq.com [101.226.86.182 61.151.217.46] 1779 | hlj.qq.com [103.7.30.123] 1780 | agj.qq.com [61.151.229.203 61.151.225.225] 1781 | aid.qq.com [58.251.81.193] 1782 | b5.qq.com [112.90.77.139] 1783 | gongyi.qq.com [23.219.132.75] 1784 | 51.qq.com [0.0.0.1] 1785 | aie.qq.com [0.0.0.1] 1786 | ym.qq.com [203.205.138.20 203.205.138.21 203.205.158.65 203.205.158.64 203.205.158.58] 1787 | qn.qq.com [0.0.0.1] 1788 | outlet.qq.com [203.205.138.57 203.205.138.79 203.205.158.59 203.205.158.37 203.205.158.38] 1789 | anx.qq.com [203.205.128.167] 1790 | topic.qq.com [101.226.103.89] 1791 | dalian.qq.com [203.205.151.47] 1792 | aow.qq.com [0.0.0.1] 1793 | album.qq.com [119.28.33.100] 1794 | fanli.qq.com [219.133.60.197] 1795 | qw.qq.com [0.0.0.1] 1796 | ql.qq.com [58.247.214.157] 1797 | vip2.qq.com [203.205.142.160] 1798 | vip1.qq.com [203.205.142.160] 1799 | yi.qq.com [0.0.0.1] 1800 | mgame.qq.com [58.251.148.139 58.251.148.247] 1801 | shenyang.qq.com [203.205.179.231 203.205.179.230] 1802 | t3.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 1803 | aot.qq.com [0.0.0.1] 1804 | atp.qq.com [101.89.238.242] 1805 | avd.qq.com [203.205.128.167] 1806 | axy.qq.com [0.0.0.1] 1807 | awp.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 1808 | bgc.qq.com [0.0.0.1] 1809 | aoe.qq.com [203.205.138.21 203.205.158.65 203.205.158.64 203.205.158.58 203.205.138.20] 1810 | bbq.qq.com [0.0.0.1] 1811 | vy.qq.com [101.226.86.182 61.151.217.46] 1812 | ayn.qq.com [0.0.0.1] 1813 | bid.qq.com [0.0.0.1] 1814 | apk.qq.com [203.205.219.231] 1815 | blm.qq.com [61.151.217.46 101.226.86.182] 1816 | bot.qq.com [0.0.0.1] 1817 | avg.qq.com [203.205.138.21 203.205.158.65 203.205.158.64 203.205.158.58 203.205.138.20] 1818 | byb.qq.com [0.0.0.1] 1819 | bsw.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 1820 | bns.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 1821 | bnn.qq.com [0.0.0.1] 1822 | cdj.qq.com [0.0.0.1] 1823 | byd.qq.com [0.0.0.1] 1824 | aov.qq.com [203.205.158.58 203.205.138.20 203.205.138.21 203.205.158.65 203.205.158.64] 1825 | bnb.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 1826 | chd.qq.com [0.0.0.1] 1827 | cfx.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 1828 | cfw.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 1829 | cpm.qq.com [58.251.80.193] 1830 | bsm.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 1831 | wd.qq.com [203.205.128.167] 1832 | cok.qq.com [0.0.0.1] 1833 | clx.qq.com [0.0.0.1] 1834 | cul.qq.com [203.205.151.47] 1835 | cdk.qq.com [203.205.151.26] 1836 | cfg.qq.com [0.0.0.1] 1837 | cji.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 1838 | bzj.qq.com [0.0.0.1] 1839 | daa.qq.com [111.161.53.75] 1840 | cjo.qq.com [0.0.0.1] 1841 | coa.qq.com [203.205.147.197] 1842 | ddp.qq.com [0.0.0.1] 1843 | ddz.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 1844 | cqb.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 1845 | cuc.qq.com [183.232.88.156] 1846 | dgo.qq.com [0.0.0.1] 1847 | dkf.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 1848 | dmx.qq.com [0.0.0.1] 1849 | cva.qq.com [0.0.0.1] 1850 | dnf.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 1851 | dhd.qq.com [0.0.0.1] 1852 | dnw.qq.com [0.0.0.1] 1853 | dmp.qq.com [121.51.141.65] 1854 | ctx.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 1855 | dqy.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 1856 | dsf.qq.com [59.37.96.248] 1857 | dxq.qq.com [0.0.0.1] 1858 | dsx.qq.com [58.250.9.40] 1859 | dyq.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 1860 | dzs.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 1861 | eim.qq.com [112.90.77.139] 1862 | egc.qq.com [112.90.77.139] 1863 | dzm.qq.com [101.226.86.182 61.151.217.46] 1864 | dys.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 1865 | fbs.qq.com [101.226.103.89] 1866 | fav.qq.com [163.177.90.19] 1867 | fep.qq.com [193.112.39.116] 1868 | fai.qq.com [58.251.81.29] 1869 | eti.qq.com [203.205.128.167] 1870 | ffo.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 1871 | exc.qq.com [0.0.0.1] 1872 | fcz.qq.com [0.0.0.1] 1873 | fsq.qq.com [183.3.233.192] 1874 | fom.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 1875 | ftg.qq.com [0.0.0.1] 1876 | foe.qq.com [203.205.151.51] 1877 | gbs.qq.com [0.0.0.1] 1878 | gcd.qq.com [0.0.0.1] 1879 | ffm.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 1880 | gfm.qq.com [58.247.214.117 61.129.7.22] 1881 | fwt.qq.com [0.0.0.1] 1882 | fwc.qq.com [0.0.0.1] 1883 | gls.qq.com [119.147.154.234] 1884 | gvg.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 1885 | got.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 1886 | gok.qq.com [203.205.138.229 203.205.158.39 203.205.138.230 203.205.158.49 203.205.138.225] 1887 | gtv.qq.com [0.0.0.1] 1888 | fxq.qq.com [0.0.0.1] 1889 | gwm.qq.com [58.250.136.59] 1890 | gzh.qq.com [58.251.81.184] 1891 | hdl.qq.com [203.205.158.37 203.205.158.38 203.205.138.57 203.205.138.79 203.205.158.59] 1892 | hdx.qq.com [0.0.0.1] 1893 | hdm.qq.com [1.1.1.1] 1894 | hjm.qq.com [0.0.0.1] 1895 | hqg.qq.com [0.0.0.1] 1896 | hsy.qq.com [0.0.0.1] 1897 | hbp.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 1898 | huo.qq.com [0.0.0.1] 1899 | hwz.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 1900 | ibo.qq.com [58.251.148.247 58.251.148.139] 1901 | hui.qq.com [0.0.0.1] 1902 | hxy.qq.com [0.0.0.1] 1903 | hzp.qq.com [119.28.33.100] 1904 | iot.qq.com [203.205.151.26] 1905 | icj.qq.com [103.7.30.123] 1906 | ioe.qq.com [157.255.245.149] 1907 | ith.qq.com [0.0.0.1] 1908 | idu.qq.com [101.226.86.182 61.151.217.46] 1909 | ixg.qq.com [203.205.219.231] 1910 | iov.qq.com [0.0.0.1] 1911 | icq.qq.com [203.205.219.231] 1912 | iom.qq.com [14.17.57.231] 1913 | iwx.qq.com [0.0.0.1] 1914 | ipg.qq.com [0.0.0.1] 1915 | iqc.qq.com [0.0.0.1] 1916 | jlz.qq.com [0.0.0.1] 1917 | jfq.qq.com [0.0.0.1] 1918 | jqk.qq.com [0.0.0.1] 1919 | kad.qq.com [203.205.219.231] 1920 | jwt.qq.com [0.0.0.1] 1921 | jhx.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 1922 | kfy.qq.com [203.205.158.36] 1923 | kkk.qq.com [0.0.0.1] 1924 | kok.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 1925 | jpy.qq.com [0.0.0.1] 1926 | kol.qq.com [203.205.158.35 203.205.158.53 203.205.158.54 203.205.158.34 203.205.138.71 203.205.158.55 203.205.158.56] 1927 | kdm.qq.com [123.151.65.198] 1928 | kta.qq.com [0.0.0.1] 1929 | jsq.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 1930 | kxg.qq.com [0.0.0.1] 1931 | loc.qq.com [0.0.0.1] 1932 | lbs.qq.com [203.205.128.186] 1933 | lol.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 1934 | lrs.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 1935 | lzg.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 1936 | lsy.qq.com [0.0.0.1] 1937 | lsw.qq.com [203.205.138.71 203.205.158.55 203.205.158.56 203.205.158.35 203.205.158.53 203.205.158.54 203.205.158.34] 1938 | mdv.qq.com [0.0.0.1] 1939 | mow.qq.com [0.0.0.1] 1940 | lvs.qq.com [0.0.0.1] 1941 | lsj.qq.com [203.205.158.58 203.205.138.20 203.205.138.21 203.205.158.65 203.205.158.64] 1942 | mcn.qq.com [203.205.151.12] 1943 | mvm.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 1944 | lpl.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 1945 | mtg.qq.com [203.205.138.21 203.205.158.65 203.205.158.64 203.205.158.58 203.205.138.20] 1946 | lwx.qq.com [0.0.0.1] 1947 | lqs.qq.com [0.0.0.1] 1948 | mgp.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 1949 | mzj.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 1950 | mym.qq.com [0.0.0.1] 1951 | myd.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 1952 | mzy.qq.com [0.0.0.1] 1953 | mtk.qq.com [163.177.73.175 163.177.73.176 163.177.73.178 163.177.73.162] 1954 | mmo.qq.com [0.0.0.1] 1955 | myr.qq.com [0.0.0.1] 1956 | mxt.qq.com [183.61.39.212] 1957 | mxm.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 1958 | lsg.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 1959 | nlu.qq.com [183.36.108.162] 1960 | mxd.qq.com [203.205.158.37 203.205.158.38 203.205.138.57 203.205.138.79 203.205.158.59] 1961 | npc.qq.com [0.0.0.1] 1962 | nzy.qq.com [0.0.0.1] 1963 | nzw.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 1964 | omg.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 1965 | pbk.qq.com [203.205.147.153] 1966 | piu.qq.com [140.143.187.85] 1967 | pdk.qq.com [203.205.158.58 203.205.138.20 203.205.138.21 203.205.158.65 203.205.158.64] 1968 | owo.qq.com [0.0.0.1] 1969 | ppm.qq.com [0.0.0.1] 1970 | prj.qq.com [183.232.88.156] 1971 | pvp.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 1972 | pvz.qq.com [0.0.0.1] 1973 | pve.qq.com [0.0.0.1] 1974 | qal.qq.com [0.0.0.1] 1975 | qcp.qq.com [58.250.136.106] 1976 | qcs.qq.com [0.0.0.1] 1977 | qfm.qq.com [0.0.0.1] 1978 | qgc.qq.com [58.247.214.157] 1979 | ppt.qq.com [0.0.0.1] 1980 | qaq.qq.com [0.0.0.1] 1981 | qgo.qq.com [0.0.0.1] 1982 | qim.qq.com [203.205.151.14] 1983 | qlz.qq.com [203.205.158.37 203.205.158.38 203.205.138.57 203.205.138.79 203.205.158.59] 1984 | qoo.qq.com [0.0.0.1] 1985 | qav.qq.com [0.0.0.1] 1986 | qie.qq.com [58.251.81.223] 1987 | qro.qq.com [0.0.0.1] 1988 | qsl.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 1989 | qqx.qq.com [0.0.0.1] 1990 | qiu.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 1991 | qqs.qq.com [0.0.0.1] 1992 | qqd.qq.com [0.0.0.1] 1993 | qdd.qq.com [0.0.0.1] 1994 | qun.qq.com [203.205.142.168] 1995 | qwe.qq.com [0.0.0.1] 1996 | qvq.qq.com [203.205.151.14] 1997 | qme.qq.com [203.205.219.231] 1998 | qos.qq.com [203.205.219.231] 1999 | qzs.qq.com [203.205.138.57 203.205.138.79 203.205.158.59 203.205.158.37 203.205.158.38] 2000 | qyj.qq.com [0.0.0.1] 2001 | qlf.qq.com [203.205.151.26] 2002 | qqt.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 2003 | qqq.qq.com [203.205.151.26] 2004 | qyz.qq.com [0.0.0.1] 2005 | ryz.qq.com [0.0.0.1] 2006 | sgz.qq.com [0.0.0.1] 2007 | slp.qq.com [0.0.0.1] 2008 | rtb.qq.com [163.177.68.216] 2009 | snk.qq.com [203.205.151.54] 2010 | sqr.qq.com [0.0.0.1] 2011 | sqj.qq.com [61.151.217.46 101.226.86.182] 2012 | stg.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 2013 | sqs.qq.com [0.0.0.1] 2014 | sqm.qq.com [0.0.0.1] 2015 | tbi.qq.com [0.0.0.1] 2016 | syb.qq.com [203.205.158.63 203.205.158.62 203.205.158.60 203.205.158.61] 2017 | tdm.qq.com [123.207.192.20] 2018 | tfp.qq.com [0.0.0.1] 2019 | tds.qq.com [0.0.0.1] 2020 | szx.qq.com [0.0.0.1] 2021 | tgd.qq.com [58.251.81.194] 2022 | sng.qq.com [203.205.138.57 203.205.138.79 203.205.158.59 203.205.158.37 203.205.158.38] 2023 | tgs.qq.com [163.177.71.179 58.250.137.43] 2024 | tgb.qq.com [0.0.0.1] 2025 | tgr.qq.com [0.0.0.1] 2026 | tig.qq.com [183.3.235.209] 2027 | tld.qq.com [0.0.0.1] 2028 | tgi.qq.com [122.152.211.78] 2029 | mdf.qq.com [0.0.0.1] 2030 | sxd.qq.com [0.0.0.1] 2031 | tlj.qq.com [0.0.0.1] 2032 | tgl.qq.com [203.205.158.59 203.205.158.37 203.205.158.38 203.205.138.57 203.205.138.79] 2033 | swy.qq.com [203.205.138.20 203.205.138.21 203.205.158.65 203.205.158.64 203.205.158.58] 2034 | tpt.qq.com [0.0.0.1] 2035 | tmg.qq.com [0.0.0.1] 2036 | sqq.qq.com [58.251.148.139 58.251.148.247] 2037 | tgp.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 2038 | tod.qq.com [183.232.88.155] 2039 | tmq.qq.com [203.205.128.169 203.205.128.168] 2040 | tdf.qq.com [203.205.179.231 203.205.179.230] 2041 | tcg.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 2042 | tnw.qq.com [203.205.151.47] 2043 | ttq.qq.com [183.61.47.197] 2044 | tmt.qq.com [203.205.158.37 203.205.158.38 203.205.138.57 203.205.138.79 203.205.158.59] 2045 | thr.qq.com [203.205.151.47] 2046 | lxf.qq.com [0.0.0.1] 2047 | txs.qq.com [0.0.0.1] 2048 | txz.qq.com [103.7.30.66] 2049 | tzx.qq.com [0.0.0.1] 2050 | tra.qq.com [0.0.0.1] 2051 | ued.qq.com [183.232.88.156] 2052 | txv.qq.com [0.0.0.1] 2053 | tpg.qq.com [203.205.151.51] 2054 | uin.qq.com [14.17.42.64] 2055 | mjz.qq.com [0.0.0.1] 2056 | ure.qq.com [0.0.0.1] 2057 | ugc.qq.com [58.247.214.51] 2058 | txl.qq.com [203.205.151.210] 2059 | vii.qq.com [0.0.0.1] 2060 | vgo.qq.com [140.143.177.222] 2061 | qtv.qq.com [0.0.0.1] 2062 | voc.qq.com [58.250.9.35] 2063 | vmp.qq.com [140.207.54.57] 2064 | vlp.qq.com [203.205.142.160] 2065 | wcz.qq.com [0.0.0.1] 2066 | wed.qq.com [203.205.219.231] 2067 | wex.qq.com [0.0.0.1] 2068 | wkd.qq.com [203.205.142.147] 2069 | wcg.qq.com [23.210.215.82 23.210.215.59] 2070 | wjz.qq.com [61.151.229.203 61.151.225.225] 2071 | wlj.qq.com [0.0.0.1] 2072 | wmu.qq.com [0.0.0.1] 2073 | wpd.qq.com [103.7.30.52] 2074 | wog.qq.com [0.0.0.1] 2075 | wpa.qq.com [58.251.100.24] 2076 | wxz.qq.com [0.0.0.1] 2077 | wxg.qq.com [0.0.0.1] 2078 | wii.qq.com [14.18.245.238] 2079 | wxn.qq.com [23.219.132.75] 2080 | wxy.qq.com [203.205.151.14 203.205.151.107] 2081 | woa.qq.com [203.205.151.50] 2082 | wwq.qq.com [183.232.95.68] 2083 | wns.qq.com [203.205.128.112] 2084 | wmx.qq.com [157.255.192.122] 2085 | wzq.qq.com [0.0.0.1] 2086 | xcx.qq.com [0.0.0.1] 2087 | wos.qq.com [203.205.219.231] 2088 | xgs.qq.com [0.0.0.1] 2089 | xgw.qq.com [0.0.0.1] 2090 | xlg.qq.com [0.0.0.1] 2091 | xlx.qq.com [0.0.0.1] 2092 | woc.qq.com [0.0.0.1] 2093 | xla.qq.com [58.251.148.247 58.251.148.139] 2094 | xdf.qq.com [0.0.0.1] 2095 | xqn.qq.com [0.0.0.1] 2096 | xfh.qq.com [0.0.0.1] 2097 | xue.qq.com [0.0.0.1] 2098 | xti.qq.com [203.205.128.167] 2099 | wxm.qq.com [0.0.0.1] 2100 | xxy.qq.com [0.0.0.1] 2101 | xls.qq.com [0.0.0.1] 2102 | xyq.qq.com [0.0.0.1] 2103 | xyk.qq.com [0.0.0.1] 2104 | yaq.qq.com [203.205.179.231 203.205.179.230] 2105 | xyh.qq.com [58.251.82.189] 2106 | xzq.qq.com [183.61.39.17] 2107 | xyx.qq.com [0.0.0.1] 2108 | ycd.qq.com [58.251.81.199] 2109 | xsm.qq.com [0.0.0.1] 2110 | xly.qq.com [203.205.158.38 203.205.138.57 203.205.138.79 203.205.158.59 203.205.158.37] 2111 | xxz.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 2112 | xxl.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 2113 | xqq.qq.com [203.205.128.161] 2114 | xyj.qq.com [203.205.158.60 203.205.158.61 203.205.158.63 203.205.158.62] 2115 | yjs.qq.com [0.0.0.1] 2116 | yld.qq.com [203.205.158.58 203.205.138.20 203.205.138.21 203.205.158.65 203.205.158.64] 2117 | ycg.qq.com [203.205.151.50] 2118 | yhy.qq.com [203.205.138.57 203.205.138.79 203.205.158.59 203.205.158.37 203.205.158.38] 2119 | yoo.qq.com [203.205.138.71 203.205.158.55 203.205.158.56 203.205.158.35 203.205.158.53 203.205.158.54 203.205.158.34] 2120 | ytj.qq.com [0.0.0.1] 2121 | ypc.qq.com [0.0.0.1] 2122 | xzs.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 2123 | yyb.qq.com [0.0.0.1] 2124 | yxs.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 2125 | yxd.qq.com [0.0.0.1] 2126 | yzg.qq.com [0.0.0.1] 2127 | yxj.qq.com [183.3.239.151] 2128 | yxf.qq.com [0.0.0.1] 2129 | yxq.qq.com [112.90.77.140] 2130 | zcl.qq.com [0.0.0.1] 2131 | zhl.qq.com [0.0.0.1] 2132 | zjh.qq.com [0.0.0.1] 2133 | zhw.qq.com [0.0.0.1] 2134 | zhx.qq.com [0.0.0.1] 2135 | zhs.qq.com [0.0.0.1] 2136 | zmn.qq.com [23.219.132.75] 2137 | zsg.qq.com [0.0.0.1] 2138 | zsd.qq.com [113.108.21.117] 2139 | zsj.qq.com [0.0.0.1] 2140 | ztj.qq.com [203.205.158.62 203.205.158.60 203.205.158.61 203.205.158.63] 2141 | ztc.qq.com [0.0.0.1] 2142 | zou.qq.com [0.0.0.1] 2143 | zyx.qq.com [58.251.112.98 58.251.112.145 58.251.112.221 58.251.112.222 113.96.230.252 113.96.230.231 113.96.230.232 113.96.230.239 113.96.230.240 113.96.230.241 113.96.230.243 113.96.230.248 113.96.230.230 123.151.43.46 111.161.83.217 14.215.154.153] 2144 | zys.qq.com [0.0.0.1] 2145 | zsm.qq.com [0.0.0.1] 2146 | ysj.qq.com [203.205.158.61 203.205.158.63 203.205.158.62 203.205.158.60] 2147 | -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import ( 4 | "os" 5 | "github.com/fengdingbo/subdomain-scanner/lib" 6 | "flag" 7 | "log" 8 | "fmt" 9 | ) 10 | 11 | func main() { 12 | o := loadOptions() 13 | o.PrintOptions() 14 | 15 | if (len(o.ScanDomainList) > 0) { 16 | for _, v := range o.ScanDomainList { 17 | o.Log = fmt.Sprintf("log/%s.txt", v) 18 | o.Domain = v 19 | run(o) 20 | } 21 | } 22 | } 23 | 24 | func loadOptions() *lib.Options { 25 | o := lib.New() 26 | flag.IntVar(&o.Threads, "t", 200, "Num of scan threads") 27 | flag.IntVar(&o.Depth, "depth", 1, "Scan sub domain depth. range[>=1]") 28 | flag.StringVar(&o.Domain, "d", "", "The target Domain") 29 | flag.StringVar(&o.Dict, "f", "dict/subnames_full.txt", "File contains new line delimited subs") 30 | flag.BoolVar(&o.Help, "h", false, "Show this help message and exit") 31 | flag.StringVar(&o.Log, "o", "", "Output file to write results to (defaults to ./log/{target}).txt") 32 | flag.StringVar(&o.DNSServer, "dns", "8.8.8.8/8.8.4.4", "DNS global server") 33 | flag.BoolVar(&o.WildcardDomain, "fw", true, "Force scan with wildcard domain") 34 | flag.BoolVar(&o.AXFC, "axfr", true, "DNS Zone Transfer Protocol (AXFR) of RFC 5936") 35 | flag.StringVar(&o.ScanListFN, "l", "", "The target Domain in file") 36 | flag.Parse() 37 | 38 | if err := o.Validate(); err != nil { 39 | log.Printf("[!] %s", err) 40 | os.Exit(0) 41 | } 42 | 43 | return o 44 | } 45 | 46 | func run(o *lib.Options) { 47 | this := lib.NewScanner(o) 48 | log.Printf("[+] Validate DNS servers...") 49 | if !this.TestDNSServer() { 50 | log.Println("[!] DNS servers unreliable") 51 | os.Exit(0) 52 | } 53 | log.Printf("[+] Found DNS Server %s", o.DNSServer) 54 | 55 | // 检查是否存在DNS zone transfer 56 | if o.AXFC { 57 | log.Printf("[+] Validate AXFR of DNS zone transfer ") 58 | if axfr, err := this.TestAXFR(o.Domain); err == nil { 59 | for _, v := range axfr { 60 | fmt.Println(v) 61 | } 62 | log.Printf("[+] Found DNS Server exists DNS zone transfer") 63 | log.Printf("The output result file is %s\n", o.Log) 64 | os.Exit(0) 65 | } 66 | } 67 | 68 | this.Start() 69 | 70 | } 71 | --------------------------------------------------------------------------------