rails_spider 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE +165 -0
- data/README.md +33 -0
- data/app/assets/config/the_spider_manifest.js +4 -0
- data/app/assets/javascripts/the_spider/application.js +1 -0
- data/app/assets/stylesheets/the_spider/application.css +4 -0
- data/app/controllers/the_spider/application_controller.rb +9 -0
- data/app/controllers/the_spider/locals_controller.rb +62 -0
- data/app/controllers/the_spider/works_controller.rb +60 -0
- data/app/helpers/the_spider/application_helper.rb +4 -0
- data/app/helpers/the_spider/locals_helper.rb +4 -0
- data/app/helpers/the_spider/works_helper.rb +4 -0
- data/app/jobs/the_spider/application_job.rb +4 -0
- data/app/jobs/the_spider/parser_job.rb +11 -0
- data/app/jobs/the_spider/work_job.rb +11 -0
- data/app/mailers/the_spider/application_mailer.rb +6 -0
- data/app/models/rails_spider/application_record.rb +5 -0
- data/app/models/rails_spider/cookie.rb +9 -0
- data/app/models/rails_spider/failed_url.rb +7 -0
- data/app/models/rails_spider/local.rb +14 -0
- data/app/models/rails_spider/work.rb +24 -0
- data/app/views/layouts/the_spider/application.html.erb +14 -0
- data/app/views/the_spider/locals/_form.html.erb +17 -0
- data/app/views/the_spider/locals/edit.html.erb +6 -0
- data/app/views/the_spider/locals/index.html.erb +25 -0
- data/app/views/the_spider/locals/new.html.erb +5 -0
- data/app/views/the_spider/locals/show.html.erb +4 -0
- data/app/views/the_spider/works/_form.html.erb +9 -0
- data/app/views/the_spider/works/edit.html.erb +6 -0
- data/app/views/the_spider/works/index.html.erb +44 -0
- data/app/views/the_spider/works/new.html.erb +5 -0
- data/app/views/the_spider/works/show.html.erb +4 -0
- data/config/routes.rb +8 -0
- data/config/schedule.rb +35 -0
- data/db/migrate/20170502153051_rails_spider_init.rb +38 -0
- data/lib/config/config.rb +27 -0
- data/lib/config/keywords.json +22 -0
- data/lib/config/proxy.json +10 -0
- data/lib/helper/helper.rb +6 -0
- data/lib/helper/location_helper.rb +46 -0
- data/lib/helper/price_helper.rb +23 -0
- data/lib/helper/tag_helper.rb +17 -0
- data/lib/helper/text_helper.rb +41 -0
- data/lib/helper/time_helper.rb +140 -0
- data/lib/logger.rb +146 -0
- data/lib/proxy/allproxylists.txt +2366 -0
- data/lib/proxy/proxy.rb +216 -0
- data/lib/proxy/proxylists.txt +625 -0
- data/lib/rails_spider.rb +10 -0
- data/lib/rails_spider/engine.rb +9 -0
- data/lib/rails_spider/fetchers.rb +2 -0
- data/lib/rails_spider/fetchers/base.rb +146 -0
- data/lib/rails_spider/fetchers/mechanize.rb +83 -0
- data/lib/rails_spider/fetchers/witar.rb +73 -0
- data/lib/rails_spider/parser.rb +14 -0
- data/lib/rails_spider/parser/szlawyers.rb +26 -0
- data/lib/rails_spider/resource.rb +58 -0
- data/lib/rails_spider/strategies.rb +6 -0
- data/lib/rails_spider/version.rb +3 -0
- data/lib/sync_qiniu.rb +35 -0
- data/lib/sync_qiniu/getimages.rb +98 -0
- data/lib/sync_qiniu/getimages_info.rb +37 -0
- data/lib/sync_qiniu/getlocation.rb +48 -0
- data/lib/sync_qiniu/getproxy.rb +95 -0
- data/lib/tasks/the_spider_tasks.rake +4 -0
- data/rakefile +284 -0
- metadata +165 -0
data/lib/proxy/proxy.rb
ADDED
@@ -0,0 +1,216 @@
|
|
1
|
+
require 'mechanize'
|
2
|
+
|
3
|
+
module EventSpider
|
4
|
+
class Proxy
|
5
|
+
#proxy list, http://proxy.com.ru/
|
6
|
+
attr_accessor :proxy, :agent
|
7
|
+
def initialize(proxys=nil)
|
8
|
+
@proxy = proxys if proxys
|
9
|
+
@agent = Mechanize.new
|
10
|
+
@agent.open_timeout = 50
|
11
|
+
end
|
12
|
+
|
13
|
+
def self.proxy_list
|
14
|
+
proxy_arr = []
|
15
|
+
File.open(File.expand_path("../proxylists.txt", __FILE__), 'r').each_line do |line|
|
16
|
+
ip, port = line.strip.split(':')
|
17
|
+
proxy_arr << {ip: ip.strip, port: port.to_i}
|
18
|
+
end
|
19
|
+
proxy_arr.uniq
|
20
|
+
end
|
21
|
+
|
22
|
+
def validate_proxy(proxy_array, host='http://www.douban.com')
|
23
|
+
proxys_arr = []
|
24
|
+
proxy_array.each do |proxy_hash|
|
25
|
+
#break if proxys.size >= 400
|
26
|
+
page = get_page_from(host, proxy_hash, nil,1)
|
27
|
+
if page
|
28
|
+
puts "validate #{proxy_hash}"
|
29
|
+
proxys_arr << proxy_hash
|
30
|
+
else
|
31
|
+
puts "#{proxy_hash} not validated"
|
32
|
+
end
|
33
|
+
end
|
34
|
+
proxys_arr
|
35
|
+
end
|
36
|
+
|
37
|
+
def write_proxy_to_file(proxys)
|
38
|
+
file_name = 'proxylists.txt'
|
39
|
+
file_path = File.expand_path('../', __FILE__)
|
40
|
+
file = "#{file_path}/#{file_name}"
|
41
|
+
unless proxys.blank?
|
42
|
+
s = ''
|
43
|
+
proxys.uniq.each{|proxy| s += "#{proxy[:ip]}:#{proxy[:port]}\n"}
|
44
|
+
rw_model = proxys.size >= 1000 ? 'w' : 'a+'
|
45
|
+
File.open(file, rw_model) do |f|
|
46
|
+
f.puts s
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
# http://www.xici.net.co/nn/
|
52
|
+
def get_xici_proxy
|
53
|
+
proxys = []
|
54
|
+
url = 'http://www.xici.net.co/nn/'
|
55
|
+
(0..10).each do |i|
|
56
|
+
page_url = i >= 1 ? "#{url}#{i}" : url
|
57
|
+
puts page_url
|
58
|
+
page = get_page_from(page_url)
|
59
|
+
next proxys if page.nil?
|
60
|
+
trs = page.search('#ip_list tr')
|
61
|
+
trs.shift
|
62
|
+
trs.each do |tr|
|
63
|
+
tds = tr.search('td')
|
64
|
+
proxy_hash = {ip: tds[1].text.strip, port: tds[2].text.strip}
|
65
|
+
puts proxy_hash
|
66
|
+
proxys << proxy_hash
|
67
|
+
end
|
68
|
+
end
|
69
|
+
proxys
|
70
|
+
end
|
71
|
+
|
72
|
+
# http://www.youdaili.cn/Daili/guonei/
|
73
|
+
def get_youdaili_proxy
|
74
|
+
proxys = []
|
75
|
+
urls = ['http://www.youdaili.cn/Daili/http/',
|
76
|
+
'http://www.youdaili.cn/Daili/guonei/',
|
77
|
+
'http://www.youdaili.cn/Daili/guowai/']
|
78
|
+
puts 'get youdaili page link'
|
79
|
+
header = {
|
80
|
+
'User-Agent' => 'Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; T-Mobile myTouch 3G Slide Build/GRI40) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1',
|
81
|
+
'Accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
|
82
|
+
'Accept-Language' => 'en-gb,en;q=0.5',
|
83
|
+
'Accept-Encoding' => 'gzip,deflate',
|
84
|
+
'Accept-Charset' => 'ISO-8859-1,utf-8;q=0.7,*;q=0.7',
|
85
|
+
'Keep-Alive' => '115',
|
86
|
+
'Connection' => 'keep-alive',
|
87
|
+
'Cache-Control' => 'max-age=0',
|
88
|
+
'Referer' => 'http://www.baidu.com'
|
89
|
+
}
|
90
|
+
urls.each do |url|
|
91
|
+
puts "from youdaili page #{url}"
|
92
|
+
page = get_page_from(url, nil, header)
|
93
|
+
next if page.nil?
|
94
|
+
page.search('.newslist_line > li > a').each_with_index do |link, index|
|
95
|
+
if index <= 2
|
96
|
+
a_href = link.attr('href')
|
97
|
+
puts "find proxy list page #{a_href}"
|
98
|
+
proxy_page = get_page_from(a_href, nil, header)
|
99
|
+
next if proxy_page.nil?
|
100
|
+
proxys += youdaili_proxy(proxy_page)
|
101
|
+
puts "find proxy #{proxys.count}"
|
102
|
+
end
|
103
|
+
end
|
104
|
+
end
|
105
|
+
proxys
|
106
|
+
end
|
107
|
+
|
108
|
+
def youdaili_proxy(page)
|
109
|
+
proxys = youdaili_ip(page)
|
110
|
+
puts "get proxy in current page #{proxys.count}"
|
111
|
+
page_links = []
|
112
|
+
# 获取分页并抓取其中的IP
|
113
|
+
pagelist = page.search('.pagelist li a')
|
114
|
+
pagelist.shift
|
115
|
+
pagelist.each do |lia|
|
116
|
+
if lia.attributes['href'].value =~ /\d+\_\d\.html/
|
117
|
+
page_links << lia.attributes['href'].value
|
118
|
+
end
|
119
|
+
end
|
120
|
+
pagelist_uri = page.uri.to_s.gsub(/\d+\.html/, '')
|
121
|
+
page_links.uniq.each do |link|
|
122
|
+
pagelist_url = "#{pagelist_uri}#{link}"
|
123
|
+
puts "paginate page #{pagelist_url}"
|
124
|
+
page = get_page_from(pagelist_url)
|
125
|
+
next if page.nil?
|
126
|
+
proxys += youdaili_ip(page)
|
127
|
+
puts "proxy size #{proxys.count}"
|
128
|
+
end
|
129
|
+
proxys
|
130
|
+
end
|
131
|
+
|
132
|
+
def youdaili_ip(page)
|
133
|
+
proxys = []
|
134
|
+
page.search('.cont_font p').first.children.text.strip.split("\r\n").each do |iptext|
|
135
|
+
ip, port = iptext.split('@HTTP#').first.split(':')
|
136
|
+
proxys << {ip: ip, port: port.to_i}
|
137
|
+
end
|
138
|
+
proxys
|
139
|
+
end
|
140
|
+
|
141
|
+
# http://proxy.com.ru/list_1.html
|
142
|
+
# http://www.free-proxy-list.net/
|
143
|
+
def get_proxy_com
|
144
|
+
proxys = []
|
145
|
+
url = 'http://proxy.com.ru/list_1.html'
|
146
|
+
page = get_page_from(url)
|
147
|
+
page_indexs = []
|
148
|
+
page.links.each do |link|
|
149
|
+
if link.text =~ /\[\d+\]/
|
150
|
+
index = link.text.strip.match(/\[(\d+)\]/)
|
151
|
+
page_indexs << index[1] if index
|
152
|
+
end
|
153
|
+
end
|
154
|
+
page_indexs.each do |i|
|
155
|
+
page = agent.get("http://proxy.com.ru/list_#{i}.html")
|
156
|
+
next if page.nil?
|
157
|
+
page.search('td > font > table').first.children.search('tr').each_with_index do |tr, index|
|
158
|
+
if index > 0
|
159
|
+
proxys << {ip: tr.children[2].text, port: tr.children[3].text.to_i}
|
160
|
+
end
|
161
|
+
end
|
162
|
+
end
|
163
|
+
|
164
|
+
proxys
|
165
|
+
end
|
166
|
+
|
167
|
+
def self.get_allproxylists
|
168
|
+
proxys = []
|
169
|
+
File.open(File.expand_path("../allproxylists.txt", __FILE__), 'r').each_line do |line|
|
170
|
+
ip, port = line.split('@HTTP#').first.split(':')
|
171
|
+
proxys << {ip: ip, port: port.to_i}
|
172
|
+
end
|
173
|
+
proxys.uniq
|
174
|
+
end
|
175
|
+
|
176
|
+
def get_page_from(url, proxy_hash=nil, header=nil, repeat=5)
|
177
|
+
if proxy_hash
|
178
|
+
@agent.set_proxy proxy_hash[:ip], proxy_hash[:port]
|
179
|
+
elsif @proxy
|
180
|
+
proxy_hash = @proxy[rand(@proxy.size)]
|
181
|
+
@agent.set_proxy proxy_hash[:ip], proxy_hash[:port]
|
182
|
+
end
|
183
|
+
if header
|
184
|
+
@agent.request_headers = header
|
185
|
+
else
|
186
|
+
@agent.request_headers = {
|
187
|
+
"Accept" => "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8",
|
188
|
+
"Accept-Encoding" => "gzip,deflate,sdch",
|
189
|
+
"Accept-Language" => "en-US,en;q=0.8",
|
190
|
+
"Cache-Control" => "max-age=0",
|
191
|
+
"Connection" => "keep-alive",
|
192
|
+
"User-Agent" => "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML,like Gecko) Chrome/33.0.1750.152 Safari/537.36"
|
193
|
+
}
|
194
|
+
end
|
195
|
+
begin
|
196
|
+
puts @agent.proxy_addr
|
197
|
+
@agent.get(url)
|
198
|
+
rescue => e
|
199
|
+
i ||= 0
|
200
|
+
if i < repeat
|
201
|
+
i += 1
|
202
|
+
puts "Retry #{i} by #{url}"
|
203
|
+
if @proxy && proxy.nil?
|
204
|
+
proxy_hash = @proxy[rand(@proxy.size)]
|
205
|
+
@agent.set_proxy proxy_hash[:ip], proxy_hash[:port]
|
206
|
+
end
|
207
|
+
retry
|
208
|
+
else
|
209
|
+
puts 'can not get page'
|
210
|
+
return
|
211
|
+
end
|
212
|
+
end
|
213
|
+
end
|
214
|
+
|
215
|
+
end
|
216
|
+
end
|
@@ -0,0 +1,625 @@
|
|
1
|
+
5.135.176.41:3123
|
2
|
+
14.1.46.136:8080
|
3
|
+
14.29.117.38:80
|
4
|
+
23.89.198.161:7808
|
5
|
+
23.89.198.161:8089
|
6
|
+
23.94.44.10:8089
|
7
|
+
23.239.14.97:80
|
8
|
+
23.239.76.106:443
|
9
|
+
27.50.19.101:3128
|
10
|
+
27.50.128.242:88
|
11
|
+
27.123.222.26:80
|
12
|
+
27.145.145.105:8080
|
13
|
+
36.77.23.107:8080
|
14
|
+
36.81.0.129:31281
|
15
|
+
36.81.1.229:8080
|
16
|
+
37.49.137.243:3128
|
17
|
+
37.59.131.16:3128
|
18
|
+
37.187.88.169:9876
|
19
|
+
37.236.167.250:80
|
20
|
+
37.239.46.2:80
|
21
|
+
37.239.46.10:80
|
22
|
+
37.239.46.18:80
|
23
|
+
37.239.46.42:80
|
24
|
+
38.65.65.169:80
|
25
|
+
41.72.105.38:3128
|
26
|
+
41.74.39.5:8080
|
27
|
+
41.75.201.146:8080
|
28
|
+
41.160.59.12:8080
|
29
|
+
41.190.49.227:8080
|
30
|
+
41.223.119.156:3128
|
31
|
+
42.62.2.52:8128
|
32
|
+
42.62.48.58:8081
|
33
|
+
42.96.202.45:82
|
34
|
+
42.117.3.73:3128
|
35
|
+
42.121.105.155:8888
|
36
|
+
42.121.105.191:80
|
37
|
+
46.10.166.143:8080
|
38
|
+
46.40.38.110:8080
|
39
|
+
46.60.48.161:8080
|
40
|
+
46.175.184.235:8080
|
41
|
+
46.175.184.245:9999
|
42
|
+
49.0.2.182:80
|
43
|
+
50.19.188.230:80
|
44
|
+
50.77.35.67:8080
|
45
|
+
54.83.204.180:8080
|
46
|
+
58.18.183.179:9999
|
47
|
+
58.68.246.12:18080
|
48
|
+
58.119.164.232:3128
|
49
|
+
58.215.142.208:80
|
50
|
+
58.248.81.11:9999
|
51
|
+
58.251.78.71:8088
|
52
|
+
59.38.32.35:1111
|
53
|
+
59.46.72.245:8080
|
54
|
+
59.144.178.6:3128
|
55
|
+
59.151.95.201:3128
|
56
|
+
60.6.241.134:9999
|
57
|
+
60.12.154.228:8080
|
58
|
+
60.18.147.109:8085
|
59
|
+
60.190.138.151:80
|
60
|
+
60.191.203.76:3128
|
61
|
+
60.194.14.144:82
|
62
|
+
60.207.124.150:8080
|
63
|
+
60.210.18.11:80
|
64
|
+
60.221.253.204:80
|
65
|
+
60.250.144.184:3128
|
66
|
+
61.8.77.171:80
|
67
|
+
61.19.30.198:8080
|
68
|
+
61.19.114.180:81
|
69
|
+
61.19.114.180:8080
|
70
|
+
61.50.245.163:8000
|
71
|
+
61.50.245.163:8888
|
72
|
+
61.58.183.209:8088
|
73
|
+
61.135.153.22:80
|
74
|
+
61.150.76.205:808
|
75
|
+
61.153.209.18:3128
|
76
|
+
61.155.169.11:808
|
77
|
+
61.160.45.7:81
|
78
|
+
61.174.9.96:8080
|
79
|
+
61.178.208.12:63000
|
80
|
+
61.189.201.14:8080
|
81
|
+
61.234.123.64:8080
|
82
|
+
62.113.208.89:7808
|
83
|
+
62.113.208.89:8089
|
84
|
+
62.248.78.220:80
|
85
|
+
64.79.84.108:8080
|
86
|
+
66.35.68.145:7808
|
87
|
+
66.35.68.145:8089
|
88
|
+
66.85.131.18:7808
|
89
|
+
66.85.131.18:8089
|
90
|
+
66.192.33.78:8080
|
91
|
+
66.209.190.120:7808
|
92
|
+
67.207.131.25:3128
|
93
|
+
76.74.218.42:20113
|
94
|
+
76.164.213.124:7808
|
95
|
+
76.164.213.124:8089
|
96
|
+
111.1.36.166:82
|
97
|
+
111.1.36.166:83
|
98
|
+
111.1.36.166:84
|
99
|
+
111.1.36.166:86
|
100
|
+
111.1.60.210:80
|
101
|
+
111.4.117.36:8088
|
102
|
+
111.161.126.83:8080
|
103
|
+
111.161.126.84:80
|
104
|
+
111.161.126.85:80
|
105
|
+
111.161.126.87:8080
|
106
|
+
111.161.126.88:8080
|
107
|
+
111.161.126.89:8080
|
108
|
+
111.161.126.90:8080
|
109
|
+
111.161.126.91:8080
|
110
|
+
111.161.126.92:8080
|
111
|
+
111.161.126.93:8080
|
112
|
+
111.205.122.222:80
|
113
|
+
111.206.81.248:80
|
114
|
+
111.206.125.74:8080
|
115
|
+
112.5.90.167:3128
|
116
|
+
112.5.254.172:80
|
117
|
+
112.78.147.211:8080
|
118
|
+
112.84.176.48:80
|
119
|
+
112.95.241.76:80
|
120
|
+
112.112.11.82:8080
|
121
|
+
112.124.3.76:80
|
122
|
+
112.124.4.94:80
|
123
|
+
112.124.5.121:80
|
124
|
+
112.124.6.101:80
|
125
|
+
112.124.20.224:3128
|
126
|
+
112.124.22.94:8888
|
127
|
+
112.124.28.80:3128
|
128
|
+
112.124.37.83:3128
|
129
|
+
112.124.45.214:3128
|
130
|
+
112.142.128.147:8080
|
131
|
+
112.213.109.244:80
|
132
|
+
112.253.6.182:8080
|
133
|
+
113.31.34.44:8080
|
134
|
+
113.53.249.29:9999
|
135
|
+
113.53.250.62:8080
|
136
|
+
113.57.230.83:80
|
137
|
+
113.57.252.103:80
|
138
|
+
113.57.252.104:80
|
139
|
+
113.57.252.105:80
|
140
|
+
113.57.252.107:80
|
141
|
+
113.105.93.74:8080
|
142
|
+
113.105.179.84:9999
|
143
|
+
113.106.93.42:3128
|
144
|
+
113.108.186.138:3128
|
145
|
+
113.196.34.66:8080
|
146
|
+
113.214.13.1:8000
|
147
|
+
114.33.130.199:8080
|
148
|
+
114.66.218.124:80
|
149
|
+
114.80.136.112:7780
|
150
|
+
114.112.91.135:3128
|
151
|
+
114.141.50.50:8080
|
152
|
+
114.215.208.11:80
|
153
|
+
115.28.2.224:80
|
154
|
+
115.28.3.126:8888
|
155
|
+
115.28.18.83:80
|
156
|
+
115.28.137.244:80
|
157
|
+
115.29.164.39:80
|
158
|
+
115.29.164.195:8081
|
159
|
+
115.29.166.133:82
|
160
|
+
115.29.168.245:18080
|
161
|
+
115.29.184.17:82
|
162
|
+
115.29.191.128:80
|
163
|
+
115.29.193.159:80
|
164
|
+
115.124.65.166:3128
|
165
|
+
115.238.164.208:8080
|
166
|
+
115.239.248.235:8080
|
167
|
+
116.11.32.41:3128
|
168
|
+
116.66.122.40:80
|
169
|
+
116.228.55.217:80
|
170
|
+
116.228.55.217:8000
|
171
|
+
116.236.216.116:8080
|
172
|
+
116.252.253.121:8080
|
173
|
+
116.255.202.72:88
|
174
|
+
117.25.129.238:8888
|
175
|
+
117.36.197.165:9999
|
176
|
+
117.59.217.236:80
|
177
|
+
117.59.217.236:81
|
178
|
+
117.59.217.236:82
|
179
|
+
117.59.217.236:83
|
180
|
+
117.59.217.237:80
|
181
|
+
117.59.217.237:81
|
182
|
+
117.59.217.237:82
|
183
|
+
117.59.217.237:83
|
184
|
+
117.59.217.245:80
|
185
|
+
117.59.217.245:81
|
186
|
+
117.59.217.245:82
|
187
|
+
117.59.217.245:83
|
188
|
+
117.59.217.245:843
|
189
|
+
117.79.87.165:80
|
190
|
+
117.121.54.21:9000
|
191
|
+
117.135.244.41:80
|
192
|
+
117.158.1.210:9999
|
193
|
+
117.240.240.35:8080
|
194
|
+
118.67.124.120:80
|
195
|
+
118.70.129.101:8080
|
196
|
+
118.97.27.90:8080
|
197
|
+
118.97.142.210:80
|
198
|
+
118.97.144.202:80
|
199
|
+
118.97.255.106:8080
|
200
|
+
118.98.73.122:80
|
201
|
+
118.98.219.36:8080
|
202
|
+
118.103.236.152:8080
|
203
|
+
118.123.166.115:80
|
204
|
+
118.175.5.9:80
|
205
|
+
118.175.5.9:8080
|
206
|
+
118.238.234.228:3128
|
207
|
+
119.4.115.51:8090
|
208
|
+
119.6.78.39:9999
|
209
|
+
119.46.110.17:8080
|
210
|
+
119.188.2.54:8081
|
211
|
+
119.188.2.55:8081
|
212
|
+
119.188.46.42:8080
|
213
|
+
119.226.79.52:80
|
214
|
+
119.226.79.53:80
|
215
|
+
119.226.79.54:80
|
216
|
+
119.226.79.58:8080
|
217
|
+
120.86.121.134:8080
|
218
|
+
120.192.92.98:80
|
219
|
+
120.192.92.99:80
|
220
|
+
120.194.102.198:9999
|
221
|
+
120.197.53.198:8080
|
222
|
+
120.197.53.199:8080
|
223
|
+
120.198.230.16:80
|
224
|
+
120.198.230.17:80
|
225
|
+
120.198.230.22:80
|
226
|
+
120.198.230.25:80
|
227
|
+
120.198.230.27:80
|
228
|
+
120.198.230.30:80
|
229
|
+
120.198.230.31:80
|
230
|
+
120.198.230.31:81
|
231
|
+
120.198.230.54:80
|
232
|
+
120.198.230.55:80
|
233
|
+
120.198.230.56:80
|
234
|
+
120.198.230.57:80
|
235
|
+
120.198.230.58:80
|
236
|
+
120.198.230.59:80
|
237
|
+
120.198.230.60:80
|
238
|
+
120.198.230.61:80
|
239
|
+
120.198.230.93:80
|
240
|
+
120.198.244.15:80
|
241
|
+
120.202.249.230:80
|
242
|
+
121.8.143.154:9999
|
243
|
+
121.10.120.135:8001
|
244
|
+
121.14.138.56:81
|
245
|
+
121.31.5.188:8080
|
246
|
+
121.33.222.228:9999
|
247
|
+
121.52.229.51:3128
|
248
|
+
121.196.141.249:80
|
249
|
+
121.199.30.110:82
|
250
|
+
121.199.60.48:80
|
251
|
+
121.199.60.143:3128
|
252
|
+
122.72.0.6:80
|
253
|
+
122.72.120.35:80
|
254
|
+
122.102.45.170:8080
|
255
|
+
122.136.46.151:80
|
256
|
+
122.136.46.151:3128
|
257
|
+
122.193.9.91:80
|
258
|
+
122.225.19.181:3128
|
259
|
+
122.225.103.85:18000
|
260
|
+
122.226.122.201:8080
|
261
|
+
122.226.172.18:3128
|
262
|
+
122.226.199.228:8080
|
263
|
+
123.108.14.39:8080
|
264
|
+
123.125.19.44:80
|
265
|
+
123.125.157.52:3128
|
266
|
+
123.234.49.194:8080
|
267
|
+
124.81.102.190:8080
|
268
|
+
124.117.218.54:63000
|
269
|
+
124.161.94.8:80
|
270
|
+
124.207.57.181:80
|
271
|
+
125.39.66.66:80
|
272
|
+
125.39.66.67:80
|
273
|
+
125.39.66.68:80
|
274
|
+
125.39.66.69:80
|
275
|
+
125.39.85.234:80
|
276
|
+
125.39.85.242:80
|
277
|
+
125.39.85.243:80
|
278
|
+
125.46.100.198:9999
|
279
|
+
125.164.221.43:9999
|
280
|
+
125.217.162.134:8080
|
281
|
+
125.227.158.17:3128
|
282
|
+
125.227.240.212:8080
|
283
|
+
140.206.86.68:8080
|
284
|
+
140.206.215.5:82
|
285
|
+
140.207.223.101:80
|
286
|
+
146.82.236.151:8080
|
287
|
+
149.255.255.242:80
|
288
|
+
149.255.255.250:80
|
289
|
+
153.120.25.103:80
|
290
|
+
162.220.218.173:7808
|
291
|
+
162.221.229.8:3128
|
292
|
+
162.243.69.232:3128
|
293
|
+
163.177.154.22:80
|
294
|
+
163.177.154.23:80
|
295
|
+
168.10.181.71:8080
|
296
|
+
170.24.134.38:8080
|
297
|
+
174.4.49.161:8080
|
298
|
+
175.28.15.91:80
|
299
|
+
175.100.75.130:80
|
300
|
+
176.35.77.154:3128
|
301
|
+
176.192.42.230:80
|
302
|
+
177.4.174.11:8080
|
303
|
+
177.4.174.13:8080
|
304
|
+
177.37.12.9:8080
|
305
|
+
177.91.78.177:8080
|
306
|
+
177.101.45.193:8080
|
307
|
+
177.124.60.91:3128
|
308
|
+
177.128.24.75:8080
|
309
|
+
177.220.201.40:8080
|
310
|
+
178.33.136.68:443
|
311
|
+
178.215.174.42:443
|
312
|
+
179.96.255.34:8080
|
313
|
+
179.156.121.91:8399
|
314
|
+
179.185.80.153:3128
|
315
|
+
179.189.68.73:3128
|
316
|
+
179.218.149.3:3128
|
317
|
+
180.76.2.16:80
|
318
|
+
180.142.129.132:9999
|
319
|
+
180.153.32.9:8080
|
320
|
+
180.153.32.93:8088
|
321
|
+
180.211.183.134:8080
|
322
|
+
180.241.113.26:3128
|
323
|
+
180.241.218.132:3128
|
324
|
+
180.241.235.117:8080
|
325
|
+
180.242.71.218:80
|
326
|
+
180.242.71.218:8080
|
327
|
+
180.246.210.12:8080
|
328
|
+
180.250.43.88:8080
|
329
|
+
180.250.160.58:8080
|
330
|
+
180.250.172.182:8080
|
331
|
+
182.93.218.102:8080
|
332
|
+
182.118.23.7:8081
|
333
|
+
182.118.31.110:80
|
334
|
+
182.254.129.123:80
|
335
|
+
183.57.78.80:80
|
336
|
+
183.57.78.93:80
|
337
|
+
183.57.82.71:80
|
338
|
+
183.57.82.74:80
|
339
|
+
183.60.44.136:88
|
340
|
+
183.61.240.126:80
|
341
|
+
183.62.60.100:80
|
342
|
+
183.63.81.66:9999
|
343
|
+
183.63.116.43:9999
|
344
|
+
183.63.131.18:9999
|
345
|
+
183.63.149.103:80
|
346
|
+
183.63.149.110:3128
|
347
|
+
183.88.233.150:8080
|
348
|
+
183.136.221.6:3128
|
349
|
+
183.207.224.16:80
|
350
|
+
183.207.224.17:81
|
351
|
+
183.207.224.17:83
|
352
|
+
183.207.224.18:80
|
353
|
+
183.207.224.19:81
|
354
|
+
183.207.224.19:83
|
355
|
+
183.207.224.19:85
|
356
|
+
183.207.224.21:80
|
357
|
+
183.207.224.21:81
|
358
|
+
183.207.224.21:82
|
359
|
+
183.207.224.21:85
|
360
|
+
183.207.224.21:86
|
361
|
+
183.207.224.36:80
|
362
|
+
183.207.224.37:80
|
363
|
+
183.207.224.38:80
|
364
|
+
183.207.224.39:80
|
365
|
+
183.207.224.42:80
|
366
|
+
183.207.224.43:80
|
367
|
+
183.207.224.44:80
|
368
|
+
183.207.224.45:80
|
369
|
+
183.207.224.48:80
|
370
|
+
183.207.224.51:80
|
371
|
+
183.207.224.51:82
|
372
|
+
183.207.224.51:83
|
373
|
+
183.207.224.51:84
|
374
|
+
183.207.229.10:80
|
375
|
+
183.207.229.11:80
|
376
|
+
183.207.229.12:80
|
377
|
+
183.207.229.13:80
|
378
|
+
183.207.229.137:80
|
379
|
+
183.207.229.138:80
|
380
|
+
183.207.229.139:80
|
381
|
+
183.207.237.11:80
|
382
|
+
183.221.245.198:80
|
383
|
+
183.221.245.207:80
|
384
|
+
183.221.245.208:80
|
385
|
+
183.221.247.122:80
|
386
|
+
183.237.194.145:80
|
387
|
+
183.238.133.43:80
|
388
|
+
184.71.109.154:8080
|
389
|
+
184.105.18.60:8089
|
390
|
+
186.1.246.100:3128
|
391
|
+
186.42.121.149:80
|
392
|
+
186.90.215.128:8080
|
393
|
+
186.215.231.211:8080
|
394
|
+
187.19.63.18:3128
|
395
|
+
187.33.48.162:8080
|
396
|
+
187.102.153.154:3128
|
397
|
+
187.188.167.227:8080
|
398
|
+
187.188.195.66:8080
|
399
|
+
187.217.205.19:8080
|
400
|
+
187.240.117.148:3128
|
401
|
+
189.50.1.222:8080
|
402
|
+
189.80.137.102:8080
|
403
|
+
189.124.17.134:3128
|
404
|
+
190.0.16.58:8080
|
405
|
+
190.26.211.107:80
|
406
|
+
190.60.39.186:3128
|
407
|
+
190.98.205.107:80
|
408
|
+
190.128.149.34:3128
|
409
|
+
190.128.149.34:8080
|
410
|
+
190.128.191.202:8080
|
411
|
+
190.128.205.2:8080
|
412
|
+
191.103.3.127:8080
|
413
|
+
191.103.9.207:8080
|
414
|
+
191.103.18.172:8080
|
415
|
+
192.3.158.110:8080
|
416
|
+
192.157.227.89:8088
|
417
|
+
192.227.139.227:7808
|
418
|
+
192.227.139.227:8089
|
419
|
+
193.194.69.34:8080
|
420
|
+
195.62.78.1:3128
|
421
|
+
195.154.68.29:3128
|
422
|
+
195.154.68.29:8088
|
423
|
+
195.154.87.231:8080
|
424
|
+
195.175.62.190:8080
|
425
|
+
196.41.61.12:8081
|
426
|
+
197.231.248.92:80
|
427
|
+
197.253.6.239:80
|
428
|
+
197.254.192.20:3128
|
429
|
+
198.52.217.44:7808
|
430
|
+
198.52.217.44:8089
|
431
|
+
198.148.112.46:7808
|
432
|
+
198.148.112.46:8089
|
433
|
+
199.241.137.180:7808
|
434
|
+
199.241.137.180:8089
|
435
|
+
200.29.67.29:80
|
436
|
+
200.47.219.70:80
|
437
|
+
200.54.91.162:8080
|
438
|
+
200.84.94.151:8080
|
439
|
+
200.108.132.166:3128
|
440
|
+
200.123.245.199:80
|
441
|
+
200.123.249.104:8080
|
442
|
+
200.135.250.130:3128
|
443
|
+
200.250.1.179:3128
|
444
|
+
200.253.165.139:8080
|
445
|
+
201.18.145.149:3128
|
446
|
+
201.54.165.90:80
|
447
|
+
201.116.216.149:8080
|
448
|
+
201.116.227.173:3128
|
449
|
+
201.210.91.75:8080
|
450
|
+
201.221.131.102:8080
|
451
|
+
201.249.201.105:8089
|
452
|
+
201.249.202.166:8089
|
453
|
+
201.251.156.17:8080
|
454
|
+
202.21.181.110:3128
|
455
|
+
202.43.112.106:9876
|
456
|
+
202.43.150.210:80
|
457
|
+
202.44.65.213:3128
|
458
|
+
202.77.115.71:54321
|
459
|
+
202.98.123.126:8080
|
460
|
+
202.99.172.145:8081
|
461
|
+
202.100.210.108:8888
|
462
|
+
202.101.96.154:8888
|
463
|
+
202.103.150.70:8088
|
464
|
+
202.103.215.199:80
|
465
|
+
202.107.231.153:8088
|
466
|
+
202.108.50.69:80
|
467
|
+
202.108.50.70:80
|
468
|
+
202.108.50.75:80
|
469
|
+
202.118.10.100:8080
|
470
|
+
202.118.10.101:8080
|
471
|
+
202.120.83.18:9000
|
472
|
+
202.133.104.106:80
|
473
|
+
202.143.148.58:8080
|
474
|
+
202.143.159.251:3129
|
475
|
+
202.143.182.229:3129
|
476
|
+
202.148.27.122:8080
|
477
|
+
202.151.248.20:80
|
478
|
+
202.159.20.147:8080
|
479
|
+
202.162.198.178:8080
|
480
|
+
202.171.253.84:80
|
481
|
+
202.171.253.111:80
|
482
|
+
202.182.62.244:8080
|
483
|
+
202.185.27.34:3128
|
484
|
+
203.80.144.4:80
|
485
|
+
203.81.249.39:8080
|
486
|
+
203.114.109.66:3128
|
487
|
+
203.146.82.253:3128
|
488
|
+
203.172.208.43:3129
|
489
|
+
204.100.192.90:8080
|
490
|
+
207.250.176.137:80
|
491
|
+
209.170.151.142:7808
|
492
|
+
209.170.151.142:8089
|
493
|
+
210.4.113.82:80
|
494
|
+
210.4.113.82:8080
|
495
|
+
210.14.134.6:80
|
496
|
+
210.14.138.94:8080
|
497
|
+
210.14.138.102:8080
|
498
|
+
210.14.152.91:80
|
499
|
+
210.14.152.91:8080
|
500
|
+
210.14.152.92:80
|
501
|
+
210.14.152.92:8080
|
502
|
+
210.57.208.14:80
|
503
|
+
210.73.220.18:8088
|
504
|
+
210.75.14.157:80
|
505
|
+
210.82.92.77:3128
|
506
|
+
210.83.81.243:80
|
507
|
+
210.101.131.232:8080
|
508
|
+
210.146.67.50:80
|
509
|
+
210.209.88.166:80
|
510
|
+
210.240.242.68:8088
|
511
|
+
210.245.86.217:80
|
512
|
+
211.103.250.146:80
|
513
|
+
211.138.121.36:81
|
514
|
+
211.138.121.36:82
|
515
|
+
211.138.121.37:80
|
516
|
+
211.138.121.37:81
|
517
|
+
211.138.121.37:82
|
518
|
+
211.138.121.37:83
|
519
|
+
211.138.121.37:84
|
520
|
+
211.138.121.37:86
|
521
|
+
211.138.121.38:80
|
522
|
+
211.138.121.38:81
|
523
|
+
211.138.121.38:82
|
524
|
+
211.138.121.38:83
|
525
|
+
211.144.81.66:18000
|
526
|
+
211.144.81.67:18000
|
527
|
+
211.144.81.68:18000
|
528
|
+
211.144.81.69:18000
|
529
|
+
211.151.13.22:81
|
530
|
+
211.151.50.179:81
|
531
|
+
211.162.39.98:80
|
532
|
+
211.162.79.65:80
|
533
|
+
211.162.79.66:80
|
534
|
+
211.162.79.68:80
|
535
|
+
211.162.79.69:80
|
536
|
+
211.166.8.27:80
|
537
|
+
212.68.44.133:3128
|
538
|
+
212.69.8.2:80
|
539
|
+
212.83.148.65:8080
|
540
|
+
212.200.131.105:80
|
541
|
+
212.200.131.105:8080
|
542
|
+
212.220.110.238:8080
|
543
|
+
213.149.105.12:8080
|
544
|
+
216.120.137.78:3128
|
545
|
+
217.33.193.179:3128
|
546
|
+
217.168.89.83:80
|
547
|
+
218.4.236.117:80
|
548
|
+
218.5.74.174:80
|
549
|
+
218.21.97.50:808
|
550
|
+
218.27.136.169:8085
|
551
|
+
218.29.90.30:9999
|
552
|
+
218.29.155.198:9999
|
553
|
+
218.29.165.98:9999
|
554
|
+
218.64.58.122:9999
|
555
|
+
218.71.136.39:8888
|
556
|
+
218.75.155.242:8888
|
557
|
+
218.89.170.110:8888
|
558
|
+
218.89.170.132:8888
|
559
|
+
218.94.82.117:8088
|
560
|
+
218.104.118.54:8080
|
561
|
+
218.107.217.70:3129
|
562
|
+
218.108.42.130:8888
|
563
|
+
218.108.168.67:80
|
564
|
+
218.108.168.67:82
|
565
|
+
218.194.58.249:80
|
566
|
+
218.197.87.69:80
|
567
|
+
218.198.127.68:3128
|
568
|
+
218.207.195.206:80
|
569
|
+
218.240.131.12:80
|
570
|
+
218.240.156.82:80
|
571
|
+
218.244.235.169:80
|
572
|
+
219.93.183.106:8080
|
573
|
+
219.133.31.120:8888
|
574
|
+
219.143.207.140:3128
|
575
|
+
219.159.199.185:9999
|
576
|
+
219.239.150.240:8080
|
577
|
+
220.178.63.120:9999
|
578
|
+
221.5.69.51:80
|
579
|
+
221.10.102.199:80
|
580
|
+
221.10.102.199:81
|
581
|
+
221.10.102.199:82
|
582
|
+
221.10.102.199:83
|
583
|
+
221.10.102.199:843
|
584
|
+
221.122.79.52:3128
|
585
|
+
221.176.14.72:80
|
586
|
+
221.192.135.200:80
|
587
|
+
221.209.235.74:80
|
588
|
+
222.42.1.132:18000
|
589
|
+
222.66.115.229:80
|
590
|
+
222.66.115.233:80
|
591
|
+
222.74.6.10:8000
|
592
|
+
222.74.6.32:8000
|
593
|
+
222.74.6.48:8000
|
594
|
+
222.83.14.142:3128
|
595
|
+
222.83.14.143:3128
|
596
|
+
222.83.14.144:3128
|
597
|
+
222.85.1.123:8118
|
598
|
+
222.87.129.29:80
|
599
|
+
222.87.129.30:80
|
600
|
+
222.88.240.19:9999
|
601
|
+
222.88.242.213:9999
|
602
|
+
222.92.141.250:80
|
603
|
+
222.124.149.178:3128
|
604
|
+
222.124.186.228:8080
|
605
|
+
222.126.233.35:9999
|
606
|
+
222.132.29.10:8080
|
607
|
+
222.174.27.166:8080
|
608
|
+
222.218.157.233:9999
|
609
|
+
223.4.21.184:80
|
610
|
+
223.30.21.206:8080
|
611
|
+
223.30.29.203:80
|
612
|
+
223.30.29.204:80
|
613
|
+
223.86.22.162:80
|
614
|
+
223.86.22.164:80
|
615
|
+
223.86.22.172:80
|
616
|
+
223.86.22.174:80
|
617
|
+
223.86.22.180:80
|
618
|
+
223.86.22.186:80
|
619
|
+
223.86.22.190:80
|
620
|
+
223.195.87.101:8081
|
621
|
+
223.197.55.81:8080
|
622
|
+
223.197.55.82:8080
|
623
|
+
223.197.55.83:8080
|
624
|
+
223.202.68.83:3128
|
625
|
+
223.203.209.242:9999
|