universal-access-log-parser 1.0.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.
@@ -0,0 +1,312 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
2
+ require 'universal-access-log-parser'
3
+ require 'time'
4
+
5
+ describe UniversalAccessLogParser do
6
+ before :all do
7
+ # "%h %l %u %t \"%r\" %>s %b"
8
+ @apache_common = [
9
+ '127.0.0.1 - - [21/Sep/2005:23:06:41 +0100] "GET / HTTP/1.1" 404 -',
10
+ '127.0.0.1 - - [01/Oct/2011:07:29:11 -0400] "GET / " 400 324',
11
+ '127.0.0.1 - - [01/Oct/2011:07:29:11 -0400] "GET /" 400 324',
12
+ '127.0.0.1 - - [01/Oct/2011:07:29:11 -0400] "" 400 324'
13
+ ]
14
+ # "%v %h %l %u %t \"%r\" %>s %b"
15
+ @apache_vhost_common = [
16
+ 'sigquit.net 127.0.0.1 - - [21/Sep/2005:23:06:41 +0100] "GET / HTTP/1.1" 404 -'
17
+ ]
18
+ # "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-agent}i\""
19
+ @apache_combined = [
20
+ '95.221.65.17 kazuya - [29/Sep/2011:17:38:06 +0100] "GET / HTTP/1.0" 200 1 "http://yandex.ru/yandsearch?text=sigquit.net" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)"',
21
+ '123.65.150.10 - - [23/Aug/2010:03:50:59 +0000] "POST /wordpress3/wp-admin/admin-ajax.php HTTP/1.1" 200 2 "http://www.example.com/wordpress3/wp-admin/post-new.php" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_4; en-US) AppleWebKit/534.3 (KHTML, like Gecko) Chrome/6.0.472.25 Safari/534.3"',
22
+ '87.18.183.252 - - [13/Aug/2008:00:50:49 -0700] "GET /blog/index.xml HTTP/1.1" 302 527 "-" "Feedreader 3.13 (Powered by Newsbrain)"',
23
+ '80.154.42.54 - - [23/Aug/2010:15:25:35 +0000] "GET /phpmy-admin/scripts/setup.php HTTP/1.1" 404 347 "-" "-"',
24
+ '172.0.0.1 - - [21/Sep/2005:23:06:41 +0100] "GET / HTTP/1.1" 404 - "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8b3) Gecko/20050712 Firefox/1.0+"',
25
+ '127.0.0.1 - - [01/Oct/2011:07:51:39 -0400] "GET http://www.test.com/ HTTP/1.1" 200 60662 "-" "test test test"'
26
+ ]
27
+
28
+ @apache_combined_extra = [
29
+ '127.0.0.1 - - [01/Oct/2011:07:51:39 -0400] "GET http://www.test.com/ HTTP/1.1" 200 60662 "-" "test test test" pass URL-List URL-List 0 - 0'
30
+ ]
31
+
32
+ # "%{Referer}i -> %U"
33
+ @apache_referer = [
34
+ 'http://yandex.ru/yandsearch?text=sigquit.net -> /wordpress3/wp-admin/admin-ajax.php'
35
+ ]
36
+
37
+ # "%{User-agent}i"
38
+ @apache_user_agent = [
39
+ 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8b3) Gecko/20050712 Firefox/1.0+'
40
+ ]
41
+
42
+ @icecast = [
43
+ '186.16.79.248 - - [02/Apr/2009:14:22:09 -0500] "GET /musicas HTTP/1.1" 200 2497349 "http://www.rol.com.py/wimpy2/rave.swf?cachebust=1238699531218" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2)" 592'
44
+ ]
45
+
46
+ @iis = [
47
+ '2011-06-20 00:00:00 83.222.242.43 GET /SharedControls/getListingThumbs.aspx img=48,13045,27801,25692,35,21568,21477,21477,10,18,46,8&premium=0|1|0|0|0|0|0|0|0|0|0|0&h=100&w=125&pos=175&scale=true 80 - 92.20.10.104 Mozilla/4.0+(compatible;+MSIE+8.0;+Windows+NT+6.1;+Trident/4.0;+GTB6.6;+SLCC2;+.NET+CLR+2.0.50727;+.NET+CLR+3.5.30729;+.NET+CLR+3.0.30729;+Media+Center+PC+6.0;+aff-kingsoft-ciba;+.NET4.0C;+MASN;+AskTbSTC/5.8.0.12304) 200 0 0 609'
48
+ ]
49
+ end
50
+
51
+ describe 'default parsers' do
52
+ it 'Apache common' do
53
+ parser = UniversalAccessLogParser.apache_common
54
+ data = parser.parse(@apache_common[0])
55
+
56
+ data.remote_host.should == IP.new('127.0.0.1')
57
+ data.logname.should == nil
58
+ data.user.should == nil
59
+ data.time.to_i.should == Time.parse('Thu Sep 21 23:06:41 +0100 2005').to_i
60
+ data.method.should == 'GET'
61
+ data.first_request_line.should == 'GET / HTTP/1.1'
62
+ data.uri.should == '/'
63
+ data.protocol.should == 'HTTP/1.1'
64
+ data.status.should == 404
65
+ data.response_size.should == nil
66
+
67
+ parser = UniversalAccessLogParser.apache_common
68
+ data = parser.parse(@apache_common[1])
69
+
70
+ data.remote_host.should == IP.new('127.0.0.1')
71
+ data.logname.should == nil
72
+ data.user.should == nil
73
+ data.time.to_i.should == Time.parse('Sat Oct 01 13:29:11 +0200 2011').to_i
74
+ data.first_request_line.should == 'GET / '
75
+ data.method.should == 'GET'
76
+ data.uri.should == '/'
77
+ data.protocol.should == nil
78
+ data.status.should == 400
79
+ data.response_size.should == 324
80
+
81
+ parser = UniversalAccessLogParser.apache_common
82
+ data = parser.parse(@apache_common[2])
83
+
84
+ data.remote_host.should == IP.new('127.0.0.1')
85
+ data.first_request_line.should == 'GET /'
86
+ data.method.should == nil
87
+ data.uri.should == nil
88
+ data.protocol.should == nil
89
+ data.status.should == 400
90
+
91
+ parser = UniversalAccessLogParser.apache_common
92
+ data = parser.parse(@apache_common[3])
93
+
94
+ data.remote_host.should == IP.new('127.0.0.1')
95
+ data.first_request_line.should == ''
96
+ data.method.should == nil
97
+ data.uri.should == nil
98
+ data.protocol.should == nil
99
+ data.status.should == 400
100
+ end
101
+
102
+ it 'Apache vhost common' do
103
+ parser = UniversalAccessLogParser.apache_vhost_common
104
+ data = parser.parse(@apache_vhost_common[0])
105
+
106
+ data.vhost.should == 'sigquit.net'
107
+ data.remote_host.should == IP.new('127.0.0.1')
108
+ data.logname.should == nil
109
+ data.user.should == nil
110
+ data.time.to_i.should == Time.parse('Thu Sep 21 23:06:41 +0100 2005').to_i
111
+ data.method.should == 'GET'
112
+ data.uri.should == '/'
113
+ data.protocol.should == 'HTTP/1.1'
114
+ data.status.should == 404
115
+ data.response_size.should == nil
116
+ end
117
+
118
+ it 'Apache combined' do
119
+ parser = UniversalAccessLogParser.apache_combined
120
+ data = parser.parse(@apache_combined[0])
121
+
122
+ data.remote_host.should == IP.new('95.221.65.17')
123
+ data.logname.should == 'kazuya'
124
+ data.user.should == nil
125
+ data.time.to_i.should == Time.parse('Thu Sep 29 17:38:06 +0100 2011').to_i
126
+ data.method.should == 'GET'
127
+ data.uri.should == '/'
128
+ data.protocol.should == 'HTTP/1.0'
129
+ data.status.should == 200
130
+ data.response_size.should == 1
131
+ data.referer.should == 'http://yandex.ru/yandsearch?text=sigquit.net'
132
+ data.user_agent.should == 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)'
133
+ data.other.should == nil
134
+
135
+ parser = UniversalAccessLogParser.apache_combined
136
+ data = parser.parse(@apache_combined[1])
137
+
138
+ data.remote_host.should == IP.new('123.65.150.10')
139
+ data.logname.should == nil
140
+ data.user.should == nil
141
+ data.referer.should == 'http://www.example.com/wordpress3/wp-admin/post-new.php'
142
+ data.user_agent.should == 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_4; en-US) AppleWebKit/534.3 (KHTML, like Gecko) Chrome/6.0.472.25 Safari/534.3'
143
+
144
+ parser = UniversalAccessLogParser.apache_combined
145
+ data = parser.parse(@apache_combined[2])
146
+
147
+ data.remote_host.should == IP.new('87.18.183.252')
148
+ data.referer.should == nil
149
+ data.user_agent.should == 'Feedreader 3.13 (Powered by Newsbrain)'
150
+
151
+ parser = UniversalAccessLogParser.apache_combined
152
+ data = parser.parse(@apache_combined[3])
153
+
154
+ data.remote_host.should == IP.new('80.154.42.54')
155
+ data.referer.should == nil
156
+ data.user_agent.should == nil
157
+
158
+ parser = UniversalAccessLogParser.apache_combined
159
+ data = parser.parse(@apache_combined[4])
160
+
161
+ data.remote_host.should == IP.new('172.0.0.1')
162
+ data.logname.should == nil
163
+ data.user.should == nil
164
+ data.time.to_i.should == Time.parse('Thu Sep 21 23:06:41 +0100 2005').to_i
165
+ data.method.should == 'GET'
166
+ data.uri.should == '/'
167
+ data.protocol.should == 'HTTP/1.1'
168
+ data.status.should == 404
169
+ data.response_size.should == nil
170
+ data.referer.should == nil
171
+ data.user_agent.should == 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8b3) Gecko/20050712 Firefox/1.0+'
172
+
173
+ parser = UniversalAccessLogParser.apache_combined
174
+ data = parser.parse(@apache_combined[5])
175
+
176
+ data.remote_host.should == IP.new('127.0.0.1')
177
+ data.logname.should == nil
178
+ data.user.should == nil
179
+ data.method.should == 'GET'
180
+ data.uri.should == 'http://www.test.com/'
181
+ data.protocol.should == 'HTTP/1.1'
182
+ data.status.should == 200
183
+ data.response_size.should == 60662
184
+ data.referer.should == nil
185
+ data.user_agent.should == 'test test test'
186
+ end
187
+
188
+ it 'Apache combined file' do
189
+ parser = UniversalAccessLogParser.apache_combined
190
+ entries = []
191
+
192
+ parser.parse_file(File.dirname(__FILE__) + '/data/apache_access.log').each_parsed! do |entry|
193
+ entries << entry
194
+ end
195
+
196
+ entries.should have(178).entries
197
+ entries[3].uri.should == '/robots.txt'
198
+ end
199
+
200
+ it 'Apache combined with other data' do
201
+ parser = UniversalAccessLogParser.apache_combined
202
+ data = parser.parse(@apache_combined[0] + ' hello world')
203
+
204
+ data.remote_host.should == IP.new('95.221.65.17')
205
+ data.logname.should == 'kazuya'
206
+ data.user.should == nil
207
+ data.time.to_i.should == Time.parse('Thu Sep 29 17:38:06 +0100 2011').to_i
208
+ data.method.should == 'GET'
209
+ data.uri.should == '/'
210
+ data.protocol.should == 'HTTP/1.0'
211
+ data.status.should == 200
212
+ data.response_size.should == 1
213
+ data.referer.should == 'http://yandex.ru/yandsearch?text=sigquit.net'
214
+ data.user_agent.should == 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)'
215
+ data.other.should == 'hello world'
216
+ end
217
+
218
+ it 'Apache combined with extra data' do
219
+ parser = UniversalAccessLogParser.new do
220
+ apache_combined
221
+ string :varnish
222
+ string :varnish_status, :nil_on => '-'
223
+ string :initial_varnish_status, :nil_on => '-'
224
+ integer :cache_hits
225
+ integer :cache_ttl, :nil_on => '-'
226
+ integer :cache_age
227
+ end
228
+ data = parser.parse(@apache_combined_extra[0])
229
+
230
+ data.remote_host.should == IP.new('127.0.0.1')
231
+ data.logname.should == nil
232
+ data.user.should == nil
233
+ data.method.should == 'GET'
234
+ data.uri.should == 'http://www.test.com/'
235
+ data.protocol.should == 'HTTP/1.1'
236
+ data.status.should == 200
237
+ data.response_size.should == 60662
238
+ data.referer.should == nil
239
+ data.user_agent.should == 'test test test'
240
+
241
+ data.varnish.should == 'pass'
242
+ data.varnish_status.should == 'URL-List'
243
+ data.initial_varnish_status.should == 'URL-List'
244
+ data.cache_hits.should == 0
245
+ data.cache_ttl.should == nil
246
+ data.cache_age.should == 0
247
+ end
248
+
249
+ it 'Apache referer' do
250
+ parser = UniversalAccessLogParser.apache_referer
251
+ data = parser.parse(@apache_referer[0])
252
+
253
+ data.referer.should == 'http://yandex.ru/yandsearch?text=sigquit.net'
254
+ data.url.should == '/wordpress3/wp-admin/admin-ajax.php'
255
+ end
256
+
257
+ it 'Apache user agent' do
258
+ parser = UniversalAccessLogParser.apache_user_agent
259
+ data = parser.parse(@apache_user_agent[0])
260
+
261
+ data.user_agent.should == 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8b3) Gecko/20050712 Firefox/1.0+'
262
+ end
263
+
264
+ it 'Icecast' do
265
+ parser = UniversalAccessLogParser.icecast
266
+ data = parser.parse(@icecast[0])
267
+
268
+ data.remote_host.should == IP.new('186.16.79.248')
269
+ data.logname.should == nil
270
+ data.user.should == nil
271
+ data.method.should == 'GET'
272
+ data.uri.should == '/musicas'
273
+ data.protocol.should == 'HTTP/1.1'
274
+ data.status.should == 200
275
+ data.response_size.should == 2497349
276
+ data.referer.should == 'http://www.rol.com.py/wimpy2/rave.swf?cachebust=1238699531218'
277
+ data.user_agent.should == 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2)'
278
+ data.duration.should == 592
279
+ end
280
+
281
+ it 'IIS' do
282
+ parser = UniversalAccessLogParser.iis
283
+ data = parser.parse(@iis[0])
284
+
285
+ data.time.to_i.should == Time.parse('Mon Jun 20 00:00:00 UTC 2011').to_i
286
+ data.server_ip.should == IP.new('83.222.242.43')
287
+ data.method.should == 'GET'
288
+ data.url.should == '/SharedControls/getListingThumbs.aspx'
289
+ data.query.should == 'img=48,13045,27801,25692,35,21568,21477,21477,10,18,46,8&premium=0|1|0|0|0|0|0|0|0|0|0|0&h=100&w=125&pos=175&scale=true'
290
+ data.port.should == 80
291
+ data.username.should == nil
292
+ data.client_ip.should == IP.new('92.20.10.104')
293
+ data.user_agent.should == 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6.6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; aff-kingsoft-ciba; .NET4.0C; MASN; AskTbSTC/5.8.0.12304)'
294
+ data.status.should == 200
295
+ data.substatus.should == 0
296
+ data.win32_status.should == 0
297
+ data.duration.should == 0.609
298
+ end
299
+
300
+ it 'IIS log file' do
301
+ entries = []
302
+ parser = UniversalAccessLogParser.iis
303
+ parser.parse_file(File.dirname(__FILE__) + '/data/iis_short.log').each_parsed! do |entry|
304
+ entries << entry
305
+ end
306
+
307
+ entries.should have(6).entries
308
+ entries[5].url.should == '/blahs/uk/leicestershire/little-bowden/invisalign/index.aspx'
309
+ end
310
+ end
311
+ end
312
+
@@ -0,0 +1,178 @@
1
+ 119.63.196.49 sigquit.net - [24/Jul/2011:07:10:17 +0100] "GET /robots.txt HTTP/1.1" 404 345 "-" "Baiduspider+(+http://www.baidu.com/search/spider.htm)" "-"
2
+ 208.80.194.32 sigquit.net - [24/Jul/2011:07:44:53 +0100] "GET / HTTP/1.0" 200 1 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Versatel.de ISDN 0404; .NET CLR 1.1.4322; Crazy Browser 2.0.0)" "/var/www/localhost/./index.html"
3
+ 82.235.17.159 89.228.254.163 - [24/Jul/2011:09:27:21 +0100] "GET / HTTP/1.0" 200 1 "-" "-" "/var/www/localhost/./index.html"
4
+ 67.195.111.239 sigquit.net - [24/Jul/2011:11:23:32 +0100] "GET /robots.txt HTTP/1.0" 404 345 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" "-"
5
+ 67.195.111.239 sigquit.net - [24/Jul/2011:11:23:33 +0100] "GET / HTTP/1.0" 200 1 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" "/var/www/localhost/./index.html"
6
+ 95.27.191.71 sigquit.net - [24/Jul/2011:13:43:13 +0100] "GET / HTTP/1.0" 200 1 "http://yandex.ru/yandsearch?text=sigquit.net" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "/var/www/localhost/./index.html"
7
+ 207.46.199.40 sigquit.net - [24/Jul/2011:15:14:59 +0100] "GET /robots.txt HTTP/1.1" 404 345 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" "-"
8
+ 207.46.199.40 sigquit.net - [24/Jul/2011:15:15:39 +0100] "GET / HTTP/1.1" 304 0 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" "/var/www/localhost/./index.html"
9
+ 157.55.112.203 sigquit.net - [24/Jul/2011:16:17:10 +0100] "GET / HTTP/1.1" 200 1 "-" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0; WOW64; Trident/5.0)" "/var/www/localhost/./index.html"
10
+ 88.214.193.166 sigquit.net - [24/Jul/2011:18:01:56 +0100] "GET / HTTP/1.1" 200 1 "http://www.semrush.com/es/info/sigquit.net" "Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.3 (KHTML, like Gecko) Iron/6.0.475.1 Chrome/6.0.475.1 Safari/42223552.534" "/var/www/localhost/./index.html"
11
+ 208.115.111.74 rustika.sigquit.net - [24/Jul/2011:21:41:34 +0100] "GET /robots.txt HTTP/1.1" 404 345 "-" "Mozilla/5.0 (compatible; Ezooms/1.0; ezooms.bot@gmail.com)" "-"
12
+ 208.115.111.74 rustika.sigquit.net - [24/Jul/2011:23:06:56 +0100] "GET / HTTP/1.1" 200 432 "-" "Mozilla/5.0 (compatible; Ezooms/1.0; ezooms.bot@gmail.com)" "/var/www/rustika.sigquit.net/./index.html"
13
+ 119.63.196.82 sigquit.net - [25/Jul/2011:03:48:03 +0100] "GET /robots.txt HTTP/1.1" 404 345 "-" "Baiduspider+(+http://www.baidu.com/search/spider.htm)" "-"
14
+ 88.214.193.166 sigquit.net - [25/Jul/2011:07:20:16 +0100] "GET / HTTP/1.1" 200 1 "http://www.whorush.com/search/?q=sigquit.net" "Mozilla/4.0 (compatible; MSIE 7.0b; Win32)" "/var/www/localhost/./index.html"
15
+ 67.195.111.239 sigquit.net - [25/Jul/2011:13:30:09 +0100] "GET /robots.txt HTTP/1.0" 404 345 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" "-"
16
+ 67.195.111.239 sigquit.net - [25/Jul/2011:13:30:10 +0100] "GET / HTTP/1.0" 200 1 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" "/var/www/localhost/./index.html"
17
+ 220.181.108.149 sigquit.net - [25/Jul/2011:16:39:50 +0100] "GET / HTTP/1.1" 200 1 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" "/var/www/localhost/./index.html"
18
+ 50.17.9.5 sigquit.net - [25/Jul/2011:18:21:56 +0100] "HEAD / HTTP/1.1" 200 0 "http://www.netcraft.com/survey/" "Mozilla/4.0 (compatible; Netcraft Web Server Survey)" "/var/www/localhost/./index.html"
19
+ 208.80.194.27 sigquit.net - [25/Jul/2011:23:22:41 +0100] "GET / HTTP/1.0" 200 1 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; ImageShack Toolbar 3.0.3; yplus 5.1.04b)" "/var/www/localhost/./index.html"
20
+ 50.57.113.16 - - [26/Jul/2011:02:40:58 +0100] "HEAD /robots.txt HTTP/1.0" 404 0 "-" "-" "-"
21
+ 88.191.72.5 89.228.254.163 - [26/Jul/2011:05:18:51 +0100] "GET /w00tw00t.at.blackhats.romanian.anti-sec:) HTTP/1.1" 404 345 "-" "ZmEu" "-"
22
+ 88.191.72.5 89.228.254.163 - [26/Jul/2011:05:18:51 +0100] "GET /phpMyAdmin/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
23
+ 88.191.72.5 89.228.254.163 - [26/Jul/2011:05:18:52 +0100] "GET /phpmyadmin/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
24
+ 88.191.72.5 89.228.254.163 - [26/Jul/2011:05:18:52 +0100] "GET /pma/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
25
+ 88.191.72.5 89.228.254.163 - [26/Jul/2011:05:18:52 +0100] "GET /myadmin/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
26
+ 88.191.72.5 89.228.254.163 - [26/Jul/2011:05:18:52 +0100] "GET /MyAdmin/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
27
+ 88.214.193.166 sigquit.net - [26/Jul/2011:08:29:24 +0100] "GET / HTTP/1.1" 200 1 "http://www.whorush.com/search/?q=sigquit.net" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; {74B99D91-A255-4035-54D8-754498257D6C}; GTB6.6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)" "/var/www/localhost/./index.html"
28
+ 88.214.193.166 sigquit.net - [26/Jul/2011:09:27:44 +0100] "GET / HTTP/1.1" 200 1 "http://www.semrush.com/info/sigquit.net" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SIMBAR={2231CBB0-AE78-4A82-BF6F-8A0D385877D4}; GTB0.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; Creative ZENcast v2.00.13)" "/var/www/localhost/./index.html"
29
+ 119.63.196.17 sigquit.net - [26/Jul/2011:10:16:46 +0100] "GET /robots.txt HTTP/1.1" 404 345 "-" "Baiduspider+(+http://www.baidu.com/search/spider.htm)" "-"
30
+ 199.19.249.196 sigquit.net - [26/Jul/2011:15:20:55 +0100] "GET /~kazuya/Blog/cacti_graph_template_snmp_-_bind_query_statistics.xml HTTP/1.1" 404 345 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)" "-"
31
+ 84.18.64.242 sigquit.net - [26/Jul/2011:15:20:55 +0100] "GET /~kazuya/Blog/cacti_graph_template_snmp_-_bind_query_statistics.xml HTTP/1.1" 404 345 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3; .NET4.0C)" "-"
32
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:40 +0100] "GET /w00tw00t.at.blackhats.romanian.anti-sec:) HTTP/1.1" 404 345 "-" "ZmEu" "-"
33
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:40 +0100] "GET /scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
34
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:41 +0100] "GET /admin/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
35
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:41 +0100] "GET /admin/pma/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
36
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:42 +0100] "GET /admin/phpmyadmin/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
37
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:42 +0100] "GET /db/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
38
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:43 +0100] "GET /dbadmin/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
39
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:43 +0100] "GET /myadmin/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
40
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:43 +0100] "GET /mysql/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
41
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:44 +0100] "GET /mysqladmin/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
42
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:44 +0100] "GET /typo3/phpmyadmin/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
43
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:44 +0100] "GET /phpadmin/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
44
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:45 +0100] "GET /phpMyAdmin/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
45
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:45 +0100] "GET /phpmyadmin/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
46
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:45 +0100] "GET /phpmyadmin1/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
47
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:46 +0100] "GET /phpmyadmin2/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
48
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:46 +0100] "GET /pma/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
49
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:46 +0100] "GET /web/phpMyAdmin/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
50
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:47 +0100] "GET /xampp/phpmyadmin/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
51
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:47 +0100] "GET /web/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
52
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:47 +0100] "GET /php-my-admin/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
53
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:47 +0100] "GET /websql/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
54
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:48 +0100] "GET /phpmyadmin/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
55
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:48 +0100] "GET /phpMyAdmin/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
56
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:49 +0100] "GET /phpMyAdmin-2/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
57
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:49 +0100] "GET /php-my-admin/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
58
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:49 +0100] "GET /phpMyAdmin-2.2.3/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
59
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:50 +0100] "GET /phpMyAdmin-2.2.6/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
60
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:50 +0100] "GET /phpMyAdmin-2.5.1/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
61
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:51 +0100] "GET /phpMyAdmin-2.5.4/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
62
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:51 +0100] "GET /phpMyAdmin-2.5.5-rc1/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
63
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:51 +0100] "GET /phpMyAdmin-2.5.5-rc2/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
64
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:52 +0100] "GET /phpMyAdmin-2.5.5/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
65
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:52 +0100] "GET /phpMyAdmin-2.5.5-pl1/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
66
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:52 +0100] "GET /phpMyAdmin-2.5.6-rc1/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
67
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:53 +0100] "GET /phpMyAdmin-2.5.6-rc2/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
68
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:53 +0100] "GET /phpMyAdmin-2.5.6/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
69
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:53 +0100] "GET /phpMyAdmin-2.5.7/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
70
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:54 +0100] "GET /phpMyAdmin-2.5.7-pl1/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
71
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:54 +0100] "GET /phpMyAdmin-2.6.0-alpha/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
72
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:54 +0100] "GET /phpMyAdmin-2.6.0-alpha2/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
73
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:55 +0100] "GET /phpMyAdmin-2.6.0-beta1/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
74
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:55 +0100] "GET /phpMyAdmin-2.6.0-beta2/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
75
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:55 +0100] "GET /phpMyAdmin-2.6.0-rc1/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
76
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:56 +0100] "GET /phpMyAdmin-2.6.0-rc2/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
77
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:56 +0100] "GET /phpMyAdmin-2.6.0-rc3/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
78
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:56 +0100] "GET /phpMyAdmin-2.6.0/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
79
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:57 +0100] "GET /phpMyAdmin-2.6.0-pl1/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
80
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:57 +0100] "GET /phpMyAdmin-2.6.0-pl2/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
81
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:57 +0100] "GET /phpMyAdmin-2.6.0-pl3/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
82
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:58 +0100] "GET /phpMyAdmin-2.6.1-rc1/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
83
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:58 +0100] "GET /phpMyAdmin-2.6.1-rc2/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
84
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:58 +0100] "GET /phpMyAdmin-2.6.1/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
85
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:59 +0100] "GET /phpMyAdmin-2.6.1-pl1/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
86
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:59 +0100] "GET /phpMyAdmin-2.6.1-pl2/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
87
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:23:59 +0100] "GET /phpMyAdmin-2.6.1-pl3/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
88
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:00 +0100] "GET /phpMyAdmin-2.6.2-rc1/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
89
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:00 +0100] "GET /phpMyAdmin-2.6.2-beta1/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
90
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:01 +0100] "GET /phpMyAdmin-2.6.2-rc1/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
91
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:01 +0100] "GET /phpMyAdmin-2.6.2/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
92
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:01 +0100] "GET /phpMyAdmin-2.6.2-pl1/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
93
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:02 +0100] "GET /phpMyAdmin-2.6.3/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
94
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:02 +0100] "GET /phpMyAdmin-2.6.3-rc1/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
95
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:02 +0100] "GET /phpMyAdmin-2.6.3/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
96
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:02 +0100] "GET /phpMyAdmin-2.6.3-pl1/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
97
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:03 +0100] "GET /phpMyAdmin-2.6.4-rc1/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
98
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:03 +0100] "GET /phpMyAdmin-2.6.4-pl1/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
99
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:04 +0100] "GET /phpMyAdmin-2.6.4-pl2/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
100
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:04 +0100] "GET /phpMyAdmin-2.6.4-pl3/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
101
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:04 +0100] "GET /phpMyAdmin-2.6.4-pl4/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
102
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:05 +0100] "GET /phpMyAdmin-2.6.4/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
103
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:05 +0100] "GET /phpMyAdmin-2.7.0-beta1/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
104
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:05 +0100] "GET /phpMyAdmin-2.7.0-rc1/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
105
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:06 +0100] "GET /phpMyAdmin-2.7.0-pl1/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
106
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:06 +0100] "GET /phpMyAdmin-2.7.0-pl2/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
107
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:07 +0100] "GET /phpMyAdmin-2.7.0/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
108
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:07 +0100] "GET /phpMyAdmin-2.8.0-beta1/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
109
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:07 +0100] "GET /phpMyAdmin-2.8.0-rc1/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
110
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:08 +0100] "GET /phpMyAdmin-2.8.0-rc2/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
111
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:08 +0100] "GET /phpMyAdmin-2.8.0/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
112
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:08 +0100] "GET /phpMyAdmin-2.8.0.1/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
113
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:09 +0100] "GET /phpMyAdmin-2.8.0.2/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
114
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:09 +0100] "GET /phpMyAdmin-2.8.0.3/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
115
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:09 +0100] "GET /phpMyAdmin-2.8.0.4/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
116
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:10 +0100] "GET /phpMyAdmin-2.8.1-rc1/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
117
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:10 +0100] "GET /phpMyAdmin-2.8.1/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
118
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:10 +0100] "GET /phpMyAdmin-2.8.2/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
119
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:10 +0100] "GET /sqlmanager/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
120
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:11 +0100] "GET /mysqlmanager/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
121
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:11 +0100] "GET /p/m/a/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
122
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:12 +0100] "GET /PMA2005/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
123
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:12 +0100] "GET /pma2005/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
124
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:12 +0100] "GET /phpmanager/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
125
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:12 +0100] "GET /php-myadmin/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
126
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:13 +0100] "GET /phpmy-admin/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
127
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:13 +0100] "GET /webadmin/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
128
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:14 +0100] "GET /sqlweb/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
129
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:14 +0100] "GET /websql/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
130
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:15 +0100] "GET /webdb/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
131
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:15 +0100] "GET /mysqladmin/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
132
+ 66.135.50.216 89.228.254.163 - [26/Jul/2011:16:24:15 +0100] "GET /mysql-admin/scripts/setup.php HTTP/1.1" 404 345 "-" "ZmEu" "-"
133
+ 220.181.108.142 sigquit.net - [26/Jul/2011:19:00:01 +0100] "GET / HTTP/1.1" 200 1 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" "/var/www/localhost/./index.html"
134
+ 174.129.117.237 sigquit.net - [26/Jul/2011:19:07:28 +0100] "HEAD / HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/525.13 (KHTML, like Gecko) Chrome/0.A.B.C Safari/525.13" "/var/www/localhost/./index.html"
135
+ 208.91.185.97 sigquit.net - [26/Jul/2011:21:05:46 +0100] "GET /%7Ekazuya/Blog/cacti_graph_template_snmp_-_bind_query_statistics.xml HTTP/1.1" 404 345 "http://jpastuszek.sigquit.net/2009/03/graphing-bind-query-statistics-with.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:5.0.1) Gecko/20100101 Firefox/5.0.1" "-"
136
+ 208.91.185.97 sigquit.net - [26/Jul/2011:21:05:46 +0100] "GET /favicon.ico HTTP/1.1" 404 345 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:5.0.1) Gecko/20100101 Firefox/5.0.1" "-"
137
+ 208.91.185.97 sigquit.net - [26/Jul/2011:21:05:46 +0100] "GET /favicon.ico HTTP/1.1" 404 345 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:5.0.1) Gecko/20100101 Firefox/5.0.1" "-"
138
+ 208.91.185.97 sigquit.net - [26/Jul/2011:21:18:57 +0100] "GET /%7Ekazuya/Blog/cacti_graph_template_snmp_-_bind_query_statistics.xml HTTP/1.1" 404 345 "http://jpastuszek.sigquit.net/2009/03/graphing-bind-query-statistics-with.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:5.0.1) Gecko/20100101 Firefox/5.0.1" "-"
139
+ 208.91.185.97 sigquit.net - [26/Jul/2011:21:30:28 +0100] "GET /%7Ekazuya/Blog/cacti_graph_template_snmp_-_bind_query_statistics.xml HTTP/1.1" 404 345 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:5.0.1) Gecko/20100101 Firefox/5.0.1" "-"
140
+ 208.91.185.97 sigquit.net - [26/Jul/2011:21:30:30 +0100] "GET /~kazuya/Blog/ HTTP/1.1" 404 345 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:5.0.1) Gecko/20100101 Firefox/5.0.1" "-"
141
+ 208.91.185.97 sigquit.net - [26/Jul/2011:21:30:39 +0100] "GET /~kazuya/ HTTP/1.1" 404 345 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:5.0.1) Gecko/20100101 Firefox/5.0.1" "-"
142
+ 95.108.157.251 host-89-228-254-163.olsztyn.mm.pl - [27/Jul/2011:01:44:30 +0100] "GET /robots.txt HTTP/1.1" 404 345 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" "-"
143
+ 80.11.96.208 89.228.254.163 - [27/Jul/2011:01:51:59 +0100] "GET / HTTP/1.0" 200 1 "-" "-" "/var/www/localhost/./index.html"
144
+ 119.63.196.113 sigquit.net - [27/Jul/2011:02:44:59 +0100] "GET /robots.txt HTTP/1.1" 404 345 "-" "Baiduspider+(+http://www.baidu.com/search/spider.htm)" "-"
145
+ 95.108.157.251 host-89-228-254-163.olsztyn.mm.pl - [27/Jul/2011:09:15:50 +0100] "GET / HTTP/1.1" 200 1 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" "/var/www/localhost/./index.html"
146
+ 208.80.194.32 sigquit.net - [27/Jul/2011:16:14:16 +0100] "GET / HTTP/1.0" 200 1 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; IEMB3; HbTools 4.8.2; IEMB3)" "/var/www/localhost/./index.html"
147
+ 220.181.108.151 sigquit.net - [27/Jul/2011:20:57:59 +0100] "GET / HTTP/1.1" 200 1 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" "/var/www/localhost/./index.html"
148
+ 95.108.157.251 sigquit.net - [28/Jul/2011:01:37:13 +0100] "GET /robots.txt HTTP/1.1" 404 345 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" "-"
149
+ 208.80.194.37 sigquit.net - [28/Jul/2011:04:04:40 +0100] "GET / HTTP/1.0" 200 1 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; {68E7FCB0-9C9D-42B6-8722-36579D0E78F2}; .NET CLR 1.1.4322)" "/var/www/localhost/./index.html"
150
+ 119.63.196.90 sigquit.net - [28/Jul/2011:06:25:05 +0100] "GET /robots.txt HTTP/1.1" 404 345 "-" "Baiduspider+(+http://www.baidu.com/search/spider.htm)" "-"
151
+ 80.90.164.140 sigquit.net - [28/Jul/2011:07:19:01 +0100] "GET /%7Ekazuya/Blog/cacti_graph_template_snmp_-_bind_query_statistics.xml HTTP/1.1" 404 345 "http://jpastuszek.sigquit.net/2009/03/graphing-bind-query-statistics-with.html" "Mozilla/5.0 (Windows NT 6.1; rv:5.0) Gecko/20100101 Firefox/5.0" "-"
152
+ 80.90.164.140 sigquit.net - [28/Jul/2011:07:19:01 +0100] "GET /favicon.ico HTTP/1.1" 404 345 "-" "Mozilla/5.0 (Windows NT 6.1; rv:5.0) Gecko/20100101 Firefox/5.0" "-"
153
+ 204.244.11.119 89.228.254.163 - [28/Jul/2011:13:27:19 +0100] "GET /user/soapCaller.bs?x=x HTTP/1.0" 404 345 "-" "DataCha0s/2.0" "-"
154
+ 95.108.157.251 sigquit.net - [28/Jul/2011:13:42:14 +0100] "GET / HTTP/1.1" 200 1 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" "/var/www/localhost/./index.html"
155
+ 67.195.111.239 sigquit.net - [28/Jul/2011:23:34:39 +0100] "GET /robots.txt HTTP/1.0" 404 345 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" "-"
156
+ 67.195.111.239 sigquit.net - [28/Jul/2011:23:34:41 +0100] "GET / HTTP/1.0" 200 1 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" "/var/www/localhost/./index.html"
157
+ 119.63.196.110 sigquit.net - [28/Jul/2011:23:57:23 +0100] "GET /robots.txt HTTP/1.1" 404 345 "-" "Baiduspider+(+http://www.baidu.com/search/spider.htm)" "-"
158
+ 94.178.211.253 www.google.com - [29/Jul/2011:01:16:27 +0100] "GET http://www.google.com/ HTTP/1.0" 200 1 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)" "/var/www/localhost/./index.html"
159
+ 95.108.157.251 sigquit.net - [29/Jul/2011:01:43:59 +0100] "GET /robots.txt HTTP/1.1" 404 345 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" "-"
160
+ 107.20.5.187 sigquit.net - [29/Jul/2011:02:44:56 +0100] "GET / HTTP/1.0" 200 1 "-" "Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; +info@netcraft.com)" "/var/www/localhost/./index.html"
161
+ 76.247.186.14 sigquit.net - [29/Jul/2011:06:12:03 +0100] "GET /%7Ekazuya/Blog/cacti_graph_template_snmp_-_bind_query_statistics.xml HTTP/1.1" 404 345 "http://jpastuszek.sigquit.net/2009/03/graphing-bind-query-statistics-with.html" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en; rv:1.9.0.19) Gecko/2011032020 Camino/2.0.7 (like Firefox/3.0.19)" "-"
162
+ 76.247.186.14 sigquit.net - [29/Jul/2011:06:12:03 +0100] "GET /favicon.ico HTTP/1.1" 404 345 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en; rv:1.9.0.19) Gecko/2011032020 Camino/2.0.7 (like Firefox/3.0.19)" "-"
163
+ 211.147.248.220 - - [29/Jul/2011:06:50:01 +0100] "" 400 349 "-" "-" "-"
164
+ 59.125.94.66 sigquit.net - [29/Jul/2011:07:35:02 +0100] "GET /~kazuya/Blog/cacti_graph_template_snmp_-_bind_query_statistics.xml HTTP/1.1" 404 345 "http://jpastuszek.sigquit.net/2009/03/graphing-bind-query-statistics-with.html" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30" "-"
165
+ 59.125.94.66 sigquit.net - [29/Jul/2011:07:35:02 +0100] "GET /favicon.ico HTTP/1.1" 404 345 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30" "-"
166
+ 208.80.194.31 sigquit.net - [29/Jul/2011:07:40:27 +0100] "GET / HTTP/1.0" 200 1 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YComp 5.0.0.0; .NET CLR 1.0.3705; Windows-Media-Player/10.00.00.3990)" "/var/www/localhost/./index.html"
167
+ 95.108.157.251 sigquit.net - [29/Jul/2011:08:45:43 +0100] "GET / HTTP/1.1" 200 1 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" "/var/www/localhost/./index.html"
168
+ 220.181.108.147 sigquit.net - [29/Jul/2011:15:39:29 +0100] "GET / HTTP/1.1" 200 1 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" "/var/www/localhost/./index.html"
169
+ 207.46.204.237 sigquit.net - [29/Jul/2011:17:43:28 +0100] "GET /robots.txt HTTP/1.1" 404 345 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" "-"
170
+ 207.46.204.220 sigquit.net - [29/Jul/2011:17:46:54 +0100] "GET / HTTP/1.1" 200 1 "-" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0; WOW64; Trident/5.0)" "/var/www/localhost/./index.html"
171
+ 119.63.196.39 sigquit.net - [30/Jul/2011:00:52:14 +0100] "GET /robots.txt HTTP/1.1" 404 345 "-" "Baiduspider+(+http://www.baidu.com/search/spider.htm)" "-"
172
+ 95.108.157.251 host-89-228-254-163.olsztyn.mm.pl - [30/Jul/2011:07:09:44 +0100] "GET /robots.txt HTTP/1.1" 404 345 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" "-"
173
+ 95.108.157.251 host-89-228-254-163.olsztyn.mm.pl - [30/Jul/2011:14:33:37 +0100] "GET / HTTP/1.1" 200 1 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" "/var/www/localhost/./index.html"
174
+ 208.80.194.32 sigquit.net - [30/Jul/2011:22:51:09 +0100] "GET / HTTP/1.0" 200 1 "-" "Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; ZangoToolbar 4.8.2)" "/var/www/localhost/./index.html"
175
+ 220.181.108.155 sigquit.net - [30/Jul/2011:23:11:25 +0100] "GET / HTTP/1.1" 200 1 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" "/var/www/localhost/./index.html"
176
+ 119.63.196.87 sigquit.net - [30/Jul/2011:23:50:02 +0100] "GET /robots.txt HTTP/1.1" 404 345 "-" "Baiduspider+(+http://www.baidu.com/search/spider.htm)" "-"
177
+ 95.26.88.184 sigquit.net - [31/Jul/2011:02:58:18 +0100] "GET / HTTP/1.0" 200 1 "http://yandex.ru/yandsearch?text=sigquit.net" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)" "/var/www/localhost/./index.html"
178
+ 67.195.111.239 sigquit.net - [31/Jul/2011:06:22:36 +0100] "GET /robots.txt HTTP/1.0" 404 345 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" "-"