nfcollector 3.2.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/.gitignore +17 -0
- data/.rspec +3 -0
- data/.rvmrc +1 -0
- data/Gemfile +8 -0
- data/LICENSE.txt +22 -0
- data/README.md +29 -0
- data/Rakefile +1 -0
- data/lib/nfcollector.rb +41 -0
- data/lib/nfcollector/attribute_validator.rb +59 -0
- data/lib/nfcollector/attributes.rb +99 -0
- data/lib/nfcollector/categoriser.rb +43 -0
- data/lib/nfcollector/category_partition.rb +17 -0
- data/lib/nfcollector/configuration.rb +24 -0
- data/lib/nfcollector/copy_file_writer.rb +47 -0
- data/lib/nfcollector/domain_parser.rb +49 -0
- data/lib/nfcollector/input_definition.rb +31 -0
- data/lib/nfcollector/mapping.rb +7 -0
- data/lib/nfcollector/mapping/categories_processor.rb +36 -0
- data/lib/nfcollector/mapping/column_transpiler.rb +29 -0
- data/lib/nfcollector/mapping/default_output.rb +45 -0
- data/lib/nfcollector/mapping/effective_tld_names.dat +4394 -0
- data/lib/nfcollector/mapping/indexer.rb +21 -0
- data/lib/nfcollector/mapping/mapped_row.rb +21 -0
- data/lib/nfcollector/mapping/output.rb +59 -0
- data/lib/nfcollector/mapping/transpiler.rb +92 -0
- data/lib/nfcollector/nfcollector_exception.rb +4 -0
- data/lib/nfcollector/partition.rb +76 -0
- data/lib/nfcollector/partitioner.rb +37 -0
- data/lib/nfcollector/payload_processor.rb +46 -0
- data/lib/nfcollector/sequence_generator.rb +11 -0
- data/lib/nfcollector/version.rb +3 -0
- data/lib/nfcollector/weblog_partition.rb +26 -0
- data/nfcollector.gemspec +30 -0
- data/spec/attribute_validator_spec.rb +23 -0
- data/spec/attributes_spec.rb +15 -0
- data/spec/command_parser_spec.rb +81 -0
- data/spec/copy_file_writer_spec.rb +95 -0
- data/spec/input_definition_spec.rb +18 -0
- data/spec/nfcollector/category_partitioner_spec.rb +51 -0
- data/spec/nfcollector/date_partitioner_spec.rb +19 -0
- data/spec/nfcollector/input_definition_spec.rb +32 -0
- data/spec/nfcollector/mapping/column_transpiler_spec.rb +26 -0
- data/spec/nfcollector/mapping/output_spec.rb +76 -0
- data/spec/nfcollector/mapping/transpiler_spec.rb +47 -0
- data/spec/payload_job_spec.rb +11 -0
- data/spec/payload_processor_spec.rb +114 -0
- data/spec/spec_helper.rb +89 -0
- data/test/domains_hosts +194826 -0
- data/test/generate_input.rb +79 -0
- data/test/input/input-1000.csv +1000 -0
- data/test/input/input-100000.csv +100000 -0
- data/test/input/input-100000.dat +64039 -0
- data/test/input/input-no-tags.csv +3 -0
- data/test/input/input-no-tags.dat +3 -0
- data/test/input/input-no-tags.gz +0 -0
- data/test/input/input-with-tags.csv.gz +0 -0
- data/test/test_helper.rb +15 -0
- data/test/tester.rb +32 -0
- metadata +252 -0
@@ -0,0 +1,79 @@
|
|
1
|
+
|
2
|
+
require File.expand_path(File.dirname(__FILE__) + '/../lib/nfcollector')
|
3
|
+
require 'csv'
|
4
|
+
|
5
|
+
p ARGV
|
6
|
+
if ARGV.size < 2
|
7
|
+
puts "Usage: #{__FILE__} <outfile> <rows> [zip]"
|
8
|
+
exit 1
|
9
|
+
end
|
10
|
+
|
11
|
+
output_file = ARGV[0]
|
12
|
+
line_count = ARGV[1].to_i
|
13
|
+
zip = (ARGV[2] == 'zip')
|
14
|
+
|
15
|
+
# Generates an input file with ">a,Rr,Rh,Rp,>A,t,Un,Hs,mt,<s,Cs,Rc"
|
16
|
+
|
17
|
+
class Array
|
18
|
+
def random
|
19
|
+
self[(Kernel.rand * self.size).to_i]
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
ISO8601 = "%Y-%m-%d %H:%M:%S.000"
|
24
|
+
|
25
|
+
$start_date = Time.local(2011, 5, 6)
|
26
|
+
|
27
|
+
def random_date
|
28
|
+
($start_date + (rand * 86400).to_i).strftime(ISO8601)
|
29
|
+
end
|
30
|
+
|
31
|
+
responses = %w(A D W)
|
32
|
+
usernames = %w(john terry eric terry graham michael daniel jayne jordan sam fabian jeremy robert alexis roger ben)
|
33
|
+
|
34
|
+
domains = []
|
35
|
+
File.open('test/domains_hosts', 'r') do |f|
|
36
|
+
f.each_line do |line|
|
37
|
+
arry = line.split(",").map(&:strip)
|
38
|
+
domains.push(arry) if (arry[1] && arry[1].length > 7)
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
fqdns = %w(dan.netfox.local paul.netfox.local warren.netfox.local mbp.remote)
|
43
|
+
response_codes = %w(404 500 407 403)
|
44
|
+
mimes = %w(text/html text/plain image/jpeg application/octet-stream)
|
45
|
+
categories = %w(business porn social media geek web shopping)
|
46
|
+
|
47
|
+
File.open(output_file, "w") do |file|
|
48
|
+
csv = CSV.new(file, :force_quotes => true, :skip_blanks => true)
|
49
|
+
1.upto(line_count) do |i|
|
50
|
+
csv << [
|
51
|
+
"10.1.1." << (rand * 250).to_i.to_s,
|
52
|
+
responses.random,
|
53
|
+
domains.random[0],
|
54
|
+
"/foo?bar",
|
55
|
+
fqdns.random,
|
56
|
+
random_date,
|
57
|
+
usernames.random,
|
58
|
+
i.even? ? 200 : response_codes.random,
|
59
|
+
mimes.random,
|
60
|
+
(rand * 100000).to_i,
|
61
|
+
(rand * 1.9).to_i
|
62
|
+
#[ categories.random, categories.random ].uniq.join(":")
|
63
|
+
]
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
67
|
+
if zip
|
68
|
+
puts "Zipping..."
|
69
|
+
content = ""
|
70
|
+
File.open(output_file, "r") do |file|
|
71
|
+
content << file.read
|
72
|
+
end
|
73
|
+
|
74
|
+
File.open("#{output_file}.gz", "w") do |file|
|
75
|
+
gz = Zlib::GzipWriter.new(file)
|
76
|
+
gz.write(content)
|
77
|
+
gz.close
|
78
|
+
end
|
79
|
+
end
|
@@ -0,0 +1,1000 @@
|
|
1
|
+
10.1.1.28,D,migueldoliveira.com,/foo?bar,dan.netfox.local,2011-05-06 15:13:08.000,michael,404,text/html,31460,0,media:geek
|
2
|
+
10.1.1.99,W,vicgov-cdn.effectivemeasure.net,/foo?bar,mbp.remote,2011-05-06 10:59:10.000,terry,200,text/plain,75029,1,business:shopping
|
3
|
+
10.1.1.199,W,03956280895.38.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 23:35:30.000,fabian,407,image/jpeg,90066,0,web:media
|
4
|
+
10.1.1.1,A,www.dieselstation.com,/foo?bar,mbp.remote,2011-05-06 12:51:52.000,michael,200,image/jpeg,90301,1,social:business
|
5
|
+
10.1.1.185,D,www.whatsuppub.com,/foo?bar,paul.netfox.local,2011-05-06 11:18:02.000,eric,500,image/jpeg,54308,0,porn:business
|
6
|
+
10.1.1.43,W,stat.360safe.com,/foo?bar,mbp.remote,2011-05-06 13:04:40.000,daniel,200,image/jpeg,5698,1,web:social
|
7
|
+
10.1.1.11,W,www.youngaus.com.au,/foo?bar,paul.netfox.local,2011-05-06 14:50:47.000,graham,404,application/octet-stream,14290,1,shopping:porn
|
8
|
+
10.1.1.104,W,02129397137.18.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 23:15:23.000,michael,200,text/html,12167,0,social:media
|
9
|
+
10.1.1.84,W,www.mw2blog.com,/foo?bar,paul.netfox.local,2011-05-06 05:29:56.000,roger,403,application/octet-stream,45046,0,business
|
10
|
+
10.1.1.135,D,th1225.photobucket.com,/foo?bar,dan.netfox.local,2011-05-06 18:19:02.000,sam,200,image/jpeg,62135,1,social:porn
|
11
|
+
10.1.1.182,A,0764414658.103.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 13:15:43.000,alexis,500,text/plain,9059,1,geek
|
12
|
+
10.1.1.134,W,0854241866.29.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 10:14:49.000,terry,200,text/html,54729,1,shopping:social
|
13
|
+
10.1.1.70,W,03157620380.31.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 11:05:35.000,graham,403,application/octet-stream,39145,1,social:media
|
14
|
+
10.1.1.189,A,liftedhearts.net,/foo?bar,warren.netfox.local,2011-05-06 12:35:42.000,sam,200,application/octet-stream,94367,0,business
|
15
|
+
10.1.1.222,W,s30.divxden.com,/foo?bar,warren.netfox.local,2011-05-06 02:05:03.000,terry,404,image/jpeg,14055,0,business
|
16
|
+
10.1.1.58,W,www.123greetings.com,/foo?bar,mbp.remote,2011-05-06 22:12:02.000,eric,200,application/octet-stream,50571,1,media:porn
|
17
|
+
10.1.1.103,W,0910682302.100.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 08:47:28.000,daniel,500,text/html,95068,0,media:porn
|
18
|
+
10.1.1.62,A,02288335742.111.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 19:08:40.000,eric,200,text/plain,70501,0,porn:geek
|
19
|
+
10.1.1.188,W,www.edubook.com,/foo?bar,dan.netfox.local,2011-05-06 19:37:58.000,daniel,500,image/jpeg,82957,0,porn:business
|
20
|
+
10.1.1.8,A,www.polarization.com,/foo?bar,dan.netfox.local,2011-05-06 17:47:42.000,jayne,200,image/jpeg,36751,0,media
|
21
|
+
10.1.1.52,D,www.fitzroyjuniorfc.com.au,/foo?bar,dan.netfox.local,2011-05-06 04:32:55.000,jordan,404,text/html,77330,0,business:shopping
|
22
|
+
10.1.1.203,W,www.kellyindustries.com,/foo?bar,warren.netfox.local,2011-05-06 05:40:46.000,robert,200,text/html,14690,1,business:web
|
23
|
+
10.1.1.92,W,i8.ebayimg.com,/foo?bar,dan.netfox.local,2011-05-06 23:22:38.000,michael,407,text/plain,91877,1,media:social
|
24
|
+
10.1.1.88,W,littleblackbike.com,/foo?bar,mbp.remote,2011-05-06 02:25:40.000,roger,200,text/plain,29658,0,shopping:geek
|
25
|
+
10.1.1.36,W,01833741736.10.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 12:56:44.000,eric,403,application/octet-stream,97479,0,social
|
26
|
+
10.1.1.93,D,0k.010.img98.com,/foo?bar,dan.netfox.local,2011-05-06 10:53:40.000,graham,200,application/octet-stream,7737,1,business:social
|
27
|
+
10.1.1.144,W,13799937011.26.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 20:17:16.000,terry,403,text/html,8053,1,business:geek
|
28
|
+
10.1.1.200,A,cdn2.outspark.com,/foo?bar,paul.netfox.local,2011-05-06 14:56:25.000,jayne,200,application/octet-stream,55548,1,shopping:web
|
29
|
+
10.1.1.249,A,www.handsetdetection.com,/foo?bar,warren.netfox.local,2011-05-06 20:34:51.000,jayne,500,text/plain,73461,0,media:web
|
30
|
+
10.1.1.24,A,www.pinocchiomuseum.org,/foo?bar,paul.netfox.local,2011-05-06 04:26:53.000,daniel,200,text/html,24144,1,shopping:geek
|
31
|
+
10.1.1.153,D,f21.360tag.com,/foo?bar,mbp.remote,2011-05-06 05:38:34.000,michael,407,text/plain,25327,1,media
|
32
|
+
10.1.1.243,D,0587733193.66.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 08:53:12.000,roger,200,application/octet-stream,70984,0,porn:shopping
|
33
|
+
10.1.1.153,W,www.xyxya.com,/foo?bar,dan.netfox.local,2011-05-06 09:15:22.000,eric,407,application/octet-stream,54562,1,porn:geek
|
34
|
+
10.1.1.134,A,embed.5min.com,/foo?bar,dan.netfox.local,2011-05-06 22:31:55.000,robert,200,image/jpeg,14193,1,web:shopping
|
35
|
+
10.1.1.125,A,01021287933.73.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 16:21:52.000,jordan,500,application/octet-stream,60458,1,shopping:geek
|
36
|
+
10.1.1.244,A,04208671930.96.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 09:47:46.000,michael,200,image/jpeg,82964,0,web:geek
|
37
|
+
10.1.1.128,W,static.realore.com,/foo?bar,dan.netfox.local,2011-05-06 19:07:00.000,terry,403,text/plain,4631,1,business:web
|
38
|
+
10.1.1.10,D,www.lemongrassthaibistro.com.au,/foo?bar,paul.netfox.local,2011-05-06 00:43:34.000,ben,200,text/plain,54035,0,porn:web
|
39
|
+
10.1.1.226,D,www.happinessforall-foods.com,/foo?bar,dan.netfox.local,2011-05-06 08:08:17.000,jayne,500,text/plain,17841,1,geek:media
|
40
|
+
10.1.1.238,W,media.economist.com,/foo?bar,paul.netfox.local,2011-05-06 00:37:10.000,robert,200,application/octet-stream,19344,1,geek:business
|
41
|
+
10.1.1.157,D,www.alephbet.com,/foo?bar,warren.netfox.local,2011-05-06 05:21:27.000,fabian,403,image/jpeg,90901,0,shopping:geek
|
42
|
+
10.1.1.187,D,0989320637.32.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 19:13:14.000,jayne,200,text/plain,30452,0,shopping:social
|
43
|
+
10.1.1.37,D,www.abbott22.com,/foo?bar,warren.netfox.local,2011-05-06 02:36:01.000,terry,500,application/octet-stream,45528,1,shopping:social
|
44
|
+
10.1.1.26,W,go.intervalworld.com,/foo?bar,dan.netfox.local,2011-05-06 23:30:11.000,alexis,200,image/jpeg,55725,0,web:business
|
45
|
+
10.1.1.36,W,habitatboise.com,/foo?bar,paul.netfox.local,2011-05-06 18:54:29.000,roger,407,text/html,69282,0,business:media
|
46
|
+
10.1.1.34,A,download945.mediafire.com,/foo?bar,paul.netfox.local,2011-05-06 17:37:00.000,jeremy,200,image/jpeg,40950,0,media:business
|
47
|
+
10.1.1.140,A,justnurman.files.wordpress.com,/foo?bar,dan.netfox.local,2011-05-06 14:44:04.000,robert,407,image/jpeg,84680,1,media:porn
|
48
|
+
10.1.1.27,D,www.designpublic.com,/foo?bar,mbp.remote,2011-05-06 00:35:26.000,roger,200,text/plain,310,0,media
|
49
|
+
10.1.1.183,D,a4.websitealive.com,/foo?bar,paul.netfox.local,2011-05-06 11:43:23.000,michael,403,text/plain,47672,1,porn:business
|
50
|
+
10.1.1.210,D,050937777.107.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 04:45:15.000,robert,200,text/plain,86269,0,web:media
|
51
|
+
10.1.1.77,D,1895487528.18.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 20:36:01.000,graham,500,text/html,62093,0,web:media
|
52
|
+
10.1.1.153,A,02532249981.18.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 10:32:34.000,terry,200,image/jpeg,10926,0,shopping:geek
|
53
|
+
10.1.1.159,W,www.download-tvshows.com,/foo?bar,warren.netfox.local,2011-05-06 18:05:33.000,sam,403,application/octet-stream,51284,1,media:shopping
|
54
|
+
10.1.1.191,D,imgs.xkcd.com,/foo?bar,dan.netfox.local,2011-05-06 10:41:50.000,ben,200,image/jpeg,51956,1,porn:geek
|
55
|
+
10.1.1.62,A,0874760090.105.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 14:58:04.000,daniel,404,text/plain,40893,0,social:business
|
56
|
+
10.1.1.112,W,fnpw.org.au,/foo?bar,paul.netfox.local,2011-05-06 12:54:57.000,robert,200,image/jpeg,71670,0,web:social
|
57
|
+
10.1.1.168,A,www.accorhotels.mobi,/foo?bar,paul.netfox.local,2011-05-06 09:29:21.000,jordan,407,application/octet-stream,82205,0,shopping:web
|
58
|
+
10.1.1.135,D,www.realcrash.com,/foo?bar,paul.netfox.local,2011-05-06 03:02:16.000,alexis,200,application/octet-stream,48429,1,geek:porn
|
59
|
+
10.1.1.8,W,counter49.bravenet.com,/foo?bar,mbp.remote,2011-05-06 04:30:24.000,fabian,403,image/jpeg,6496,1,shopping:porn
|
60
|
+
10.1.1.119,W,img.5d10g.com,/foo?bar,dan.netfox.local,2011-05-06 21:21:59.000,robert,200,image/jpeg,94478,1,web
|
61
|
+
10.1.1.130,A,friendfeed.com,/foo?bar,warren.netfox.local,2011-05-06 00:59:04.000,graham,500,application/octet-stream,71451,1,shopping:porn
|
62
|
+
10.1.1.176,D,www.lvmama.com,/foo?bar,mbp.remote,2011-05-06 02:17:39.000,sam,200,text/plain,24365,0,porn:media
|
63
|
+
10.1.1.30,W,images.ugoto.com,/foo?bar,mbp.remote,2011-05-06 16:56:48.000,jordan,403,image/jpeg,7177,0,business:media
|
64
|
+
10.1.1.87,W,en.wikisource.org,/foo?bar,warren.netfox.local,2011-05-06 14:36:45.000,sam,200,text/html,67279,1,social:web
|
65
|
+
10.1.1.80,W,mu.shinobi.jp,/foo?bar,warren.netfox.local,2011-05-06 08:30:23.000,john,500,image/jpeg,42388,0,social:web
|
66
|
+
10.1.1.188,A,1918250494.86.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 18:04:02.000,alexis,200,application/octet-stream,60052,0,porn:geek
|
67
|
+
10.1.1.26,W,02539575452.75.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 00:44:42.000,graham,500,image/jpeg,40351,1,shopping:web
|
68
|
+
10.1.1.232,D,02166313245.44.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 01:07:01.000,jeremy,200,image/jpeg,1492,0,business:web
|
69
|
+
10.1.1.48,W,3.126.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 05:15:18.000,michael,500,application/octet-stream,74801,0,business:geek
|
70
|
+
10.1.1.2,W,www.peainapod.com.au,/foo?bar,warren.netfox.local,2011-05-06 13:51:40.000,sam,200,text/html,666,0,porn:shopping
|
71
|
+
10.1.1.88,D,eeepc.asus.com,/foo?bar,warren.netfox.local,2011-05-06 07:24:36.000,robert,407,application/octet-stream,79628,0,web:business
|
72
|
+
10.1.1.122,A,a1696.phobos.apple.com,/foo?bar,paul.netfox.local,2011-05-06 10:17:58.000,jordan,200,application/octet-stream,79042,1,shopping:media
|
73
|
+
10.1.1.154,D,rcv-srv97.inplay.tubemogul.com,/foo?bar,paul.netfox.local,2011-05-06 14:10:43.000,alexis,500,application/octet-stream,17959,0,web:porn
|
74
|
+
10.1.1.189,W,l5.zedo.com,/foo?bar,mbp.remote,2011-05-06 06:27:47.000,roger,200,text/html,37221,1,porn:business
|
75
|
+
10.1.1.64,D,02473775050.99.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 14:21:23.000,robert,407,text/plain,73853,1,web:social
|
76
|
+
10.1.1.225,A,02803274839.10.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 14:21:32.000,eric,200,text/html,85174,0,web:social
|
77
|
+
10.1.1.123,W,02805286015.99.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 21:06:03.000,jordan,500,application/octet-stream,47199,0,porn:geek
|
78
|
+
10.1.1.14,W,www.praize.com,/foo?bar,dan.netfox.local,2011-05-06 18:16:32.000,alexis,200,text/html,43790,1,porn:web
|
79
|
+
10.1.1.139,W,www.blueytravel.com,/foo?bar,warren.netfox.local,2011-05-06 11:37:44.000,graham,404,text/plain,76589,0,geek:media
|
80
|
+
10.1.1.241,W,www.pspsonywallpaper.com,/foo?bar,dan.netfox.local,2011-05-06 00:46:17.000,john,200,application/octet-stream,88080,1,media:porn
|
81
|
+
10.1.1.61,A,wrathofnino.files.wordpress.com,/foo?bar,dan.netfox.local,2011-05-06 13:22:08.000,graham,407,application/octet-stream,55061,0,media:business
|
82
|
+
10.1.1.81,W,www.adobetutorialz.com,/foo?bar,paul.netfox.local,2011-05-06 13:50:06.000,jeremy,200,image/jpeg,35901,1,porn
|
83
|
+
10.1.1.159,D,www.australianlutherunworldservice.com,/foo?bar,paul.netfox.local,2011-05-06 23:00:45.000,fabian,404,text/plain,85006,1,porn:geek
|
84
|
+
10.1.1.61,D,02398243191.76.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 06:49:15.000,jayne,200,text/plain,32621,0,geek:social
|
85
|
+
10.1.1.62,W,02698688200.161.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 08:02:44.000,jordan,403,image/jpeg,63603,0,web
|
86
|
+
10.1.1.39,W,thelittleboutiqueatgrange.blogspot.com,/foo?bar,mbp.remote,2011-05-06 16:34:02.000,jayne,200,image/jpeg,58779,0,media:social
|
87
|
+
10.1.1.36,W,i160.photobucket.com,/foo?bar,warren.netfox.local,2011-05-06 02:43:31.000,terry,407,text/html,88687,1,shopping:geek
|
88
|
+
10.1.1.152,W,1524634376.59.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 11:31:05.000,daniel,200,text/html,95748,0,social:shopping
|
89
|
+
10.1.1.230,A,www.balivandriver.com,/foo?bar,mbp.remote,2011-05-06 17:23:58.000,jayne,403,image/jpeg,3832,1,social:web
|
90
|
+
10.1.1.151,W,1681292902.83.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 03:54:36.000,eric,200,text/html,32769,0,web:porn
|
91
|
+
10.1.1.211,A,0673147245.51.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 06:14:49.000,jeremy,407,application/octet-stream,86178,0,business:porn
|
92
|
+
10.1.1.221,A,www.muamat.com,/foo?bar,mbp.remote,2011-05-06 01:06:28.000,jeremy,200,application/octet-stream,45639,0,web
|
93
|
+
10.1.1.232,A,075900684.56.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 18:52:00.000,jeremy,403,application/octet-stream,55709,1,shopping
|
94
|
+
10.1.1.74,A,d2c-common.wmg.ciscoeos.com,/foo?bar,warren.netfox.local,2011-05-06 15:04:50.000,terry,200,text/html,31860,0,shopping:media
|
95
|
+
10.1.1.76,A,02172978711.56.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 14:56:49.000,john,403,text/plain,47655,1,media:business
|
96
|
+
10.1.1.234,W,www.stpt.com,/foo?bar,mbp.remote,2011-05-06 21:11:21.000,michael,200,application/octet-stream,2465,0,social:business
|
97
|
+
10.1.1.188,A,sasani.persiangig.ir,/foo?bar,dan.netfox.local,2011-05-06 09:52:50.000,jayne,500,text/html,68592,1,media:web
|
98
|
+
10.1.1.38,A,static1.shopify.com,/foo?bar,paul.netfox.local,2011-05-06 03:32:40.000,eric,200,image/jpeg,53436,0,geek:porn
|
99
|
+
10.1.1.124,D,02810598522.41.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 12:02:51.000,terry,500,application/octet-stream,79242,1,geek
|
100
|
+
10.1.1.40,A,mslabs-288.vo.llnwd.net,/foo?bar,dan.netfox.local,2011-05-06 08:04:53.000,michael,200,text/plain,2892,0,web:porn
|
101
|
+
10.1.1.184,W,03899336752.91.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 23:02:08.000,graham,403,image/jpeg,74105,1,geek:business
|
102
|
+
10.1.1.197,A,www.musica.at,/foo?bar,warren.netfox.local,2011-05-06 18:25:49.000,jeremy,200,application/octet-stream,65976,0,social:geek
|
103
|
+
10.1.1.82,W,mslabs-005.vo.llnwd.net,/foo?bar,paul.netfox.local,2011-05-06 03:58:42.000,terry,404,application/octet-stream,24415,1,media:business
|
104
|
+
10.1.1.206,A,www.neopets.com,/foo?bar,paul.netfox.local,2011-05-06 09:13:02.000,eric,200,text/html,42867,0,web:porn
|
105
|
+
10.1.1.211,A,maciekkobielski.com,/foo?bar,mbp.remote,2011-05-06 09:57:33.000,jordan,403,text/html,8225,0,geek
|
106
|
+
10.1.1.54,D,oonoshop.imghost.cafe24.com,/foo?bar,warren.netfox.local,2011-05-06 08:15:02.000,terry,200,image/jpeg,4649,0,social:business
|
107
|
+
10.1.1.66,D,cookuk.uk.intellitxt.com,/foo?bar,warren.netfox.local,2011-05-06 22:22:00.000,jordan,404,image/jpeg,80488,1,geek:porn
|
108
|
+
10.1.1.114,D,www2.search.asic.gov.au,/foo?bar,mbp.remote,2011-05-06 18:16:52.000,jeremy,200,text/plain,59071,1,media:shopping
|
109
|
+
10.1.1.161,A,www.canetoadsinoz.com,/foo?bar,dan.netfox.local,2011-05-06 06:40:02.000,terry,403,image/jpeg,65441,0,media:business
|
110
|
+
10.1.1.54,W,static-cdn-cf.oggifinogi.com,/foo?bar,dan.netfox.local,2011-05-06 18:27:07.000,terry,200,image/jpeg,87801,1,media:porn
|
111
|
+
10.1.1.77,A,ohpmartin.wordpress.com,/foo?bar,mbp.remote,2011-05-06 00:11:00.000,jordan,500,application/octet-stream,44606,1,porn:geek
|
112
|
+
10.1.1.51,W,www.acpeople.com.au,/foo?bar,mbp.remote,2011-05-06 00:54:50.000,sam,200,text/html,37288,1,shopping
|
113
|
+
10.1.1.14,A,www.townsvillebulletin.com.au,/foo?bar,mbp.remote,2011-05-06 13:00:07.000,robert,500,application/octet-stream,24919,0,geek:media
|
114
|
+
10.1.1.205,A,03962114388.100.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 04:19:19.000,jayne,200,text/plain,76379,1,porn:social
|
115
|
+
10.1.1.120,D,www.watersidepropertysales.com.au,/foo?bar,paul.netfox.local,2011-05-06 22:22:41.000,john,403,text/html,97024,1,social:web
|
116
|
+
10.1.1.52,D,reviews.weddingpaperdivas.com,/foo?bar,dan.netfox.local,2011-05-06 14:52:08.000,alexis,200,text/plain,1215,0,business:porn
|
117
|
+
10.1.1.1,A,04276785368.100.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 20:57:06.000,robert,407,application/octet-stream,22903,1,media:business
|
118
|
+
10.1.1.113,D,www.geegle.com.au,/foo?bar,mbp.remote,2011-05-06 07:42:05.000,daniel,200,text/html,94700,0,geek:porn
|
119
|
+
10.1.1.199,D,cutecatsandlittlekittens.blogspot.com,/foo?bar,warren.netfox.local,2011-05-06 16:54:32.000,jeremy,403,text/plain,79372,1,geek:web
|
120
|
+
10.1.1.223,D,www1.static.zimbio.com,/foo?bar,paul.netfox.local,2011-05-06 05:10:40.000,roger,200,text/html,25302,1,business:web
|
121
|
+
10.1.1.58,A,static.criteo.net,/foo?bar,dan.netfox.local,2011-05-06 19:27:45.000,robert,404,image/jpeg,68714,0,media:geek
|
122
|
+
10.1.1.211,A,03239845263.65.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 15:03:25.000,terry,200,application/octet-stream,29350,1,social:business
|
123
|
+
10.1.1.36,D,gateway11.whoson.com,/foo?bar,mbp.remote,2011-05-06 12:40:18.000,john,407,application/octet-stream,8231,0,shopping
|
124
|
+
10.1.1.0,W,imgg.dt00.net,/foo?bar,paul.netfox.local,2011-05-06 21:44:16.000,terry,200,application/octet-stream,91346,0,business:web
|
125
|
+
10.1.1.91,D,www.facebook.cm,/foo?bar,mbp.remote,2011-05-06 19:46:05.000,jordan,404,image/jpeg,13334,1,business:web
|
126
|
+
10.1.1.193,A,girlshuntinggirls.com,/foo?bar,dan.netfox.local,2011-05-06 05:16:11.000,sam,200,text/html,18746,1,shopping:geek
|
127
|
+
10.1.1.223,A,0675400621.67.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 11:06:21.000,graham,403,image/jpeg,90598,1,shopping:porn
|
128
|
+
10.1.1.171,W,www.mapbuilder.net,/foo?bar,warren.netfox.local,2011-05-06 05:53:31.000,sam,200,text/plain,7220,1,porn:media
|
129
|
+
10.1.1.174,W,cache2.adhostingsolutions.com,/foo?bar,mbp.remote,2011-05-06 10:45:45.000,terry,403,text/html,53136,0,web:business
|
130
|
+
10.1.1.3,D,03847011486.100.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 11:56:52.000,ben,200,text/plain,15024,1,media:business
|
131
|
+
10.1.1.9,W,www.kellyskindergarten.com,/foo?bar,paul.netfox.local,2011-05-06 02:02:34.000,michael,404,image/jpeg,56711,1,porn:web
|
132
|
+
10.1.1.228,D,djibouti.usembassy.gov,/foo?bar,paul.netfox.local,2011-05-06 11:49:39.000,eric,200,image/jpeg,77344,1,shopping
|
133
|
+
10.1.1.59,A,04048702282.10.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 11:32:21.000,sam,404,image/jpeg,95510,0,social:geek
|
134
|
+
10.1.1.140,W,www.sheldongoh.com,/foo?bar,dan.netfox.local,2011-05-06 19:01:53.000,terry,200,image/jpeg,16153,1,social
|
135
|
+
10.1.1.70,W,www.alfredo-haeberli.com,/foo?bar,warren.netfox.local,2011-05-06 03:00:16.000,jordan,404,text/plain,59788,0,porn:media
|
136
|
+
10.1.1.178,W,tcmdiscovery.com,/foo?bar,paul.netfox.local,2011-05-06 01:47:42.000,robert,200,text/plain,6716,0,geek
|
137
|
+
10.1.1.171,D,blog.flauntme.com,/foo?bar,mbp.remote,2011-05-06 11:00:13.000,alexis,407,application/octet-stream,52606,0,business:web
|
138
|
+
10.1.1.118,W,www.history.navy.mil,/foo?bar,mbp.remote,2011-05-06 16:54:06.000,jayne,200,text/plain,29774,0,geek:web
|
139
|
+
10.1.1.215,A,s10.j-a-net.jp,/foo?bar,dan.netfox.local,2011-05-06 07:03:25.000,fabian,403,image/jpeg,38759,1,business:web
|
140
|
+
10.1.1.168,D,www.idisearch.com,/foo?bar,paul.netfox.local,2011-05-06 13:11:17.000,robert,200,application/octet-stream,77008,0,media:shopping
|
141
|
+
10.1.1.248,A,ak.jacquielawson.com,/foo?bar,warren.netfox.local,2011-05-06 07:30:17.000,alexis,404,text/html,26439,0,porn:shopping
|
142
|
+
10.1.1.45,D,www.sipresponse.com,/foo?bar,dan.netfox.local,2011-05-06 06:19:01.000,eric,200,text/html,22006,1,porn:media
|
143
|
+
10.1.1.186,W,03277965352.136.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 15:33:17.000,robert,404,text/html,99171,0,web:geek
|
144
|
+
10.1.1.122,D,www.etrust.org,/foo?bar,mbp.remote,2011-05-06 02:39:55.000,terry,200,image/jpeg,19353,0,geek:shopping
|
145
|
+
10.1.1.139,W,scouting4u.com,/foo?bar,mbp.remote,2011-05-06 02:29:03.000,jeremy,403,text/plain,6526,1,business:porn
|
146
|
+
10.1.1.103,W,forum7.hkgolden.com,/foo?bar,warren.netfox.local,2011-05-06 17:15:01.000,john,200,text/html,27767,0,shopping:geek
|
147
|
+
10.1.1.170,D,0126695036.29.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 23:12:33.000,roger,500,application/octet-stream,34279,1,shopping:social
|
148
|
+
10.1.1.196,W,www.adservingmedia.org,/foo?bar,paul.netfox.local,2011-05-06 17:55:48.000,eric,200,text/html,26996,1,geek:business
|
149
|
+
10.1.1.10,D,qingmingriverside.hk,/foo?bar,paul.netfox.local,2011-05-06 14:45:02.000,alexis,403,application/octet-stream,6754,1,media:shopping
|
150
|
+
10.1.1.141,W,adv08.edintorni.net,/foo?bar,warren.netfox.local,2011-05-06 03:18:30.000,john,200,text/html,74748,0,porn
|
151
|
+
10.1.1.5,A,4e.img.v4.skyrock.com,/foo?bar,dan.netfox.local,2011-05-06 03:21:54.000,eric,404,text/plain,21202,1,geek:business
|
152
|
+
10.1.1.103,W,cha-cdn220-is-1.se.bptvlive.ngcdn.telstra.com,/foo?bar,mbp.remote,2011-05-06 13:02:59.000,roger,200,image/jpeg,87502,0,social:media
|
153
|
+
10.1.1.47,W,aff1cb1de85e8a1aee4c428c220e1bc0e.profile.dfw3.cloudfront.net,/foo?bar,warren.netfox.local,2011-05-06 16:40:31.000,eric,407,text/html,14154,0,web:geek
|
154
|
+
10.1.1.83,A,fc.media.v4.skyrock.net,/foo?bar,warren.netfox.local,2011-05-06 18:41:30.000,michael,200,text/html,48659,1,business
|
155
|
+
10.1.1.29,A,www.childrensdisabilities.info,/foo?bar,dan.netfox.local,2011-05-06 00:30:43.000,john,404,text/plain,84309,1,shopping:web
|
156
|
+
10.1.1.122,A,connect.microsoft.com,/foo?bar,paul.netfox.local,2011-05-06 18:09:10.000,jayne,200,image/jpeg,83331,0,business:geek
|
157
|
+
10.1.1.115,W,www.dataserve.com.au,/foo?bar,dan.netfox.local,2011-05-06 04:14:50.000,alexis,500,text/plain,38724,0,geek:media
|
158
|
+
10.1.1.78,D,www939.megavideo.com,/foo?bar,paul.netfox.local,2011-05-06 17:21:39.000,fabian,200,text/plain,887,1,geek:business
|
159
|
+
10.1.1.117,D,s9.zetaboards.com,/foo?bar,warren.netfox.local,2011-05-06 16:08:42.000,ben,407,image/jpeg,85358,1,web:shopping
|
160
|
+
10.1.1.99,A,11388579693.127.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 14:40:11.000,michael,200,application/octet-stream,98913,1,business:geek
|
161
|
+
10.1.1.188,W,ts1.trafic.ro,/foo?bar,warren.netfox.local,2011-05-06 00:45:10.000,jayne,407,application/octet-stream,36804,1,web:shopping
|
162
|
+
10.1.1.193,W,www.jumpingjjays.com.au,/foo?bar,warren.netfox.local,2011-05-06 09:46:00.000,sam,200,application/octet-stream,3170,0,porn:media
|
163
|
+
10.1.1.29,D,www.flat-screentv.info,/foo?bar,warren.netfox.local,2011-05-06 08:04:47.000,john,500,application/octet-stream,54789,1,geek
|
164
|
+
10.1.1.19,W,02146468852.47.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 00:52:10.000,graham,200,text/plain,63054,1,social:web
|
165
|
+
10.1.1.209,W,www.cycling-secrets.com,/foo?bar,warren.netfox.local,2011-05-06 23:39:01.000,roger,404,application/octet-stream,40386,0,business
|
166
|
+
10.1.1.103,A,cdn.twyn-group.com,/foo?bar,mbp.remote,2011-05-06 14:15:25.000,daniel,200,text/plain,16967,1,geek:web
|
167
|
+
10.1.1.248,A,i522.photobucket.com,/foo?bar,warren.netfox.local,2011-05-06 16:34:32.000,jordan,407,text/plain,1638,1,media:shopping
|
168
|
+
10.1.1.19,A,msol.vo.msecnd.net,/foo?bar,paul.netfox.local,2011-05-06 11:42:57.000,terry,200,image/jpeg,46623,0,geek:media
|
169
|
+
10.1.1.184,W,barmaleiko.in,/foo?bar,warren.netfox.local,2011-05-06 18:28:16.000,michael,500,image/jpeg,62356,0,geek:business
|
170
|
+
10.1.1.11,A,www.builtforbusiness.com.au,/foo?bar,dan.netfox.local,2011-05-06 00:26:44.000,jordan,200,text/html,91193,1,business:web
|
171
|
+
10.1.1.25,W,viralappsec-ah.nbcuni.com,/foo?bar,mbp.remote,2011-05-06 12:27:56.000,eric,403,text/plain,28983,1,geek:porn
|
172
|
+
10.1.1.87,D,gq1.attach.mail.yahoo.com,/foo?bar,mbp.remote,2011-05-06 00:31:00.000,john,200,image/jpeg,57191,0,web:social
|
173
|
+
10.1.1.85,D,enewsletter.t-bone.com.au,/foo?bar,paul.netfox.local,2011-05-06 14:59:19.000,sam,404,text/plain,74156,1,web:business
|
174
|
+
10.1.1.28,W,by2msg4020715.by2.gateway.edge.messenger.live.com,/foo?bar,dan.netfox.local,2011-05-06 20:20:51.000,terry,200,application/octet-stream,14274,1,porn:social
|
175
|
+
10.1.1.13,W,065002211.50.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 19:24:32.000,robert,407,text/html,55578,0,shopping:media
|
176
|
+
10.1.1.33,D,www.116.com.cn,/foo?bar,mbp.remote,2011-05-06 01:32:43.000,michael,200,text/html,63785,0,business:shopping
|
177
|
+
10.1.1.162,A,1482860504.112.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 22:54:33.000,daniel,407,text/html,25827,0,geek:shopping
|
178
|
+
10.1.1.64,A,www.pingg.com,/foo?bar,warren.netfox.local,2011-05-06 15:35:51.000,robert,200,text/plain,55761,0,porn:business
|
179
|
+
10.1.1.109,D,www.zuji.com.au,/foo?bar,mbp.remote,2011-05-06 01:55:22.000,daniel,500,text/plain,65508,0,web:social
|
180
|
+
10.1.1.221,A,www.crsforums.info,/foo?bar,paul.netfox.local,2011-05-06 23:21:27.000,terry,200,text/html,47822,0,geek:web
|
181
|
+
10.1.1.51,D,www.catholicradioindy.org,/foo?bar,dan.netfox.local,2011-05-06 20:12:49.000,ben,403,text/plain,15519,1,social:porn
|
182
|
+
10.1.1.132,W,03026475461.50.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 06:52:38.000,ben,200,application/octet-stream,32407,1,social:porn
|
183
|
+
10.1.1.38,A,onlinehealthnews7.com,/foo?bar,mbp.remote,2011-05-06 15:48:16.000,eric,407,application/octet-stream,19296,1,web:geek
|
184
|
+
10.1.1.119,W,www.gamecuse.com,/foo?bar,warren.netfox.local,2011-05-06 05:51:35.000,ben,200,text/plain,23650,1,web:social
|
185
|
+
10.1.1.138,A,tawny75.blogspot.com,/foo?bar,mbp.remote,2011-05-06 13:31:11.000,graham,403,application/octet-stream,68873,1,social:media
|
186
|
+
10.1.1.19,A,img.2u-img.com.cn,/foo?bar,dan.netfox.local,2011-05-06 23:51:43.000,ben,200,text/plain,39039,1,porn:media
|
187
|
+
10.1.1.217,A,v23.nonxt2.c.youtube.com,/foo?bar,mbp.remote,2011-05-06 21:58:47.000,jeremy,404,text/html,23021,0,shopping:porn
|
188
|
+
10.1.1.15,D,polarbearstale.blogspot.com,/foo?bar,warren.netfox.local,2011-05-06 03:45:40.000,graham,200,application/octet-stream,60216,0,business:social
|
189
|
+
10.1.1.101,D,death-note-l.wetpaint.com,/foo?bar,mbp.remote,2011-05-06 10:11:56.000,roger,404,text/plain,12653,0,geek:shopping
|
190
|
+
10.1.1.47,A,www.swap.com,/foo?bar,warren.netfox.local,2011-05-06 06:23:47.000,terry,200,text/html,11285,1,business
|
191
|
+
10.1.1.142,A,www.taylor-lautner.com,/foo?bar,mbp.remote,2011-05-06 21:45:12.000,terry,500,text/plain,30654,0,social:geek
|
192
|
+
10.1.1.200,A,clinic116.com,/foo?bar,warren.netfox.local,2011-05-06 00:27:31.000,daniel,200,text/plain,74164,0,porn:business
|
193
|
+
10.1.1.33,W,static-au.accelerate-services.com,/foo?bar,mbp.remote,2011-05-06 06:08:33.000,roger,407,text/html,12056,0,porn:web
|
194
|
+
10.1.1.61,A,www.travelvaccination.com.au,/foo?bar,dan.netfox.local,2011-05-06 06:01:30.000,michael,200,application/octet-stream,21128,0,business:porn
|
195
|
+
10.1.1.12,W,www.velmex.com,/foo?bar,warren.netfox.local,2011-05-06 12:24:21.000,michael,404,text/html,88236,1,geek:porn
|
196
|
+
10.1.1.230,W,www.hostmagz.com,/foo?bar,dan.netfox.local,2011-05-06 22:11:56.000,michael,200,text/html,27932,0,social:media
|
197
|
+
10.1.1.14,D,www.virtualcancercentre.com,/foo?bar,dan.netfox.local,2011-05-06 03:08:05.000,eric,407,text/html,65293,1,social
|
198
|
+
10.1.1.43,W,ehg-francetel.hitbox.com,/foo?bar,warren.netfox.local,2011-05-06 21:17:18.000,robert,200,text/html,19637,0,business:media
|
199
|
+
10.1.1.40,D,01415045034.107.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 15:07:52.000,michael,407,text/html,30077,0,media:porn
|
200
|
+
10.1.1.139,A,db1.hiido.cn,/foo?bar,mbp.remote,2011-05-06 02:05:10.000,robert,200,application/octet-stream,64941,1,social:geek
|
201
|
+
10.1.1.148,A,www.formel1-aktuell.org,/foo?bar,mbp.remote,2011-05-06 05:05:42.000,roger,407,image/jpeg,47560,0,business
|
202
|
+
10.1.1.36,W,www.stencil-library.com,/foo?bar,mbp.remote,2011-05-06 05:08:16.000,fabian,200,text/html,38226,1,web:porn
|
203
|
+
10.1.1.248,A,counter28.bravenet.com,/foo?bar,dan.netfox.local,2011-05-06 08:56:25.000,terry,403,text/html,77511,1,web
|
204
|
+
10.1.1.71,D,www.environment.nationalgeographic.com,/foo?bar,warren.netfox.local,2011-05-06 05:18:39.000,alexis,200,image/jpeg,3222,0,business:social
|
205
|
+
10.1.1.155,A,1-10033-1-10033-509-1-0-719-9-62543730.r.radar.cedexis.net,/foo?bar,dan.netfox.local,2011-05-06 23:46:51.000,ben,403,application/octet-stream,45314,1,media:porn
|
206
|
+
10.1.1.68,D,01197159218.89.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 06:57:45.000,jordan,200,application/octet-stream,94234,1,shopping:social
|
207
|
+
10.1.1.30,D,www.motivation123.com,/foo?bar,mbp.remote,2011-05-06 09:26:52.000,alexis,403,application/octet-stream,46438,1,shopping:social
|
208
|
+
10.1.1.81,D,www.prisb.com,/foo?bar,mbp.remote,2011-05-06 17:54:58.000,michael,200,text/plain,15636,1,geek:business
|
209
|
+
10.1.1.195,A,01924756092.105.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 13:25:25.000,michael,403,text/html,53957,1,social:porn
|
210
|
+
10.1.1.134,A,0250225887.26.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 05:18:07.000,alexis,200,text/plain,54397,1,porn:business
|
211
|
+
10.1.1.23,W,01306665373.10.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 14:54:43.000,alexis,500,image/jpeg,11062,0,business:media
|
212
|
+
10.1.1.65,A,stats.reconciliation.org.au,/foo?bar,dan.netfox.local,2011-05-06 09:37:10.000,michael,200,application/octet-stream,7527,0,social:geek
|
213
|
+
10.1.1.215,D,t06a.hypem.com,/foo?bar,warren.netfox.local,2011-05-06 21:14:48.000,robert,403,text/html,84105,0,web:porn
|
214
|
+
10.1.1.235,W,03738137769.141.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 21:53:15.000,daniel,200,image/jpeg,28005,1,shopping:social
|
215
|
+
10.1.1.86,D,www.greatsouthernrail.com.au,/foo?bar,dan.netfox.local,2011-05-06 06:59:40.000,terry,407,text/plain,62843,0,business:porn
|
216
|
+
10.1.1.10,D,nuvve2g0qpwzzw1n.stats.paypal.com,/foo?bar,warren.netfox.local,2011-05-06 21:29:39.000,jayne,200,text/html,448,1,web:shopping
|
217
|
+
10.1.1.38,W,02537694628.69.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 19:03:05.000,terry,404,text/plain,38952,0,social:shopping
|
218
|
+
10.1.1.4,W,0846170.11.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 05:52:51.000,john,200,image/jpeg,61815,0,web:business
|
219
|
+
10.1.1.37,A,0461864591.14.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 20:31:46.000,jayne,404,text/html,97751,1,porn:web
|
220
|
+
10.1.1.193,W,lasauniversity.tripod.com,/foo?bar,dan.netfox.local,2011-05-06 14:16:04.000,terry,200,image/jpeg,79100,1,shopping:social
|
221
|
+
10.1.1.75,D,loveshanshan1986.taobao.com,/foo?bar,mbp.remote,2011-05-06 23:28:33.000,robert,500,text/plain,32823,0,business:web
|
222
|
+
10.1.1.24,D,adc1.mingpao.com,/foo?bar,warren.netfox.local,2011-05-06 00:52:03.000,graham,200,text/plain,43322,0,geek:social
|
223
|
+
10.1.1.116,W,www.fairymountfarm.com,/foo?bar,dan.netfox.local,2011-05-06 07:46:43.000,eric,404,application/octet-stream,84596,1,web:social
|
224
|
+
10.1.1.82,W,www.gourmandia.com,/foo?bar,dan.netfox.local,2011-05-06 06:32:26.000,terry,200,text/html,46678,1,social:shopping
|
225
|
+
10.1.1.155,A,02025233068.123.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 16:17:14.000,graham,404,text/html,21697,1,shopping:web
|
226
|
+
10.1.1.47,W,02777401993.96.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 22:00:22.000,michael,200,text/plain,59368,1,business:geek
|
227
|
+
10.1.1.36,W,answer.hiyawu.com,/foo?bar,mbp.remote,2011-05-06 06:35:32.000,terry,500,application/octet-stream,16814,0,media:social
|
228
|
+
10.1.1.70,A,shokzguide.com,/foo?bar,mbp.remote,2011-05-06 23:13:26.000,sam,200,text/html,77862,0,geek:business
|
229
|
+
10.1.1.38,A,www.boards.ie,/foo?bar,warren.netfox.local,2011-05-06 06:12:21.000,roger,407,text/html,3999,1,web:business
|
230
|
+
10.1.1.216,W,04169917309.74.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 11:47:46.000,alexis,200,text/html,81905,0,social:web
|
231
|
+
10.1.1.241,W,drinkcosmosmokevoguebebazaar.tumblr.com,/foo?bar,dan.netfox.local,2011-05-06 10:46:34.000,jordan,407,text/html,32918,1,porn
|
232
|
+
10.1.1.178,A,testcdn.chinacache.com,/foo?bar,paul.netfox.local,2011-05-06 01:24:33.000,eric,200,application/octet-stream,38314,0,web:media
|
233
|
+
10.1.1.122,W,pages.blueidea.com,/foo?bar,paul.netfox.local,2011-05-06 19:02:08.000,michael,500,text/html,53887,0,social:geek
|
234
|
+
10.1.1.238,W,th213.photobucket.com,/foo?bar,warren.netfox.local,2011-05-06 06:26:28.000,alexis,200,image/jpeg,21855,1,porn:social
|
235
|
+
10.1.1.157,W,www.framinghampediatrics.com,/foo?bar,paul.netfox.local,2011-05-06 18:30:30.000,terry,407,image/jpeg,66569,0,shopping
|
236
|
+
10.1.1.202,D,www.beachthailand.com,/foo?bar,warren.netfox.local,2011-05-06 14:29:28.000,graham,200,text/html,3041,0,media:business
|
237
|
+
10.1.1.129,A,01971664376.52.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 14:42:39.000,jayne,404,image/jpeg,96275,1,media:business
|
238
|
+
10.1.1.31,A,annyballardini.blogspot.com,/foo?bar,dan.netfox.local,2011-05-06 11:09:37.000,graham,200,image/jpeg,30868,1,media:social
|
239
|
+
10.1.1.222,W,www.internetcommunication-fr.com,/foo?bar,warren.netfox.local,2011-05-06 07:58:52.000,john,407,image/jpeg,66050,0,porn:business
|
240
|
+
10.1.1.144,W,www.celebrateerie.com,/foo?bar,dan.netfox.local,2011-05-06 06:37:02.000,roger,200,application/octet-stream,16785,0,web:business
|
241
|
+
10.1.1.201,A,widgetprovider.daum.net,/foo?bar,paul.netfox.local,2011-05-06 00:33:28.000,daniel,403,text/plain,11744,0,shopping:business
|
242
|
+
10.1.1.94,W,www.shakespeare.com,/foo?bar,warren.netfox.local,2011-05-06 19:26:42.000,alexis,200,image/jpeg,47352,0,business:porn
|
243
|
+
10.1.1.159,W,img833.imageshack.us,/foo?bar,paul.netfox.local,2011-05-06 23:16:43.000,jayne,407,image/jpeg,71653,1,web
|
244
|
+
10.1.1.64,D,94.images22.51img1.com,/foo?bar,mbp.remote,2011-05-06 13:33:43.000,daniel,200,text/html,15422,0,porn:geek
|
245
|
+
10.1.1.102,A,www.melbourneit.com.au,/foo?bar,paul.netfox.local,2011-05-06 14:45:20.000,roger,404,text/plain,43188,0,web
|
246
|
+
10.1.1.174,W,www.stratospherehotel.com,/foo?bar,warren.netfox.local,2011-05-06 14:03:02.000,graham,200,text/plain,40723,1,porn
|
247
|
+
10.1.1.77,D,secure.liveinaustralia.com,/foo?bar,dan.netfox.local,2011-05-06 09:30:37.000,daniel,404,text/plain,55330,1,porn
|
248
|
+
10.1.1.40,W,www.gamersaloon.com,/foo?bar,warren.netfox.local,2011-05-06 03:29:10.000,michael,200,text/html,89685,1,business:web
|
249
|
+
10.1.1.238,A,02626698649.44.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 16:18:47.000,graham,407,text/plain,88830,0,business:web
|
250
|
+
10.1.1.93,D,www.visitorsatisfaction.com,/foo?bar,paul.netfox.local,2011-05-06 13:58:57.000,daniel,200,text/plain,11990,0,business:web
|
251
|
+
10.1.1.92,A,dilbercik.seesaa.net,/foo?bar,dan.netfox.local,2011-05-06 15:47:26.000,roger,404,text/html,96878,0,shopping:web
|
252
|
+
10.1.1.65,A,01057720713.87.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 23:41:31.000,ben,200,image/jpeg,58562,1,business:geek
|
253
|
+
10.1.1.41,A,03295234438.131.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 21:19:11.000,sam,403,text/html,53655,0,porn:social
|
254
|
+
10.1.1.203,W,ladybbs.renren.com,/foo?bar,mbp.remote,2011-05-06 10:00:31.000,jordan,200,text/plain,54865,0,geek:porn
|
255
|
+
10.1.1.213,W,users.tellurian.com,/foo?bar,warren.netfox.local,2011-05-06 19:13:12.000,robert,404,text/html,36132,1,business:social
|
256
|
+
10.1.1.49,A,01163986774.50.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 17:16:31.000,graham,200,text/plain,19473,1,media:porn
|
257
|
+
10.1.1.238,A,01486236920.26.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 21:13:50.000,daniel,403,application/octet-stream,96888,1,social:media
|
258
|
+
10.1.1.24,W,www.teach-nology.com,/foo?bar,mbp.remote,2011-05-06 01:30:37.000,terry,200,image/jpeg,18738,0,business:social
|
259
|
+
10.1.1.46,A,31787459113.96.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 23:13:16.000,terry,407,text/html,72218,1,web:business
|
260
|
+
10.1.1.203,D,www.apinchof.com,/foo?bar,mbp.remote,2011-05-06 23:14:38.000,terry,200,application/octet-stream,21307,1,business:web
|
261
|
+
10.1.1.209,D,03000525397.8.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 08:20:55.000,alexis,500,text/html,18146,0,porn:social
|
262
|
+
10.1.1.84,W,content0.jobsdb.com,/foo?bar,dan.netfox.local,2011-05-06 07:41:46.000,graham,200,application/octet-stream,58085,1,geek:media
|
263
|
+
10.1.1.245,D,technogra.ph,/foo?bar,dan.netfox.local,2011-05-06 11:32:47.000,terry,404,text/html,78771,1,media:social
|
264
|
+
10.1.1.79,D,www.mytego.com.au,/foo?bar,paul.netfox.local,2011-05-06 01:50:16.000,terry,200,text/plain,38485,1,social:web
|
265
|
+
10.1.1.130,A,link.155game.com,/foo?bar,warren.netfox.local,2011-05-06 10:43:02.000,eric,403,image/jpeg,27956,1,web:social
|
266
|
+
10.1.1.41,W,11530173832.111.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 04:35:53.000,jeremy,200,image/jpeg,76213,1,porn
|
267
|
+
10.1.1.55,D,flames1.in,/foo?bar,paul.netfox.local,2011-05-06 19:26:47.000,ben,407,application/octet-stream,73788,0,business:porn
|
268
|
+
10.1.1.156,A,ec.cdn.cincopa.com,/foo?bar,dan.netfox.local,2011-05-06 16:21:20.000,jordan,200,text/html,25558,1,social:porn
|
269
|
+
10.1.1.27,A,contenderministries.org,/foo?bar,dan.netfox.local,2011-05-06 20:18:39.000,graham,404,image/jpeg,7074,1,shopping:porn
|
270
|
+
10.1.1.100,W,www1.brothersoft.com,/foo?bar,warren.netfox.local,2011-05-06 12:32:32.000,eric,200,text/html,83538,0,shopping
|
271
|
+
10.1.1.246,A,careers.sds.com.au,/foo?bar,dan.netfox.local,2011-05-06 16:36:54.000,daniel,407,application/octet-stream,6126,0,media:porn
|
272
|
+
10.1.1.249,W,www.simonsingh.net,/foo?bar,dan.netfox.local,2011-05-06 04:53:52.000,jayne,200,text/html,65554,0,media:web
|
273
|
+
10.1.1.196,D,static.trulia-cdn.com,/foo?bar,mbp.remote,2011-05-06 23:10:26.000,jordan,407,text/plain,17235,1,porn:geek
|
274
|
+
10.1.1.143,W,visit.geocities.com,/foo?bar,dan.netfox.local,2011-05-06 10:15:14.000,jeremy,200,text/plain,8920,0,geek
|
275
|
+
10.1.1.213,W,cyimg30.cyworld.com,/foo?bar,paul.netfox.local,2011-05-06 13:05:23.000,jayne,407,image/jpeg,48862,0,geek:social
|
276
|
+
10.1.1.200,W,www1.ivenue.com,/foo?bar,mbp.remote,2011-05-06 05:28:23.000,robert,200,image/jpeg,85945,1,business:media
|
277
|
+
10.1.1.101,W,log.daqi.com,/foo?bar,mbp.remote,2011-05-06 03:41:17.000,jordan,407,image/jpeg,74769,0,social:geek
|
278
|
+
10.1.1.123,W,livebali.blogspot.com,/foo?bar,dan.netfox.local,2011-05-06 11:58:20.000,jayne,200,image/jpeg,21420,0,shopping:business
|
279
|
+
10.1.1.232,W,03647205326.62.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 10:30:50.000,jeremy,407,text/html,65832,1,shopping
|
280
|
+
10.1.1.104,A,drawsketch.about.com,/foo?bar,dan.netfox.local,2011-05-06 23:16:49.000,jordan,200,text/html,95440,1,media:porn
|
281
|
+
10.1.1.45,W,0692275010.58.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 17:18:54.000,terry,404,text/html,87623,0,web:business
|
282
|
+
10.1.1.117,W,checkin.jetstar.com,/foo?bar,paul.netfox.local,2011-05-06 11:02:46.000,jayne,200,text/html,96457,0,porn:media
|
283
|
+
10.1.1.40,D,03337952904.162.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 19:21:54.000,graham,404,text/html,32132,0,porn:geek
|
284
|
+
10.1.1.208,W,02434989209.103.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 06:06:01.000,fabian,200,application/octet-stream,68288,0,media:shopping
|
285
|
+
10.1.1.80,W,kr.sdc.srch.yahoo.com,/foo?bar,dan.netfox.local,2011-05-06 02:53:16.000,jayne,404,text/plain,78132,1,shopping:web
|
286
|
+
10.1.1.29,D,fabulousmary123.livejournal.com,/foo?bar,dan.netfox.local,2011-05-06 05:12:24.000,daniel,200,application/octet-stream,14437,0,media:web
|
287
|
+
10.1.1.19,W,tracyhopkirk-jewellery.com,/foo?bar,mbp.remote,2011-05-06 05:33:22.000,terry,404,image/jpeg,88094,1,shopping:business
|
288
|
+
10.1.1.228,A,bioap.wikispaces.com,/foo?bar,paul.netfox.local,2011-05-06 00:59:57.000,sam,200,text/plain,47449,0,porn:media
|
289
|
+
10.1.1.86,D,publish.dvlabs.com,/foo?bar,warren.netfox.local,2011-05-06 10:47:06.000,roger,407,application/octet-stream,7656,0,geek
|
290
|
+
10.1.1.128,W,th136.photobucket.com,/foo?bar,paul.netfox.local,2011-05-06 06:36:39.000,john,200,image/jpeg,69465,0,media:porn
|
291
|
+
10.1.1.160,A,static2.channels.com,/foo?bar,warren.netfox.local,2011-05-06 01:16:03.000,jeremy,404,text/html,89788,0,shopping:porn
|
292
|
+
10.1.1.72,A,habitarium.neopets.com,/foo?bar,dan.netfox.local,2011-05-06 18:20:19.000,jayne,200,application/octet-stream,64033,0,shopping
|
293
|
+
10.1.1.3,D,02712593784.44.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 17:29:48.000,terry,404,text/plain,26236,1,web:porn
|
294
|
+
10.1.1.95,W,img.petrescue.com.au,/foo?bar,paul.netfox.local,2011-05-06 06:57:01.000,jeremy,200,text/html,97441,0,business:social
|
295
|
+
10.1.1.151,D,www.teachers.ash.org.au,/foo?bar,dan.netfox.local,2011-05-06 03:15:18.000,graham,407,application/octet-stream,70237,0,business:social
|
296
|
+
10.1.1.145,W,images.mefeedia.com,/foo?bar,paul.netfox.local,2011-05-06 11:27:32.000,ben,200,application/octet-stream,70663,1,porn:geek
|
297
|
+
10.1.1.51,W,www.treesforlife.org.au,/foo?bar,warren.netfox.local,2011-05-06 18:07:19.000,graham,407,text/html,80691,1,business:porn
|
298
|
+
10.1.1.45,D,igetgoosebumpswhenthebasslinethumps.blogspot.com,/foo?bar,mbp.remote,2011-05-06 08:30:12.000,jordan,200,application/octet-stream,9252,0,shopping
|
299
|
+
10.1.1.44,W,www.kidzui.com,/foo?bar,mbp.remote,2011-05-06 06:19:02.000,michael,500,application/octet-stream,81032,0,geek:porn
|
300
|
+
10.1.1.244,D,mariana-2idioma.wikispaces.com,/foo?bar,paul.netfox.local,2011-05-06 19:24:07.000,michael,200,application/octet-stream,30572,1,porn:media
|
301
|
+
10.1.1.120,W,0680009326.94.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 14:51:29.000,roger,500,application/octet-stream,4023,0,web:social
|
302
|
+
10.1.1.149,W,www.thejapanshop.com,/foo?bar,warren.netfox.local,2011-05-06 15:09:14.000,terry,200,image/jpeg,37957,0,social:porn
|
303
|
+
10.1.1.60,D,archerpelican.typepad.com,/foo?bar,dan.netfox.local,2011-05-06 14:08:16.000,sam,407,image/jpeg,12805,1,geek:media
|
304
|
+
10.1.1.111,D,02149995122.92.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 06:12:27.000,terry,200,text/html,16071,0,web:shopping
|
305
|
+
10.1.1.90,D,facingfears.tumblr.com,/foo?bar,mbp.remote,2011-05-06 15:37:50.000,roger,500,image/jpeg,36040,1,shopping:porn
|
306
|
+
10.1.1.14,D,01282310988.106.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 12:19:40.000,michael,200,text/plain,50220,1,business:media
|
307
|
+
10.1.1.67,A,saddlebackfamily.com,/foo?bar,dan.netfox.local,2011-05-06 17:34:30.000,john,404,text/html,56681,1,porn
|
308
|
+
10.1.1.125,A,update.winzip.com,/foo?bar,warren.netfox.local,2011-05-06 16:04:14.000,sam,200,text/plain,43242,0,media:porn
|
309
|
+
10.1.1.0,A,www.ewashtenaw.org,/foo?bar,warren.netfox.local,2011-05-06 01:56:43.000,graham,500,application/octet-stream,22470,0,web:social
|
310
|
+
10.1.1.43,A,myspace-940.vo.llnwd.net,/foo?bar,mbp.remote,2011-05-06 01:25:56.000,terry,200,text/html,6517,0,social
|
311
|
+
10.1.1.65,A,www.bollygallery.com,/foo?bar,dan.netfox.local,2011-05-06 18:55:53.000,alexis,404,image/jpeg,96102,1,porn:business
|
312
|
+
10.1.1.96,D,cdn4.atwestfield.com,/foo?bar,paul.netfox.local,2011-05-06 14:18:38.000,sam,200,text/plain,13764,1,shopping:porn
|
313
|
+
10.1.1.196,W,serve.me.nus.edu.sg,/foo?bar,mbp.remote,2011-05-06 14:23:30.000,michael,403,text/plain,26845,0,business
|
314
|
+
10.1.1.49,W,app.en25.com,/foo?bar,paul.netfox.local,2011-05-06 10:47:31.000,john,200,text/html,58917,1,media:porn
|
315
|
+
10.1.1.33,W,02582405305.59.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 17:45:15.000,roger,404,application/octet-stream,88318,1,porn:shopping
|
316
|
+
10.1.1.18,A,www.ontheissues.org,/foo?bar,mbp.remote,2011-05-06 04:29:46.000,sam,200,text/html,73140,0,web:shopping
|
317
|
+
10.1.1.164,W,pictures.servegame.org,/foo?bar,warren.netfox.local,2011-05-06 19:30:52.000,graham,407,application/octet-stream,3521,1,geek:shopping
|
318
|
+
10.1.1.140,A,www.storiesthatlift.com,/foo?bar,warren.netfox.local,2011-05-06 06:30:37.000,jayne,200,image/jpeg,37213,0,social:business
|
319
|
+
10.1.1.69,D,hact.org.uk,/foo?bar,warren.netfox.local,2011-05-06 10:16:17.000,michael,500,text/plain,46025,0,web:shopping
|
320
|
+
10.1.1.146,W,www.winterschildren.blogspot.com,/foo?bar,dan.netfox.local,2011-05-06 07:11:00.000,ben,200,text/html,31167,0,geek:business
|
321
|
+
10.1.1.108,D,www.50waystohelp.com,/foo?bar,dan.netfox.local,2011-05-06 01:00:08.000,jeremy,500,text/plain,64168,0,web:business
|
322
|
+
10.1.1.82,W,12843565546.74.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 06:44:06.000,michael,200,text/html,86605,0,geek:web
|
323
|
+
10.1.1.60,D,cljlihrawo.immanuel.sa.edu.au,/foo?bar,paul.netfox.local,2011-05-06 21:25:59.000,graham,403,application/octet-stream,11590,1,shopping:media
|
324
|
+
10.1.1.136,W,js.meropar.jp,/foo?bar,paul.netfox.local,2011-05-06 22:14:30.000,ben,200,image/jpeg,61874,1,media:shopping
|
325
|
+
10.1.1.157,D,v.iseeclan.com,/foo?bar,dan.netfox.local,2011-05-06 21:28:08.000,fabian,407,image/jpeg,64448,0,shopping:web
|
326
|
+
10.1.1.58,A,dining.pepperdine.edu,/foo?bar,warren.netfox.local,2011-05-06 02:25:32.000,sam,200,text/plain,29818,0,social:geek
|
327
|
+
10.1.1.82,A,01781477354.26.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 21:30:33.000,alexis,500,text/plain,98042,1,geek:shopping
|
328
|
+
10.1.1.79,A,firmandcorrect.wordpress.com,/foo?bar,paul.netfox.local,2011-05-06 02:04:21.000,eric,200,application/octet-stream,81566,0,geek:business
|
329
|
+
10.1.1.178,D,th183.photobucket.com,/foo?bar,mbp.remote,2011-05-06 19:57:35.000,fabian,403,image/jpeg,7358,1,media:business
|
330
|
+
10.1.1.156,W,firstrun.real.com,/foo?bar,paul.netfox.local,2011-05-06 07:19:38.000,jeremy,200,text/plain,33448,1,geek:web
|
331
|
+
10.1.1.231,W,www.cycsa.com.au,/foo?bar,paul.netfox.local,2011-05-06 21:08:38.000,daniel,403,text/plain,65523,1,social:business
|
332
|
+
10.1.1.10,W,im430.ll.tuenti.com,/foo?bar,dan.netfox.local,2011-05-06 04:21:27.000,jordan,200,application/octet-stream,23432,0,social:web
|
333
|
+
10.1.1.22,W,www.tribuneindia.com,/foo?bar,warren.netfox.local,2011-05-06 06:24:03.000,daniel,407,image/jpeg,84452,0,shopping:business
|
334
|
+
10.1.1.134,D,hippiekiller.files.wordpress.com,/foo?bar,warren.netfox.local,2011-05-06 11:51:52.000,graham,200,image/jpeg,41408,0,web:geek
|
335
|
+
10.1.1.212,A,02611397436.27.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 08:36:49.000,john,404,text/plain,69782,0,geek:social
|
336
|
+
10.1.1.51,A,01528747309.58.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 12:15:02.000,alexis,200,text/plain,87830,1,geek:shopping
|
337
|
+
10.1.1.25,D,historypsychiatry.files.wordpress.com,/foo?bar,paul.netfox.local,2011-05-06 09:10:35.000,jordan,407,image/jpeg,17633,1,web:social
|
338
|
+
10.1.1.49,A,pb.rcpsych.org,/foo?bar,dan.netfox.local,2011-05-06 16:35:16.000,ben,200,text/html,2048,0,porn
|
339
|
+
10.1.1.198,W,crows.com.au,/foo?bar,mbp.remote,2011-05-06 22:16:13.000,jordan,407,text/plain,35177,1,business:porn
|
340
|
+
10.1.1.137,A,www.madeformums.com,/foo?bar,warren.netfox.local,2011-05-06 11:06:36.000,robert,200,image/jpeg,18119,0,social:geek
|
341
|
+
10.1.1.82,W,www.daniusoft.com,/foo?bar,dan.netfox.local,2011-05-06 00:34:40.000,eric,403,application/octet-stream,32138,0,geek:web
|
342
|
+
10.1.1.227,D,urs.microsoft.com,/foo?bar,mbp.remote,2011-05-06 23:54:13.000,alexis,200,application/octet-stream,35868,0,web:porn
|
343
|
+
10.1.1.4,W,03355041138.90.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 09:39:58.000,terry,403,text/plain,97740,0,web
|
344
|
+
10.1.1.23,A,02325894385.24.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 06:40:54.000,ben,200,application/octet-stream,58829,1,porn:media
|
345
|
+
10.1.1.179,D,peregrineadventures.d2.sc.omtrdc.net,/foo?bar,paul.netfox.local,2011-05-06 06:05:16.000,robert,500,text/html,1017,0,porn:web
|
346
|
+
10.1.1.215,D,11449197053.2.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 06:11:46.000,fabian,200,application/octet-stream,58792,0,media:porn
|
347
|
+
10.1.1.150,W,mslabs-308.vo.llnwd.net,/foo?bar,paul.netfox.local,2011-05-06 17:22:52.000,jeremy,407,application/octet-stream,27895,1,shopping:web
|
348
|
+
10.1.1.141,W,0459973733.49.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 08:10:45.000,terry,200,image/jpeg,37228,0,media:porn
|
349
|
+
10.1.1.112,W,01139991422.75.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 13:26:48.000,jeremy,403,image/jpeg,54824,1,web:business
|
350
|
+
10.1.1.33,W,alscarstuff.files.wordpress.com,/foo?bar,warren.netfox.local,2011-05-06 15:13:06.000,alexis,200,text/html,37319,0,geek
|
351
|
+
10.1.1.204,D,www.johnmetevelis.on.nimp.org,/foo?bar,dan.netfox.local,2011-05-06 13:53:51.000,daniel,404,application/octet-stream,5084,1,business:media
|
352
|
+
10.1.1.143,A,em.linkedin.com,/foo?bar,dan.netfox.local,2011-05-06 20:44:35.000,fabian,200,text/html,60982,0,business:media
|
353
|
+
10.1.1.93,A,0608078256.49.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 08:07:12.000,terry,404,text/html,23205,1,shopping:porn
|
354
|
+
10.1.1.170,W,nummynims.wordpress.com,/foo?bar,mbp.remote,2011-05-06 01:06:13.000,jeremy,200,application/octet-stream,26505,0,porn:social
|
355
|
+
10.1.1.244,A,me.edu.au,/foo?bar,dan.netfox.local,2011-05-06 06:55:28.000,terry,403,text/plain,69109,0,geek:shopping
|
356
|
+
10.1.1.214,D,0261771809.26.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 11:14:17.000,alexis,200,application/octet-stream,66212,1,geek:web
|
357
|
+
10.1.1.56,W,www.fivehens.com,/foo?bar,dan.netfox.local,2011-05-06 04:52:46.000,jayne,407,image/jpeg,24274,0,geek:web
|
358
|
+
10.1.1.20,D,westwoodfn.com.au,/foo?bar,mbp.remote,2011-05-06 14:45:33.000,robert,200,application/octet-stream,94171,1,media:shopping
|
359
|
+
10.1.1.171,A,pillrxpharmacyworld.net,/foo?bar,paul.netfox.local,2011-05-06 21:57:01.000,daniel,500,text/plain,10813,1,geek:social
|
360
|
+
10.1.1.31,D,www.homeplateheroes.com,/foo?bar,warren.netfox.local,2011-05-06 16:03:31.000,michael,200,application/octet-stream,24722,0,media:geek
|
361
|
+
10.1.1.136,W,im523.ll.tuenti.com,/foo?bar,dan.netfox.local,2011-05-06 16:19:55.000,michael,404,application/octet-stream,66508,1,geek:porn
|
362
|
+
10.1.1.112,D,raynelongboards.s3.amazonaws.com,/foo?bar,dan.netfox.local,2011-05-06 09:34:06.000,michael,200,application/octet-stream,13373,0,social:web
|
363
|
+
10.1.1.72,W,03313410405.58.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 12:26:19.000,robert,404,application/octet-stream,773,0,porn:social
|
364
|
+
10.1.1.160,W,www.parties-and-picnics.com,/foo?bar,mbp.remote,2011-05-06 19:24:39.000,jeremy,200,text/html,63587,1,web:business
|
365
|
+
10.1.1.134,D,03272780745.60.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 22:52:29.000,daniel,500,text/html,59760,1,porn:media
|
366
|
+
10.1.1.174,D,www.google.hk,/foo?bar,dan.netfox.local,2011-05-06 11:08:43.000,jordan,200,image/jpeg,94919,0,media:shopping
|
367
|
+
10.1.1.78,D,webecoist.com,/foo?bar,warren.netfox.local,2011-05-06 05:50:20.000,alexis,407,text/plain,77456,0,shopping:web
|
368
|
+
10.1.1.242,D,01298226449.80.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 07:01:58.000,michael,200,application/octet-stream,56350,0,geek:shopping
|
369
|
+
10.1.1.246,D,the208.wordpress.com,/foo?bar,paul.netfox.local,2011-05-06 23:35:52.000,terry,500,text/plain,89439,1,geek:porn
|
370
|
+
10.1.1.217,D,02086533866.2.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 08:09:29.000,alexis,200,image/jpeg,25838,1,geek:shopping
|
371
|
+
10.1.1.151,D,p1.v.iask.com,/foo?bar,paul.netfox.local,2011-05-06 03:01:31.000,john,404,text/html,43368,0,shopping:web
|
372
|
+
10.1.1.189,D,edwardbetts.com,/foo?bar,paul.netfox.local,2011-05-06 17:07:07.000,roger,200,application/octet-stream,44359,0,geek
|
373
|
+
10.1.1.137,A,www.musco.eu,/foo?bar,warren.netfox.local,2011-05-06 18:23:39.000,jeremy,500,image/jpeg,82059,0,web
|
374
|
+
10.1.1.154,A,timesnews.typepad.com,/foo?bar,dan.netfox.local,2011-05-06 07:46:30.000,ben,200,text/html,53307,0,social:web
|
375
|
+
10.1.1.0,W,www.childtrafficking.org,/foo?bar,mbp.remote,2011-05-06 04:42:52.000,sam,500,image/jpeg,55372,1,social:shopping
|
376
|
+
10.1.1.40,A,login.baofeng.net,/foo?bar,mbp.remote,2011-05-06 00:08:03.000,terry,200,text/plain,51287,0,geek:web
|
377
|
+
10.1.1.83,W,www.occupancy.com,/foo?bar,mbp.remote,2011-05-06 17:04:15.000,fabian,403,image/jpeg,13427,0,geek:web
|
378
|
+
10.1.1.18,D,www.collectionsaustralia.net.au,/foo?bar,mbp.remote,2011-05-06 01:32:08.000,john,200,application/octet-stream,37644,1,web:business
|
379
|
+
10.1.1.12,A,0392321391.26.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 06:34:38.000,sam,404,text/plain,66645,0,porn:social
|
380
|
+
10.1.1.173,A,www.saenen.net,/foo?bar,dan.netfox.local,2011-05-06 18:13:13.000,michael,200,image/jpeg,85725,1,web:geek
|
381
|
+
10.1.1.10,A,03562943366.18.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 15:15:47.000,john,500,application/octet-stream,14176,1,business:media
|
382
|
+
10.1.1.2,A,www.arabemarroqui.es,/foo?bar,dan.netfox.local,2011-05-06 18:35:22.000,graham,200,text/html,98251,0,web:geek
|
383
|
+
10.1.1.154,W,u.7.prs.aimini.net,/foo?bar,dan.netfox.local,2011-05-06 07:11:19.000,ben,407,text/html,23188,0,web:geek
|
384
|
+
10.1.1.129,W,02461091257.75.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 06:17:30.000,terry,200,application/octet-stream,43804,0,media:web
|
385
|
+
10.1.1.223,W,coloniasyperfumes.com.co,/foo?bar,dan.netfox.local,2011-05-06 07:44:15.000,roger,500,text/html,25274,0,shopping:social
|
386
|
+
10.1.1.199,W,by2msg4020614.by2.gateway.edge.messenger.live.com,/foo?bar,dan.netfox.local,2011-05-06 12:50:27.000,ben,200,text/html,27315,0,shopping
|
387
|
+
10.1.1.164,D,02288533986.82.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 06:09:38.000,robert,404,text/html,73917,1,porn
|
388
|
+
10.1.1.237,A,www.madi.bennet.hom,/foo?bar,paul.netfox.local,2011-05-06 21:47:14.000,terry,200,text/html,62342,1,business:shopping
|
389
|
+
10.1.1.104,D,p-static.animoto.com,/foo?bar,mbp.remote,2011-05-06 16:48:48.000,terry,500,text/html,12340,1,geek:porn
|
390
|
+
10.1.1.15,W,www.bloodygoodhorror.com,/foo?bar,dan.netfox.local,2011-05-06 13:17:43.000,michael,200,text/html,80604,0,geek:business
|
391
|
+
10.1.1.236,D,teegan-weegan.deviantart.com,/foo?bar,dan.netfox.local,2011-05-06 11:41:41.000,graham,403,image/jpeg,99971,0,porn:media
|
392
|
+
10.1.1.73,W,www.canon.com,/foo?bar,dan.netfox.local,2011-05-06 06:14:54.000,ben,200,application/octet-stream,96234,1,porn:media
|
393
|
+
10.1.1.188,W,music.is-amazing.com,/foo?bar,mbp.remote,2011-05-06 18:40:13.000,john,500,text/plain,42517,1,media:business
|
394
|
+
10.1.1.196,D,01108682521.51.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 12:29:10.000,roger,200,image/jpeg,51381,1,geek:shopping
|
395
|
+
10.1.1.107,A,www.salvapantallas.com.es,/foo?bar,mbp.remote,2011-05-06 13:52:10.000,eric,500,text/html,93382,1,business:shopping
|
396
|
+
10.1.1.170,D,www.viraladsunleashed.com,/foo?bar,mbp.remote,2011-05-06 01:30:22.000,alexis,200,text/plain,76232,0,porn:media
|
397
|
+
10.1.1.119,D,webapps.banksa.com.au,/foo?bar,mbp.remote,2011-05-06 11:21:14.000,eric,500,application/octet-stream,24551,0,porn:geek
|
398
|
+
10.1.1.145,A,03289997312.26.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 17:13:18.000,fabian,200,text/html,95899,1,geek:business
|
399
|
+
10.1.1.2,W,seek.com.au,/foo?bar,dan.netfox.local,2011-05-06 05:22:55.000,terry,500,text/html,68333,0,web:media
|
400
|
+
10.1.1.232,A,ddqyskajmq.immanuel.sa.edu.au,/foo?bar,dan.netfox.local,2011-05-06 09:38:22.000,sam,200,text/plain,75235,1,shopping:social
|
401
|
+
10.1.1.74,A,www.mysportingicons.com.au,/foo?bar,paul.netfox.local,2011-05-06 23:41:54.000,jayne,404,text/plain,2146,0,porn:media
|
402
|
+
10.1.1.95,A,03562947695.136.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 08:43:00.000,jeremy,200,text/html,16875,1,media
|
403
|
+
10.1.1.244,D,www.needhits.net,/foo?bar,paul.netfox.local,2011-05-06 09:42:24.000,eric,403,text/plain,97530,1,shopping:porn
|
404
|
+
10.1.1.82,D,02867701720.44.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 01:11:23.000,graham,200,image/jpeg,95942,1,porn
|
405
|
+
10.1.1.135,W,www.osovo.com,/foo?bar,mbp.remote,2011-05-06 05:49:27.000,sam,404,image/jpeg,52550,0,business:porn
|
406
|
+
10.1.1.69,W,01758839621.67.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 08:54:41.000,michael,200,text/plain,88455,0,media:shopping
|
407
|
+
10.1.1.36,D,02137406339.42.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 18:05:44.000,jayne,500,text/plain,63317,0,business:porn
|
408
|
+
10.1.1.126,W,www.a-club.com,/foo?bar,mbp.remote,2011-05-06 13:57:45.000,jayne,200,application/octet-stream,68915,0,social:porn
|
409
|
+
10.1.1.210,A,0582026768.54.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 06:22:14.000,sam,500,application/octet-stream,84385,0,media:porn
|
410
|
+
10.1.1.61,A,www.childtherapytechniques.com,/foo?bar,warren.netfox.local,2011-05-06 14:47:09.000,ben,200,image/jpeg,2020,0,shopping:media
|
411
|
+
10.1.1.216,A,robt.shepherd.tripod.com,/foo?bar,warren.netfox.local,2011-05-06 03:30:50.000,graham,500,application/octet-stream,45569,0,business:porn
|
412
|
+
10.1.1.154,D,www.animalbase.uni-goettingen.de,/foo?bar,mbp.remote,2011-05-06 13:54:47.000,michael,200,image/jpeg,88856,1,business:social
|
413
|
+
10.1.1.203,W,som.flinders.edu.au,/foo?bar,mbp.remote,2011-05-06 19:20:18.000,john,407,application/octet-stream,32537,1,business:web
|
414
|
+
10.1.1.35,A,notify.renren.com,/foo?bar,paul.netfox.local,2011-05-06 20:53:32.000,eric,200,image/jpeg,24077,0,social:porn
|
415
|
+
10.1.1.240,D,gi131.photobucket.com,/foo?bar,warren.netfox.local,2011-05-06 18:30:12.000,jordan,403,image/jpeg,15546,1,business
|
416
|
+
10.1.1.119,W,mslabs-407.vo.llnwd.net,/foo?bar,warren.netfox.local,2011-05-06 02:28:14.000,sam,200,text/plain,13080,1,porn:geek
|
417
|
+
10.1.1.52,W,theslipperytruffle.disqus.com,/foo?bar,warren.netfox.local,2011-05-06 06:31:53.000,sam,404,text/plain,59498,0,business:geek
|
418
|
+
10.1.1.203,D,dt.web-search-home.com,/foo?bar,dan.netfox.local,2011-05-06 21:45:55.000,daniel,200,image/jpeg,41625,0,shopping
|
419
|
+
10.1.1.112,D,www.jobs4development.com,/foo?bar,dan.netfox.local,2011-05-06 18:45:58.000,robert,403,text/plain,43376,1,social:business
|
420
|
+
10.1.1.160,W,novacelestia.com,/foo?bar,paul.netfox.local,2011-05-06 15:19:28.000,robert,200,text/html,5645,1,geek:media
|
421
|
+
10.1.1.118,A,www.riversideparramatta.com.au,/foo?bar,paul.netfox.local,2011-05-06 07:59:50.000,robert,404,application/octet-stream,69313,1,business:web
|
422
|
+
10.1.1.131,D,www.jokesplace.com,/foo?bar,warren.netfox.local,2011-05-06 18:22:31.000,terry,200,text/plain,88920,0,shopping:web
|
423
|
+
10.1.1.145,D,www2.snapfish.com,/foo?bar,warren.netfox.local,2011-05-06 02:48:04.000,jayne,500,text/html,92145,1,social:geek
|
424
|
+
10.1.1.48,D,www.traileraddict.com,/foo?bar,paul.netfox.local,2011-05-06 23:46:43.000,michael,200,text/html,23774,0,shopping
|
425
|
+
10.1.1.27,A,03383080444.26.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 04:39:43.000,robert,407,application/octet-stream,22455,0,media:shopping
|
426
|
+
10.1.1.92,W,analytics.flavorpill.net,/foo?bar,warren.netfox.local,2011-05-06 18:00:01.000,robert,200,text/plain,30103,1,shopping:media
|
427
|
+
10.1.1.149,W,03836277240.131.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 14:07:04.000,jordan,500,text/html,57491,0,geek:porn
|
428
|
+
10.1.1.175,A,www.yarrariver.info,/foo?bar,paul.netfox.local,2011-05-06 23:07:40.000,jayne,200,application/octet-stream,79751,0,porn
|
429
|
+
10.1.1.43,A,www.dictionaryofsydney.org,/foo?bar,dan.netfox.local,2011-05-06 19:39:48.000,graham,403,text/html,72510,1,social:porn
|
430
|
+
10.1.1.99,A,www.audiobooksonline.com,/foo?bar,paul.netfox.local,2011-05-06 09:30:39.000,sam,200,image/jpeg,93161,1,geek:web
|
431
|
+
10.1.1.228,W,kcart.cn.yahoo.com,/foo?bar,dan.netfox.local,2011-05-06 05:03:42.000,john,407,application/octet-stream,30639,0,web:shopping
|
432
|
+
10.1.1.206,D,comicallyvintage.tumblr.com,/foo?bar,warren.netfox.local,2011-05-06 06:12:33.000,ben,200,text/plain,9030,0,shopping:business
|
433
|
+
10.1.1.217,D,0390788370.105.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 05:40:04.000,jayne,500,text/html,29517,1,porn:social
|
434
|
+
10.1.1.228,A,as.medscape.com,/foo?bar,mbp.remote,2011-05-06 16:56:08.000,sam,200,application/octet-stream,33840,1,shopping:web
|
435
|
+
10.1.1.130,D,cb.amazingcounters.com,/foo?bar,paul.netfox.local,2011-05-06 21:23:52.000,fabian,500,application/octet-stream,48200,1,geek:social
|
436
|
+
10.1.1.201,A,www.storenvy.com,/foo?bar,dan.netfox.local,2011-05-06 13:59:44.000,fabian,200,text/plain,69732,1,business:web
|
437
|
+
10.1.1.187,A,www.hotrocks.com.au,/foo?bar,mbp.remote,2011-05-06 13:45:12.000,jordan,404,text/plain,63496,0,business:shopping
|
438
|
+
10.1.1.50,D,21957496635.67.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 03:42:02.000,eric,200,text/html,66137,1,shopping:social
|
439
|
+
10.1.1.169,D,synad2.nuffnang.com.sg,/foo?bar,dan.netfox.local,2011-05-06 07:10:44.000,roger,403,text/html,1927,0,shopping:business
|
440
|
+
10.1.1.200,A,www.bendigobank.com.au,/foo?bar,warren.netfox.local,2011-05-06 19:22:00.000,john,200,text/plain,46650,0,social:porn
|
441
|
+
10.1.1.65,D,www.goldenteahouse.com,/foo?bar,dan.netfox.local,2011-05-06 22:37:55.000,alexis,403,image/jpeg,75555,0,web:business
|
442
|
+
10.1.1.171,D,theappleobserver.com,/foo?bar,mbp.remote,2011-05-06 23:49:08.000,jayne,200,image/jpeg,72048,0,porn
|
443
|
+
10.1.1.236,D,www.dynamicflight.com.au,/foo?bar,warren.netfox.local,2011-05-06 18:34:25.000,jordan,500,text/plain,37648,1,media:business
|
444
|
+
10.1.1.118,A,blogs.nationalgeographic.com,/foo?bar,dan.netfox.local,2011-05-06 11:59:22.000,ben,200,image/jpeg,97875,1,social:web
|
445
|
+
10.1.1.37,D,ade.aircross.com,/foo?bar,dan.netfox.local,2011-05-06 10:47:28.000,robert,407,application/octet-stream,15493,0,business:media
|
446
|
+
10.1.1.140,D,janinefuchs.files.wordpress.com,/foo?bar,paul.netfox.local,2011-05-06 17:06:54.000,michael,200,image/jpeg,82534,0,media:shopping
|
447
|
+
10.1.1.53,A,www.fantom-xp.org,/foo?bar,warren.netfox.local,2011-05-06 15:33:24.000,jayne,403,image/jpeg,25041,1,media:social
|
448
|
+
10.1.1.104,W,www.elders.com,/foo?bar,mbp.remote,2011-05-06 14:40:25.000,john,200,image/jpeg,99530,0,web:media
|
449
|
+
10.1.1.208,A,www.blog.iqmatrix.com,/foo?bar,dan.netfox.local,2011-05-06 12:32:44.000,john,407,text/html,35095,1,geek:porn
|
450
|
+
10.1.1.46,A,www.stpeters.sa.edu.au,/foo?bar,warren.netfox.local,2011-05-06 18:05:32.000,jordan,200,text/plain,2297,0,web:media
|
451
|
+
10.1.1.131,A,www.sevenbarfoundation.org,/foo?bar,warren.netfox.local,2011-05-06 11:23:21.000,daniel,407,text/html,8910,1,geek:media
|
452
|
+
10.1.1.109,W,vc.ameba.jp,/foo?bar,warren.netfox.local,2011-05-06 15:21:36.000,ben,200,image/jpeg,52524,0,web:social
|
453
|
+
10.1.1.8,A,adserver.twitpic.com,/foo?bar,warren.netfox.local,2011-05-06 22:50:32.000,terry,500,application/octet-stream,87431,0,social:shopping
|
454
|
+
10.1.1.166,W,shopping.tile.com.au,/foo?bar,paul.netfox.local,2011-05-06 03:28:10.000,sam,200,text/html,77491,0,social:geek
|
455
|
+
10.1.1.87,D,www.kongkeefood.com,/foo?bar,warren.netfox.local,2011-05-06 03:54:02.000,jayne,407,text/html,99690,1,business:shopping
|
456
|
+
10.1.1.55,A,www8.zamzar.com,/foo?bar,dan.netfox.local,2011-05-06 19:28:03.000,michael,200,text/plain,95848,1,web:media
|
457
|
+
10.1.1.125,D,www.oldride.com,/foo?bar,mbp.remote,2011-05-06 06:48:29.000,jeremy,407,text/html,55145,0,social:business
|
458
|
+
10.1.1.73,W,uk.ebayobjects.com,/foo?bar,paul.netfox.local,2011-05-06 23:36:22.000,daniel,200,text/html,75234,0,web:shopping
|
459
|
+
10.1.1.202,W,www.buywacom.com.au,/foo?bar,warren.netfox.local,2011-05-06 22:01:05.000,terry,403,text/plain,14012,1,social:business
|
460
|
+
10.1.1.21,A,0999912395.32.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 11:59:10.000,daniel,200,text/html,13265,1,social
|
461
|
+
10.1.1.179,D,01826430259.41.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 06:36:43.000,roger,500,application/octet-stream,78874,1,business:shopping
|
462
|
+
10.1.1.170,D,store.grooveshark.com,/foo?bar,mbp.remote,2011-05-06 00:08:58.000,jeremy,200,text/plain,93816,0,porn
|
463
|
+
10.1.1.102,W,eu.geo.yahoo.com,/foo?bar,mbp.remote,2011-05-06 06:29:26.000,graham,500,text/html,49565,0,geek
|
464
|
+
10.1.1.95,W,email.optedin.com.au,/foo?bar,warren.netfox.local,2011-05-06 05:18:46.000,terry,200,application/octet-stream,49463,0,web:porn
|
465
|
+
10.1.1.78,D,sportschampon.blogspot.com,/foo?bar,paul.netfox.local,2011-05-06 08:05:20.000,terry,404,image/jpeg,21191,0,porn:social
|
466
|
+
10.1.1.11,W,www.daz3d.com,/foo?bar,mbp.remote,2011-05-06 09:54:59.000,jeremy,200,text/plain,6610,0,social:business
|
467
|
+
10.1.1.179,W,stevebolto.com,/foo?bar,dan.netfox.local,2011-05-06 11:25:31.000,alexis,407,text/html,30450,1,social:media
|
468
|
+
10.1.1.38,W,ads.equipespectra.ca,/foo?bar,paul.netfox.local,2011-05-06 19:48:41.000,jordan,200,text/plain,10328,0,media:porn
|
469
|
+
10.1.1.138,A,www.onsome.com,/foo?bar,warren.netfox.local,2011-05-06 19:33:13.000,terry,407,text/html,30661,1,media:shopping
|
470
|
+
10.1.1.208,A,vids.myspace.com,/foo?bar,mbp.remote,2011-05-06 07:04:27.000,michael,200,image/jpeg,9663,1,social:porn
|
471
|
+
10.1.1.245,A,03827367911.112.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 16:41:09.000,terry,407,text/html,58994,0,business:social
|
472
|
+
10.1.1.161,D,as.casalemedia.com,/foo?bar,warren.netfox.local,2011-05-06 00:18:41.000,sam,200,text/html,43243,1,social:media
|
473
|
+
10.1.1.85,D,www.ido-dance.com,/foo?bar,dan.netfox.local,2011-05-06 07:30:18.000,terry,404,application/octet-stream,64751,0,geek:porn
|
474
|
+
10.1.1.10,D,02631358232.37.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 18:28:22.000,robert,200,image/jpeg,59877,1,porn:shopping
|
475
|
+
10.1.1.15,A,www99.shopping.com,/foo?bar,paul.netfox.local,2011-05-06 19:20:40.000,ben,404,text/html,22379,1,porn:media
|
476
|
+
10.1.1.78,A,20101110.biz5.sandai.net,/foo?bar,warren.netfox.local,2011-05-06 06:27:11.000,daniel,200,text/plain,59316,1,geek:media
|
477
|
+
10.1.1.90,W,cid-5f557d1a94eb20a1.profile.live.com,/foo?bar,mbp.remote,2011-05-06 13:15:59.000,jayne,404,image/jpeg,55619,0,shopping:porn
|
478
|
+
10.1.1.151,D,m.imdb.com,/foo?bar,mbp.remote,2011-05-06 18:00:48.000,jordan,200,image/jpeg,56114,1,media:porn
|
479
|
+
10.1.1.248,D,img70.imageshack.us,/foo?bar,paul.netfox.local,2011-05-06 10:46:21.000,john,407,text/plain,92282,0,media:business
|
480
|
+
10.1.1.162,W,02699366823.96.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 19:06:07.000,roger,200,text/plain,12462,0,media:shopping
|
481
|
+
10.1.1.25,W,www.bcrich.com,/foo?bar,mbp.remote,2011-05-06 22:09:57.000,ben,500,text/html,51529,0,shopping:social
|
482
|
+
10.1.1.15,D,22591513088.54.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 21:08:56.000,jeremy,200,application/octet-stream,9857,0,media
|
483
|
+
10.1.1.179,D,01050884739.37.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 04:05:10.000,jayne,403,text/html,85506,1,social
|
484
|
+
10.1.1.175,D,www.roadtogrammar.com,/foo?bar,paul.netfox.local,2011-05-06 04:15:39.000,jordan,200,application/octet-stream,29072,1,porn:social
|
485
|
+
10.1.1.137,A,www24a.glam.com,/foo?bar,warren.netfox.local,2011-05-06 06:47:18.000,sam,500,text/plain,93282,0,porn:web
|
486
|
+
10.1.1.12,W,passport.onlylady.com,/foo?bar,dan.netfox.local,2011-05-06 14:12:30.000,sam,200,text/plain,42181,1,porn
|
487
|
+
10.1.1.184,W,dr.qlogo.cn,/foo?bar,paul.netfox.local,2011-05-06 08:45:48.000,jeremy,500,text/plain,74320,1,porn
|
488
|
+
10.1.1.171,W,0873402582.2.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 15:38:43.000,sam,200,text/html,30421,1,business:media
|
489
|
+
10.1.1.181,D,03214961457.166.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 10:43:29.000,eric,403,text/html,29934,0,social:business
|
490
|
+
10.1.1.103,W,static.linkedin.com,/foo?bar,mbp.remote,2011-05-06 04:54:33.000,terry,200,text/plain,64780,0,shopping:social
|
491
|
+
10.1.1.201,D,03707006998.27.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 05:46:10.000,roger,403,text/plain,49991,0,shopping:web
|
492
|
+
10.1.1.25,D,ikan.pptv.com,/foo?bar,mbp.remote,2011-05-06 21:44:08.000,graham,200,text/plain,17153,0,web:media
|
493
|
+
10.1.1.30,A,cdn.qlik.com,/foo?bar,warren.netfox.local,2011-05-06 02:14:47.000,john,403,text/html,26062,0,business:social
|
494
|
+
10.1.1.10,A,www.wallpaperist.com,/foo?bar,paul.netfox.local,2011-05-06 13:42:50.000,jayne,200,text/plain,6903,0,social
|
495
|
+
10.1.1.119,A,jobs.hrkspjbs.com,/foo?bar,mbp.remote,2011-05-06 05:54:13.000,terry,403,application/octet-stream,55167,0,porn:social
|
496
|
+
10.1.1.241,W,imgprofile.timeinc.net,/foo?bar,warren.netfox.local,2011-05-06 01:54:12.000,ben,200,text/html,55197,1,shopping:web
|
497
|
+
10.1.1.110,D,dfe1zrvl08k3v.cloudfront.net,/foo?bar,dan.netfox.local,2011-05-06 10:20:24.000,robert,407,image/jpeg,20799,1,shopping:media
|
498
|
+
10.1.1.230,W,0411392763.38.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 23:44:09.000,eric,200,text/html,84308,1,social:business
|
499
|
+
10.1.1.234,A,171800113.5.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 20:38:58.000,ben,403,image/jpeg,70740,1,media:geek
|
500
|
+
10.1.1.73,W,gallery.sellerfox.de,/foo?bar,dan.netfox.local,2011-05-06 18:00:16.000,michael,200,text/plain,69004,1,social:business
|
501
|
+
10.1.1.127,W,04061174969.160.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 11:37:23.000,sam,404,text/plain,38503,1,porn:shopping
|
502
|
+
10.1.1.85,A,s147.photobucket.com,/foo?bar,mbp.remote,2011-05-06 01:55:23.000,sam,200,text/html,21324,0,geek:social
|
503
|
+
10.1.1.162,A,theburningear.disqus.com,/foo?bar,mbp.remote,2011-05-06 21:20:14.000,daniel,500,application/octet-stream,35006,0,social:geek
|
504
|
+
10.1.1.57,A,prompt.securewebsiteaccess.com,/foo?bar,paul.netfox.local,2011-05-06 10:45:06.000,michael,200,application/octet-stream,46510,1,porn:media
|
505
|
+
10.1.1.62,W,0948261119.21.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 06:12:38.000,eric,500,text/html,94561,1,media:web
|
506
|
+
10.1.1.245,W,04007269621.7.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 22:12:37.000,robert,200,text/html,48793,1,porn
|
507
|
+
10.1.1.245,A,www.great-printable-calendars.com,/foo?bar,mbp.remote,2011-05-06 04:35:08.000,alexis,500,text/html,93331,0,shopping
|
508
|
+
10.1.1.185,A,static2.travbuddy.com,/foo?bar,paul.netfox.local,2011-05-06 14:05:50.000,eric,200,text/plain,24214,1,social:media
|
509
|
+
10.1.1.171,D,102242037237.18.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 03:57:34.000,robert,500,text/html,29992,1,social:porn
|
510
|
+
10.1.1.131,D,campaigns.theage.com.au,/foo?bar,mbp.remote,2011-05-06 12:21:54.000,sam,200,text/plain,95737,0,media:social
|
511
|
+
10.1.1.78,A,www.embroidery.com,/foo?bar,dan.netfox.local,2011-05-06 08:59:32.000,roger,403,text/plain,31050,1,shopping:social
|
512
|
+
10.1.1.207,W,04279416835.39.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 05:52:57.000,jordan,200,image/jpeg,14960,1,web
|
513
|
+
10.1.1.185,W,onbkrlhnqr.immanuel.sa.edu.au,/foo?bar,dan.netfox.local,2011-05-06 18:41:56.000,fabian,407,image/jpeg,61129,0,shopping:media
|
514
|
+
10.1.1.103,D,0326596836.142.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 00:17:58.000,jordan,200,image/jpeg,89048,0,business
|
515
|
+
10.1.1.1,W,media.northjersey.com,/foo?bar,mbp.remote,2011-05-06 03:14:02.000,alexis,404,application/octet-stream,37453,0,geek:social
|
516
|
+
10.1.1.236,D,www.1sewingpatterns.com,/foo?bar,dan.netfox.local,2011-05-06 19:17:19.000,graham,200,image/jpeg,20073,0,web:business
|
517
|
+
10.1.1.212,W,www.milosport.com,/foo?bar,mbp.remote,2011-05-06 19:32:07.000,roger,500,text/html,82627,1,shopping:business
|
518
|
+
10.1.1.64,A,www.kitconet.com,/foo?bar,paul.netfox.local,2011-05-06 08:22:30.000,eric,200,image/jpeg,94406,1,porn:social
|
519
|
+
10.1.1.165,D,burdastyle.us2.list-manage.com,/foo?bar,warren.netfox.local,2011-05-06 05:03:49.000,jayne,403,application/octet-stream,11251,1,social:shopping
|
520
|
+
10.1.1.245,D,www.rollingfumblingthug.com,/foo?bar,mbp.remote,2011-05-06 06:22:00.000,robert,200,text/html,24539,1,business:shopping
|
521
|
+
10.1.1.102,W,rp1.monday.vip.tw1.yahoo.net,/foo?bar,warren.netfox.local,2011-05-06 16:43:43.000,terry,403,application/octet-stream,74370,1,business:web
|
522
|
+
10.1.1.132,W,www.rodewayinn.com,/foo?bar,paul.netfox.local,2011-05-06 09:39:07.000,terry,200,text/plain,16277,1,shopping:geek
|
523
|
+
10.1.1.150,A,0784641169.69.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 05:16:42.000,sam,500,text/html,78146,1,porn:geek
|
524
|
+
10.1.1.152,A,www.greekorthodox.org.au,/foo?bar,mbp.remote,2011-05-06 15:09:12.000,ben,200,application/octet-stream,26637,0,shopping:business
|
525
|
+
10.1.1.27,D,www.jewishpress.com,/foo?bar,warren.netfox.local,2011-05-06 15:19:17.000,michael,404,text/html,48457,0,business:porn
|
526
|
+
10.1.1.5,A,therefinersfire.org,/foo?bar,mbp.remote,2011-05-06 22:56:22.000,ben,200,text/plain,57860,0,shopping:porn
|
527
|
+
10.1.1.11,A,www.catalog.slsa.sa.gov.au,/foo?bar,dan.netfox.local,2011-05-06 19:37:16.000,michael,407,image/jpeg,95702,1,business:geek
|
528
|
+
10.1.1.204,A,incredible-news.org,/foo?bar,warren.netfox.local,2011-05-06 10:22:11.000,jayne,200,image/jpeg,84367,0,social:shopping
|
529
|
+
10.1.1.7,D,02750452183.28.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 03:52:31.000,jayne,404,text/html,19951,0,social:business
|
530
|
+
10.1.1.203,A,www.blindtextgenerator.com,/foo?bar,mbp.remote,2011-05-06 13:46:11.000,jeremy,200,application/octet-stream,47370,0,media:social
|
531
|
+
10.1.1.8,D,ucimg.vcimg.com,/foo?bar,dan.netfox.local,2011-05-06 08:18:25.000,eric,403,text/plain,28538,1,porn
|
532
|
+
10.1.1.130,D,images.comcastdigital.com,/foo?bar,dan.netfox.local,2011-05-06 08:42:24.000,terry,200,text/plain,88089,0,geek:web
|
533
|
+
10.1.1.166,A,mslabs-646.vo.llnwd.net,/foo?bar,paul.netfox.local,2011-05-06 09:51:42.000,ben,403,text/html,77998,1,geek:social
|
534
|
+
10.1.1.247,D,zcvlimoyet.immanuel.sa.edu.au,/foo?bar,paul.netfox.local,2011-05-06 22:34:41.000,alexis,200,text/html,71542,1,media:shopping
|
535
|
+
10.1.1.207,A,new.erji.com,/foo?bar,warren.netfox.local,2011-05-06 23:06:22.000,jayne,407,text/html,46578,0,business:geek
|
536
|
+
10.1.1.146,A,03980215891.133.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 14:58:05.000,sam,200,text/html,69931,1,media:geek
|
537
|
+
10.1.1.120,A,joannagoddard.blogspot.com,/foo?bar,mbp.remote,2011-05-06 16:51:54.000,daniel,403,image/jpeg,6926,1,business:shopping
|
538
|
+
10.1.1.42,A,headroom.net.au,/foo?bar,mbp.remote,2011-05-06 08:17:49.000,ben,200,application/octet-stream,91648,0,social:media
|
539
|
+
10.1.1.77,D,www.grassyknolltv.com,/foo?bar,mbp.remote,2011-05-06 08:46:31.000,eric,500,application/octet-stream,73188,0,web:geek
|
540
|
+
10.1.1.46,D,www.edusubmit.com,/foo?bar,warren.netfox.local,2011-05-06 01:59:49.000,robert,200,application/octet-stream,82989,1,porn
|
541
|
+
10.1.1.129,D,23361963679.54.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 06:00:47.000,michael,403,application/octet-stream,54539,0,social:geek
|
542
|
+
10.1.1.81,W,13586052537.5.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 07:27:04.000,ben,200,text/html,4620,1,business:shopping
|
543
|
+
10.1.1.142,D,www.bpay.com.au,/foo?bar,paul.netfox.local,2011-05-06 20:07:56.000,eric,500,application/octet-stream,93721,0,web:social
|
544
|
+
10.1.1.198,D,02893742731.26.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 23:52:57.000,alexis,200,image/jpeg,3701,0,geek:business
|
545
|
+
10.1.1.71,A,480.webim0334.webim.myspace.com,/foo?bar,paul.netfox.local,2011-05-06 02:16:15.000,alexis,404,image/jpeg,2908,0,porn:business
|
546
|
+
10.1.1.40,D,www.inspireme.net,/foo?bar,mbp.remote,2011-05-06 13:08:51.000,jayne,200,image/jpeg,44518,1,media:shopping
|
547
|
+
10.1.1.203,D,www.riversideservicedapartments.com.au,/foo?bar,mbp.remote,2011-05-06 21:53:11.000,roger,500,text/html,81509,0,business:porn
|
548
|
+
10.1.1.57,W,gaae.hit.gemius.pl,/foo?bar,mbp.remote,2011-05-06 20:36:36.000,sam,200,image/jpeg,46145,0,geek:media
|
549
|
+
10.1.1.5,A,www.rockhay.org,/foo?bar,dan.netfox.local,2011-05-06 01:02:21.000,terry,403,text/plain,93350,0,geek:social
|
550
|
+
10.1.1.23,D,blog.iconspedia.com,/foo?bar,paul.netfox.local,2011-05-06 01:20:07.000,eric,200,text/html,20588,1,social:business
|
551
|
+
10.1.1.229,D,wm-ondemand03b.omroep.nl,/foo?bar,dan.netfox.local,2011-05-06 19:26:06.000,daniel,407,text/plain,31404,0,media:social
|
552
|
+
10.1.1.140,W,01788059502.41.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 18:12:30.000,terry,200,image/jpeg,70172,1,shopping:business
|
553
|
+
10.1.1.175,D,as.yl.impact-ad.jp,/foo?bar,mbp.remote,2011-05-06 03:07:49.000,robert,403,text/html,73041,0,social:porn
|
554
|
+
10.1.1.12,W,02106332544.73.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 03:06:14.000,eric,200,image/jpeg,25814,1,porn:social
|
555
|
+
10.1.1.19,A,www.telstra.com,/foo?bar,warren.netfox.local,2011-05-06 01:34:08.000,john,407,application/octet-stream,93504,1,business:media
|
556
|
+
10.1.1.70,A,auih.merchantrunglobal.com,/foo?bar,paul.netfox.local,2011-05-06 16:40:42.000,jordan,200,text/plain,93087,0,social:shopping
|
557
|
+
10.1.1.225,D,092982045.54.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 14:36:15.000,terry,407,text/plain,58406,1,media:web
|
558
|
+
10.1.1.64,W,www.premiere.com,/foo?bar,paul.netfox.local,2011-05-06 15:26:08.000,graham,200,text/html,13237,0,business:shopping
|
559
|
+
10.1.1.138,D,instalments.mytivo.com.au,/foo?bar,dan.netfox.local,2011-05-06 15:33:10.000,roger,407,application/octet-stream,14726,0,media:shopping
|
560
|
+
10.1.1.152,D,www.funklicks.com,/foo?bar,mbp.remote,2011-05-06 08:24:41.000,daniel,200,text/html,27357,0,porn:shopping
|
561
|
+
10.1.1.196,A,0792931798.59.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 13:06:00.000,daniel,500,text/html,92785,0,web
|
562
|
+
10.1.1.191,D,www.soccerstats.com,/foo?bar,warren.netfox.local,2011-05-06 18:38:10.000,michael,200,image/jpeg,26244,0,media
|
563
|
+
10.1.1.74,D,01678376007.6.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 05:49:02.000,daniel,404,text/plain,86400,0,media:shopping
|
564
|
+
10.1.1.159,D,oi54.tinypic.com,/foo?bar,paul.netfox.local,2011-05-06 17:16:46.000,ben,200,application/octet-stream,5543,1,geek:social
|
565
|
+
10.1.1.110,D,amaebi.net,/foo?bar,paul.netfox.local,2011-05-06 13:03:23.000,sam,500,image/jpeg,62252,0,business:media
|
566
|
+
10.1.1.197,D,ads.adcloud.net,/foo?bar,mbp.remote,2011-05-06 04:48:31.000,ben,200,image/jpeg,86125,1,shopping:social
|
567
|
+
10.1.1.163,A,e-2dj6wfk4okdzeco.stats.esomniture.com,/foo?bar,warren.netfox.local,2011-05-06 21:09:15.000,graham,407,application/octet-stream,6518,0,shopping:geek
|
568
|
+
10.1.1.191,D,03642588361.2.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 10:41:17.000,roger,200,text/plain,49186,0,social:shopping
|
569
|
+
10.1.1.196,A,www.justclowningaround.com.au,/foo?bar,warren.netfox.local,2011-05-06 02:47:01.000,daniel,403,text/html,25633,0,geek:business
|
570
|
+
10.1.1.49,W,www.youngandgrumpy.com,/foo?bar,warren.netfox.local,2011-05-06 04:17:11.000,robert,200,text/plain,14446,1,porn:social
|
571
|
+
10.1.1.163,D,www.escapistmagazine.com,/foo?bar,warren.netfox.local,2011-05-06 02:35:18.000,roger,404,text/plain,46500,1,porn
|
572
|
+
10.1.1.129,D,02800960690.114.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 02:11:29.000,john,200,application/octet-stream,4292,1,social:porn
|
573
|
+
10.1.1.126,W,www.dj-mixes.com,/foo?bar,paul.netfox.local,2011-05-06 21:29:38.000,terry,407,application/octet-stream,89740,1,media:business
|
574
|
+
10.1.1.213,W,03779335562.41.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 22:46:30.000,graham,200,image/jpeg,73347,1,media
|
575
|
+
10.1.1.30,W,www.eclipse-magazine.it,/foo?bar,dan.netfox.local,2011-05-06 12:01:06.000,fabian,407,text/plain,63982,1,media
|
576
|
+
10.1.1.203,W,www.occasionalplanet.com,/foo?bar,warren.netfox.local,2011-05-06 08:04:36.000,fabian,200,text/plain,94796,0,social:business
|
577
|
+
10.1.1.118,A,0961345444.76.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 04:41:26.000,eric,500,application/octet-stream,80358,1,porn:social
|
578
|
+
10.1.1.121,D,cid-233172e14adcb583.users.storage.live.com,/foo?bar,mbp.remote,2011-05-06 21:53:25.000,alexis,200,image/jpeg,80776,1,social:web
|
579
|
+
10.1.1.243,D,homepages.which.net,/foo?bar,paul.netfox.local,2011-05-06 16:06:42.000,terry,500,text/plain,60647,1,business:media
|
580
|
+
10.1.1.33,D,expo-max.com,/foo?bar,warren.netfox.local,2011-05-06 19:19:47.000,graham,200,text/html,7052,0,porn:geek
|
581
|
+
10.1.1.87,D,www.mymathspace.net,/foo?bar,paul.netfox.local,2011-05-06 05:14:18.000,jayne,407,text/plain,87306,1,porn:shopping
|
582
|
+
10.1.1.79,A,images.tv.adobe.com,/foo?bar,mbp.remote,2011-05-06 04:59:55.000,jordan,200,image/jpeg,79664,1,social:porn
|
583
|
+
10.1.1.115,D,cdn.bidsystem.com,/foo?bar,dan.netfox.local,2011-05-06 23:06:37.000,daniel,500,image/jpeg,46027,1,social:media
|
584
|
+
10.1.1.174,D,www.monami.com.au,/foo?bar,mbp.remote,2011-05-06 16:31:07.000,fabian,200,image/jpeg,46628,0,social:media
|
585
|
+
10.1.1.241,A,pro.dovogame.com,/foo?bar,paul.netfox.local,2011-05-06 12:08:48.000,john,407,image/jpeg,91271,0,shopping:porn
|
586
|
+
10.1.1.217,A,widgets.zibb.com,/foo?bar,paul.netfox.local,2011-05-06 03:27:12.000,terry,200,image/jpeg,54459,0,geek:web
|
587
|
+
10.1.1.206,A,0608505551.5.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 19:21:35.000,jeremy,404,application/octet-stream,63605,0,social:business
|
588
|
+
10.1.1.35,D,02924776584.7.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 11:03:19.000,ben,200,image/jpeg,76566,0,web:media
|
589
|
+
10.1.1.124,D,hp.wildgames.com,/foo?bar,dan.netfox.local,2011-05-06 19:54:58.000,alexis,403,text/html,23169,1,web:business
|
590
|
+
10.1.1.203,A,img.root-top.com,/foo?bar,warren.netfox.local,2011-05-06 12:34:34.000,sam,200,image/jpeg,70078,1,geek:media
|
591
|
+
10.1.1.79,W,pt200236.unica.com,/foo?bar,dan.netfox.local,2011-05-06 01:14:27.000,jordan,403,text/plain,81394,0,media
|
592
|
+
10.1.1.21,A,01790512082.93.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 05:58:36.000,jordan,200,text/html,9887,1,business:social
|
593
|
+
10.1.1.152,A,03113951192.103.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 14:36:13.000,graham,403,image/jpeg,44131,0,media
|
594
|
+
10.1.1.124,D,5688586479.6.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 20:55:50.000,eric,200,text/plain,58871,1,porn:business
|
595
|
+
10.1.1.154,D,www.bestpricenutrition.com,/foo?bar,paul.netfox.local,2011-05-06 18:06:48.000,jeremy,404,image/jpeg,4478,1,business
|
596
|
+
10.1.1.43,W,dinospecies.blogspot.com,/foo?bar,paul.netfox.local,2011-05-06 09:08:13.000,robert,200,text/plain,6989,1,social:porn
|
597
|
+
10.1.1.196,D,cfhusband.blogspot.com,/foo?bar,paul.netfox.local,2011-05-06 07:43:00.000,jordan,403,application/octet-stream,45482,1,geek:web
|
598
|
+
10.1.1.2,D,www.josephconvict.com,/foo?bar,mbp.remote,2011-05-06 14:20:56.000,jayne,200,application/octet-stream,26604,0,shopping:social
|
599
|
+
10.1.1.243,D,0848369200.20.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 10:50:41.000,roger,403,text/plain,71547,1,social:shopping
|
600
|
+
10.1.1.52,D,forladiesbyladies.com,/foo?bar,dan.netfox.local,2011-05-06 04:44:08.000,eric,200,text/plain,44781,0,shopping:business
|
601
|
+
10.1.1.234,A,punkrockoi.blogspot.com,/foo?bar,mbp.remote,2011-05-06 14:24:24.000,sam,407,application/octet-stream,47198,1,media:geek
|
602
|
+
10.1.1.47,A,03620886048.28.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 04:45:16.000,graham,200,application/octet-stream,94052,1,social:geek
|
603
|
+
10.1.1.216,A,lahore.metblogs.com,/foo?bar,mbp.remote,2011-05-06 13:58:27.000,sam,403,application/octet-stream,78131,0,geek:social
|
604
|
+
10.1.1.17,W,ufc.apprvd.com,/foo?bar,paul.netfox.local,2011-05-06 19:41:01.000,fabian,200,image/jpeg,52179,1,media:business
|
605
|
+
10.1.1.66,A,cid-5360f46f289aef80.users.storage.live.com,/foo?bar,paul.netfox.local,2011-05-06 18:09:34.000,roger,403,text/html,20856,0,shopping
|
606
|
+
10.1.1.83,W,lol.uuu9.com,/foo?bar,dan.netfox.local,2011-05-06 04:25:22.000,robert,200,image/jpeg,29646,0,media:social
|
607
|
+
10.1.1.47,W,bathroomdesignspictures.com,/foo?bar,dan.netfox.local,2011-05-06 19:10:13.000,ben,407,text/plain,81560,1,shopping:geek
|
608
|
+
10.1.1.84,W,i307.photobucket.com,/foo?bar,mbp.remote,2011-05-06 05:23:21.000,roger,200,image/jpeg,36344,1,shopping:web
|
609
|
+
10.1.1.168,D,westernbulldogs.com.au,/foo?bar,dan.netfox.local,2011-05-06 10:48:04.000,graham,404,image/jpeg,16235,1,web
|
610
|
+
10.1.1.21,W,images.canberratimes.com.au,/foo?bar,warren.netfox.local,2011-05-06 14:42:15.000,sam,200,text/plain,95442,1,business:social
|
611
|
+
10.1.1.238,A,www.yellbox.com,/foo?bar,mbp.remote,2011-05-06 19:44:29.000,sam,500,text/html,99369,0,social:business
|
612
|
+
10.1.1.40,W,www.i-size.com.cn,/foo?bar,paul.netfox.local,2011-05-06 04:24:47.000,eric,200,text/plain,12262,1,porn:media
|
613
|
+
10.1.1.118,A,www.marcoborges.com,/foo?bar,dan.netfox.local,2011-05-06 22:52:42.000,michael,500,text/plain,8905,0,business
|
614
|
+
10.1.1.206,A,www.parks.sa.gov.au,/foo?bar,mbp.remote,2011-05-06 09:52:53.000,fabian,200,image/jpeg,6186,1,business
|
615
|
+
10.1.1.107,A,secure.accu.com.au,/foo?bar,warren.netfox.local,2011-05-06 18:18:50.000,graham,404,text/plain,24172,0,shopping:media
|
616
|
+
10.1.1.164,W,04203041320.99.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 05:12:33.000,jayne,200,text/plain,85153,0,web
|
617
|
+
10.1.1.162,W,widget.newsinc.com,/foo?bar,mbp.remote,2011-05-06 14:31:29.000,eric,500,text/plain,80172,1,web:geek
|
618
|
+
10.1.1.31,D,3781592348.18.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 16:07:01.000,terry,200,image/jpeg,89577,0,social:geek
|
619
|
+
10.1.1.86,A,teachit.acreekps.vic.edu.au,/foo?bar,dan.netfox.local,2011-05-06 00:15:53.000,jordan,407,application/octet-stream,97677,0,porn:media
|
620
|
+
10.1.1.99,D,ad.it.doubleclick.net,/foo?bar,mbp.remote,2011-05-06 23:29:30.000,jeremy,200,text/plain,16516,0,business:social
|
621
|
+
10.1.1.233,D,www.theshipslist.com,/foo?bar,warren.netfox.local,2011-05-06 03:55:04.000,terry,403,application/octet-stream,87960,1,social:geek
|
622
|
+
10.1.1.134,W,acavill.com,/foo?bar,dan.netfox.local,2011-05-06 22:59:57.000,michael,200,image/jpeg,31361,0,porn:web
|
623
|
+
10.1.1.0,D,www.aimsc.org.au,/foo?bar,warren.netfox.local,2011-05-06 21:02:54.000,terry,407,image/jpeg,83031,0,media:geek
|
624
|
+
10.1.1.18,A,01952551746.26.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 16:15:36.000,terry,200,image/jpeg,4190,1,shopping:business
|
625
|
+
10.1.1.153,D,likeamania.us,/foo?bar,dan.netfox.local,2011-05-06 04:12:30.000,alexis,407,application/octet-stream,42294,0,web:social
|
626
|
+
10.1.1.189,A,leona-lewis-piano-sheet-music.tk,/foo?bar,mbp.remote,2011-05-06 02:51:49.000,michael,200,text/html,33809,1,business:social
|
627
|
+
10.1.1.202,A,origami-christmas.com,/foo?bar,dan.netfox.local,2011-05-06 10:26:12.000,john,404,application/octet-stream,64824,0,business
|
628
|
+
10.1.1.121,A,www.shadehunterumbrellas.com.au,/foo?bar,mbp.remote,2011-05-06 07:03:13.000,fabian,200,text/html,99519,1,web:media
|
629
|
+
10.1.1.120,D,01058653608.99.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 07:23:12.000,michael,407,text/plain,91261,0,porn:geek
|
630
|
+
10.1.1.73,W,footiewallpapers.com,/foo?bar,paul.netfox.local,2011-05-06 04:38:41.000,ben,200,text/html,81044,1,media:business
|
631
|
+
10.1.1.123,A,www.carnivalvenicemask.com,/foo?bar,mbp.remote,2011-05-06 10:47:47.000,daniel,403,image/jpeg,12413,0,shopping
|
632
|
+
10.1.1.20,W,www.idea-rock.hi88.com.tw,/foo?bar,dan.netfox.local,2011-05-06 07:03:22.000,eric,200,image/jpeg,74044,1,porn:shopping
|
633
|
+
10.1.1.190,D,urlb--static--ak--fbcdn--net.rtrk.com.au,/foo?bar,paul.netfox.local,2011-05-06 05:43:33.000,john,407,image/jpeg,8266,1,business:porn
|
634
|
+
10.1.1.185,A,www.andriasang.com,/foo?bar,warren.netfox.local,2011-05-06 18:40:38.000,terry,200,image/jpeg,7353,1,shopping:social
|
635
|
+
10.1.1.225,A,www.youdagames.com,/foo?bar,dan.netfox.local,2011-05-06 19:11:18.000,terry,500,text/html,25514,1,geek:social
|
636
|
+
10.1.1.132,W,mantis.borkbork.org,/foo?bar,dan.netfox.local,2011-05-06 12:01:54.000,eric,200,application/octet-stream,48696,0,porn:geek
|
637
|
+
10.1.1.227,A,mail.churchmail.com,/foo?bar,dan.netfox.local,2011-05-06 15:48:02.000,alexis,404,image/jpeg,86403,0,social:geek
|
638
|
+
10.1.1.167,A,www.rockmelt.com,/foo?bar,dan.netfox.local,2011-05-06 23:06:32.000,graham,200,text/plain,16558,1,porn:social
|
639
|
+
10.1.1.104,W,www.techapps.net,/foo?bar,paul.netfox.local,2011-05-06 08:24:20.000,roger,500,application/octet-stream,99741,0,geek:web
|
640
|
+
10.1.1.24,A,mslabs-216.vo.llnwd.net,/foo?bar,warren.netfox.local,2011-05-06 14:56:56.000,daniel,200,text/html,74777,1,business:shopping
|
641
|
+
10.1.1.89,D,celebrities.ninemsn.com.au,/foo?bar,paul.netfox.local,2011-05-06 16:59:44.000,john,407,application/octet-stream,30183,0,shopping
|
642
|
+
10.1.1.35,W,f1.flv.kankan.xunlei.com,/foo?bar,warren.netfox.local,2011-05-06 23:12:11.000,graham,200,text/plain,24726,0,porn:social
|
643
|
+
10.1.1.102,D,media.comicvine.com,/foo?bar,paul.netfox.local,2011-05-06 07:39:58.000,terry,407,application/octet-stream,47955,0,media:web
|
644
|
+
10.1.1.199,W,p2.jpdtzx7ulgc5s.ts6mziujuwp3qq7h.ds.ipv6-exp.l.google.com,/foo?bar,warren.netfox.local,2011-05-06 10:43:54.000,terry,200,image/jpeg,71998,0,media:social
|
645
|
+
10.1.1.26,D,03046443751.16.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 19:42:58.000,jeremy,403,text/plain,79349,1,media:geek
|
646
|
+
10.1.1.91,D,shows.vtheatre.net,/foo?bar,mbp.remote,2011-05-06 11:24:00.000,michael,200,image/jpeg,57838,1,shopping:business
|
647
|
+
10.1.1.136,W,03015531655.155.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 22:10:25.000,jayne,404,text/plain,14189,1,porn:web
|
648
|
+
10.1.1.58,W,thumbs.4chan.org,/foo?bar,paul.netfox.local,2011-05-06 06:56:56.000,jordan,200,image/jpeg,71226,0,porn:media
|
649
|
+
10.1.1.216,A,03258587444.67.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 12:23:14.000,ben,500,image/jpeg,45040,0,shopping:web
|
650
|
+
10.1.1.241,A,sx.krmtv.com,/foo?bar,dan.netfox.local,2011-05-06 05:46:34.000,michael,200,text/plain,63634,0,porn:web
|
651
|
+
10.1.1.184,D,widget.collecta.com,/foo?bar,paul.netfox.local,2011-05-06 20:06:10.000,jordan,407,application/octet-stream,88451,1,business
|
652
|
+
10.1.1.77,W,www.whatupthug.com,/foo?bar,paul.netfox.local,2011-05-06 23:36:22.000,jayne,200,application/octet-stream,65420,0,business:media
|
653
|
+
10.1.1.137,D,ads.newtention.net,/foo?bar,warren.netfox.local,2011-05-06 13:17:25.000,fabian,407,text/html,28008,0,business:web
|
654
|
+
10.1.1.175,W,www.prevucorporation.com,/foo?bar,mbp.remote,2011-05-06 22:07:51.000,alexis,200,application/octet-stream,1660,0,social:web
|
655
|
+
10.1.1.125,A,www.stjohnserith.org,/foo?bar,paul.netfox.local,2011-05-06 00:35:44.000,fabian,407,image/jpeg,67493,1,media:geek
|
656
|
+
10.1.1.69,A,0333215659.116.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 02:28:02.000,fabian,200,text/html,62773,1,business:porn
|
657
|
+
10.1.1.79,D,1.bp.blogspot.com,/foo?bar,dan.netfox.local,2011-05-06 01:18:00.000,michael,403,image/jpeg,39678,1,web:shopping
|
658
|
+
10.1.1.112,D,kw.ra.icast.cn,/foo?bar,paul.netfox.local,2011-05-06 16:23:32.000,eric,200,text/html,4055,1,shopping
|
659
|
+
10.1.1.104,A,v.v.prs.aimini.net,/foo?bar,warren.netfox.local,2011-05-06 03:11:02.000,jayne,403,text/html,65095,0,business:shopping
|
660
|
+
10.1.1.220,W,www.tzoo-img.com,/foo?bar,mbp.remote,2011-05-06 16:19:11.000,fabian,200,text/html,38467,0,web
|
661
|
+
10.1.1.137,W,insideathletics.zenfolio.com,/foo?bar,paul.netfox.local,2011-05-06 17:19:17.000,jordan,500,application/octet-stream,30957,0,porn:geek
|
662
|
+
10.1.1.35,D,spc.cebecggfeekghhfgjehejfpg.iban.telemetryverification.net,/foo?bar,mbp.remote,2011-05-06 20:52:43.000,sam,200,text/html,12823,0,business
|
663
|
+
10.1.1.158,W,www.design-cars.com,/foo?bar,paul.netfox.local,2011-05-06 23:19:32.000,eric,500,image/jpeg,4174,1,media:shopping
|
664
|
+
10.1.1.97,D,s0.geograph.org.uk,/foo?bar,paul.netfox.local,2011-05-06 03:21:47.000,alexis,200,text/plain,55241,1,media:shopping
|
665
|
+
10.1.1.242,W,206.track.ning.com,/foo?bar,paul.netfox.local,2011-05-06 11:11:31.000,robert,407,text/plain,67127,0,social:geek
|
666
|
+
10.1.1.111,W,allusion2.com,/foo?bar,paul.netfox.local,2011-05-06 02:00:42.000,sam,200,text/html,69906,0,porn:social
|
667
|
+
10.1.1.26,A,02010244903.23.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 00:21:01.000,daniel,404,text/html,1860,0,web:shopping
|
668
|
+
10.1.1.210,W,www.kriyayoga.com,/foo?bar,mbp.remote,2011-05-06 16:25:42.000,michael,200,image/jpeg,74687,1,social:geek
|
669
|
+
10.1.1.13,W,www.breakprox.com,/foo?bar,paul.netfox.local,2011-05-06 03:41:49.000,robert,403,image/jpeg,71355,1,porn:web
|
670
|
+
10.1.1.24,A,www.hamienet.com,/foo?bar,mbp.remote,2011-05-06 20:29:57.000,jeremy,200,text/plain,88752,0,geek:social
|
671
|
+
10.1.1.78,A,www2.us.elsevierhealth.com,/foo?bar,dan.netfox.local,2011-05-06 16:06:03.000,terry,403,text/html,82305,1,shopping:geek
|
672
|
+
10.1.1.47,D,www.ucdavis.edu,/foo?bar,paul.netfox.local,2011-05-06 17:49:15.000,graham,200,image/jpeg,24302,1,shopping:social
|
673
|
+
10.1.1.229,A,www.costumecollection.com.au,/foo?bar,warren.netfox.local,2011-05-06 07:05:18.000,john,404,application/octet-stream,7419,0,geek:web
|
674
|
+
10.1.1.185,A,01852242054.100.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 05:26:44.000,ben,200,text/plain,75060,0,social:porn
|
675
|
+
10.1.1.117,W,www.channelguidemag.com,/foo?bar,warren.netfox.local,2011-05-06 19:46:30.000,ben,404,text/html,4228,0,web:geek
|
676
|
+
10.1.1.231,W,03172519819.159.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 19:12:00.000,jayne,200,text/html,76993,1,shopping:social
|
677
|
+
10.1.1.77,W,www.afi.org.au,/foo?bar,warren.netfox.local,2011-05-06 18:17:01.000,daniel,404,application/octet-stream,47456,1,web:porn
|
678
|
+
10.1.1.87,D,world100.runescape.com,/foo?bar,warren.netfox.local,2011-05-06 10:02:38.000,jeremy,200,application/octet-stream,86571,1,porn:social
|
679
|
+
10.1.1.73,W,0563664802.3.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 14:17:45.000,terry,407,text/html,54988,1,geek:web
|
680
|
+
10.1.1.32,D,gypsyscholarship.blogspot.com,/foo?bar,mbp.remote,2011-05-06 12:35:54.000,sam,200,text/plain,96230,1,geek:shopping
|
681
|
+
10.1.1.60,A,static.reportlinker.com,/foo?bar,dan.netfox.local,2011-05-06 17:55:38.000,ben,407,image/jpeg,43316,0,business:web
|
682
|
+
10.1.1.203,W,0553745824.23.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 01:19:06.000,roger,200,text/html,85701,0,porn:shopping
|
683
|
+
10.1.1.98,W,i796.photobucket.com,/foo?bar,mbp.remote,2011-05-06 19:59:45.000,sam,404,text/html,46167,1,porn:social
|
684
|
+
10.1.1.92,D,xsleepisforsquaresx.files.wordpress.com,/foo?bar,warren.netfox.local,2011-05-06 03:35:10.000,daniel,200,image/jpeg,95742,1,media:porn
|
685
|
+
10.1.1.123,D,mslabs-981.vo.llnwd.net,/foo?bar,mbp.remote,2011-05-06 02:26:55.000,michael,500,text/plain,44220,0,geek:web
|
686
|
+
10.1.1.240,D,01238285439.107.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 12:21:40.000,terry,200,image/jpeg,21360,1,media:social
|
687
|
+
10.1.1.154,A,image.lightinthebox.com,/foo?bar,paul.netfox.local,2011-05-06 21:09:11.000,sam,404,text/plain,22048,1,geek
|
688
|
+
10.1.1.52,D,www.drawingstep.com,/foo?bar,warren.netfox.local,2011-05-06 09:01:21.000,jeremy,200,text/html,66805,1,business:porn
|
689
|
+
10.1.1.107,W,www.ziggygames.com,/foo?bar,paul.netfox.local,2011-05-06 11:49:01.000,fabian,407,application/octet-stream,29578,1,shopping:social
|
690
|
+
10.1.1.193,D,prompt.securewebsiteaccess.com,/foo?bar,warren.netfox.local,2011-05-06 00:33:40.000,eric,200,text/plain,50674,1,shopping:web
|
691
|
+
10.1.1.39,D,th537.photobucket.com,/foo?bar,paul.netfox.local,2011-05-06 03:13:20.000,jordan,500,application/octet-stream,19057,0,porn:web
|
692
|
+
10.1.1.101,D,pplive-probe.datamaster.com.cn,/foo?bar,mbp.remote,2011-05-06 10:11:58.000,john,200,image/jpeg,67847,0,web:shopping
|
693
|
+
10.1.1.132,W,www.chilliwebsites.com,/foo?bar,paul.netfox.local,2011-05-06 01:56:40.000,jeremy,407,text/html,65892,0,geek
|
694
|
+
10.1.1.238,A,public.autobloglink.com,/foo?bar,paul.netfox.local,2011-05-06 09:31:04.000,roger,200,image/jpeg,15225,1,social:web
|
695
|
+
10.1.1.35,A,i706.photobucket.com,/foo?bar,mbp.remote,2011-05-06 04:34:28.000,jeremy,500,text/plain,72934,0,geek:web
|
696
|
+
10.1.1.67,D,www.makeuseof.com,/foo?bar,mbp.remote,2011-05-06 01:12:56.000,terry,200,image/jpeg,85179,0,web:social
|
697
|
+
10.1.1.170,D,www.gtplanet.net,/foo?bar,dan.netfox.local,2011-05-06 11:07:41.000,terry,407,application/octet-stream,35993,0,porn:shopping
|
698
|
+
10.1.1.149,W,elders.com.au,/foo?bar,warren.netfox.local,2011-05-06 16:03:46.000,eric,200,text/html,92353,1,business
|
699
|
+
10.1.1.10,W,02606280798.39.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 03:22:45.000,michael,403,image/jpeg,13596,1,social
|
700
|
+
10.1.1.49,A,aidanmoher.com,/foo?bar,paul.netfox.local,2011-05-06 18:25:54.000,jordan,200,image/jpeg,33990,1,business:geek
|
701
|
+
10.1.1.28,W,adserver2.news-journalonline.com,/foo?bar,dan.netfox.local,2011-05-06 09:29:57.000,graham,500,application/octet-stream,7949,0,shopping:porn
|
702
|
+
10.1.1.86,D,cd32.static.jango.com,/foo?bar,paul.netfox.local,2011-05-06 17:22:39.000,roger,200,text/html,76999,1,media:business
|
703
|
+
10.1.1.137,A,03913128052.144.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 06:17:26.000,john,404,image/jpeg,11526,1,geek:social
|
704
|
+
10.1.1.161,W,metrics.travelguru.com,/foo?bar,paul.netfox.local,2011-05-06 16:40:03.000,john,200,image/jpeg,33406,1,business
|
705
|
+
10.1.1.142,A,cdn.cstatic.net,/foo?bar,dan.netfox.local,2011-05-06 16:34:18.000,sam,500,text/plain,56101,1,porn:media
|
706
|
+
10.1.1.111,A,cc-shop.jp,/foo?bar,dan.netfox.local,2011-05-06 11:59:37.000,jayne,200,text/plain,45565,1,porn:web
|
707
|
+
10.1.1.39,A,d3.spintop-media.com,/foo?bar,warren.netfox.local,2011-05-06 00:51:31.000,ben,403,application/octet-stream,89682,0,shopping:geek
|
708
|
+
10.1.1.241,A,www.journeymum.com,/foo?bar,paul.netfox.local,2011-05-06 17:18:53.000,sam,200,application/octet-stream,63105,1,geek:media
|
709
|
+
10.1.1.102,A,ajax.capcom-unity.com,/foo?bar,mbp.remote,2011-05-06 03:35:51.000,daniel,404,application/octet-stream,43473,1,porn:social
|
710
|
+
10.1.1.231,D,0201243802.109.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 21:10:56.000,robert,200,image/jpeg,7512,0,web:social
|
711
|
+
10.1.1.156,A,new.dpi.vic.gov.au,/foo?bar,mbp.remote,2011-05-06 00:37:13.000,daniel,404,image/jpeg,38238,0,business:social
|
712
|
+
10.1.1.167,A,technotrixdebajyoti.googlepages.com,/foo?bar,mbp.remote,2011-05-06 08:39:46.000,michael,200,image/jpeg,45049,1,media:social
|
713
|
+
10.1.1.100,W,bannerfarm.ace.advertising.com,/foo?bar,mbp.remote,2011-05-06 06:40:29.000,terry,407,text/html,97026,1,geek:social
|
714
|
+
10.1.1.42,A,www.diaryshop.com.au,/foo?bar,mbp.remote,2011-05-06 01:28:33.000,daniel,200,text/html,75885,1,porn:media
|
715
|
+
10.1.1.183,A,p2.ppcujtekccvwm.5klilbhqewlhqm27.ds.ipv6-exp.l.google.com,/foo?bar,paul.netfox.local,2011-05-06 12:13:02.000,terry,500,image/jpeg,31961,0,geek:porn
|
716
|
+
10.1.1.104,A,sgwngxo.ebay.com.au,/foo?bar,paul.netfox.local,2011-05-06 13:09:40.000,sam,200,text/html,13933,1,social
|
717
|
+
10.1.1.175,W,s56.radikal.ru,/foo?bar,paul.netfox.local,2011-05-06 14:38:43.000,michael,404,application/octet-stream,75827,1,business:porn
|
718
|
+
10.1.1.186,W,wftc2.e-travel.com,/foo?bar,warren.netfox.local,2011-05-06 20:44:49.000,eric,200,image/jpeg,6639,0,geek:social
|
719
|
+
10.1.1.121,W,www.b2ltd.com,/foo?bar,warren.netfox.local,2011-05-06 16:04:58.000,alexis,403,text/html,6648,1,media:porn
|
720
|
+
10.1.1.54,D,03333054808.54.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 22:22:15.000,jordan,200,text/plain,46557,1,media
|
721
|
+
10.1.1.249,W,perceptualedge.com,/foo?bar,warren.netfox.local,2011-05-06 22:54:18.000,jeremy,403,image/jpeg,44823,0,social:shopping
|
722
|
+
10.1.1.111,D,img.uptodown.net,/foo?bar,mbp.remote,2011-05-06 20:48:06.000,eric,200,image/jpeg,76658,1,geek:media
|
723
|
+
10.1.1.166,W,bwp.builderau.com.au,/foo?bar,warren.netfox.local,2011-05-06 19:11:37.000,graham,407,text/plain,21746,0,media:business
|
724
|
+
10.1.1.219,A,6pnb2qk0086kha15t5gmm1u8gf74j911.ig.ig.gmodules.com,/foo?bar,mbp.remote,2011-05-06 06:42:16.000,eric,200,image/jpeg,65351,1,business:porn
|
725
|
+
10.1.1.157,A,img.899games.com,/foo?bar,dan.netfox.local,2011-05-06 15:29:19.000,daniel,404,text/plain,7283,1,shopping:geek
|
726
|
+
10.1.1.225,W,02316434734.67.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 22:32:45.000,john,200,text/html,88289,0,geek:web
|
727
|
+
10.1.1.22,W,01559409803.24.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 23:09:08.000,jeremy,404,text/plain,89443,1,shopping:business
|
728
|
+
10.1.1.214,W,se-kanal5.cdn.videoplaza.tv,/foo?bar,paul.netfox.local,2011-05-06 02:01:06.000,jordan,200,application/octet-stream,59116,1,media:porn
|
729
|
+
10.1.1.129,A,stefdvm.blogspot.com,/foo?bar,paul.netfox.local,2011-05-06 07:27:33.000,alexis,404,text/html,13612,0,social:media
|
730
|
+
10.1.1.82,W,cardomain.us.intellitxt.com,/foo?bar,paul.netfox.local,2011-05-06 23:23:44.000,daniel,200,image/jpeg,51401,1,social:geek
|
731
|
+
10.1.1.17,W,cdn.davesdaily.com,/foo?bar,warren.netfox.local,2011-05-06 02:12:06.000,ben,500,text/plain,47507,0,web:geek
|
732
|
+
10.1.1.178,D,money.ninemsn.com.au,/foo?bar,paul.netfox.local,2011-05-06 11:51:32.000,eric,200,text/html,88022,0,media:business
|
733
|
+
10.1.1.4,D,02937061124.26.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 03:39:11.000,jeremy,407,application/octet-stream,24378,1,geek:social
|
734
|
+
10.1.1.235,A,www.howderfamily.com,/foo?bar,warren.netfox.local,2011-05-06 16:13:16.000,michael,200,application/octet-stream,85638,0,geek:media
|
735
|
+
10.1.1.181,A,03027557275.76.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 20:28:30.000,terry,500,application/octet-stream,69870,0,business:social
|
736
|
+
10.1.1.106,W,01913004610.99.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 06:52:08.000,michael,200,text/plain,55425,0,media
|
737
|
+
10.1.1.5,W,www.capetownskies.com,/foo?bar,mbp.remote,2011-05-06 08:07:39.000,jayne,500,text/html,7915,1,geek
|
738
|
+
10.1.1.25,D,sermonspice.us1.list-manage.com,/foo?bar,paul.netfox.local,2011-05-06 04:31:40.000,robert,200,text/plain,15936,0,social:business
|
739
|
+
10.1.1.54,A,www.napster.com,/foo?bar,paul.netfox.local,2011-05-06 13:09:18.000,terry,403,text/html,19273,0,web:porn
|
740
|
+
10.1.1.180,A,memberscrm.ten.com.au,/foo?bar,paul.netfox.local,2011-05-06 07:33:27.000,jayne,200,text/plain,36428,0,web:social
|
741
|
+
10.1.1.63,A,www.geeky-gadgets.com,/foo?bar,paul.netfox.local,2011-05-06 07:55:18.000,terry,500,text/plain,98356,1,media:business
|
742
|
+
10.1.1.236,A,www.kiskastyle.com,/foo?bar,mbp.remote,2011-05-06 16:00:29.000,graham,200,text/html,97922,1,web:geek
|
743
|
+
10.1.1.134,A,03968022842.34.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 07:10:55.000,alexis,500,text/html,82001,1,business:shopping
|
744
|
+
10.1.1.192,W,myasx.asx.com.au,/foo?bar,warren.netfox.local,2011-05-06 21:14:10.000,jayne,200,text/plain,43809,0,web:business
|
745
|
+
10.1.1.245,D,0475832629.128.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 07:05:20.000,michael,500,text/html,2211,1,social:media
|
746
|
+
10.1.1.128,W,02322197612.29.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 21:18:25.000,daniel,200,text/plain,27093,0,business:social
|
747
|
+
10.1.1.10,W,www.cyberhorse.com.au,/foo?bar,dan.netfox.local,2011-05-06 09:44:47.000,sam,407,application/octet-stream,60258,1,porn
|
748
|
+
10.1.1.92,W,04239016775.44.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 22:37:32.000,sam,200,application/octet-stream,65812,1,media:porn
|
749
|
+
10.1.1.218,W,bank.benri-net.info,/foo?bar,paul.netfox.local,2011-05-06 17:28:23.000,jordan,500,text/html,1189,1,business
|
750
|
+
10.1.1.24,D,www.pojo.com,/foo?bar,mbp.remote,2011-05-06 15:16:50.000,robert,200,text/html,85704,1,social
|
751
|
+
10.1.1.10,W,12205428005.18.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 06:23:03.000,terry,407,image/jpeg,40938,0,geek:business
|
752
|
+
10.1.1.105,D,inspire.westminster.sa.edu.au,/foo?bar,warren.netfox.local,2011-05-06 19:19:10.000,jeremy,200,application/octet-stream,20128,1,shopping:porn
|
753
|
+
10.1.1.214,A,beingz.files.wordpress.com,/foo?bar,paul.netfox.local,2011-05-06 05:38:09.000,fabian,500,text/html,94106,1,media:shopping
|
754
|
+
10.1.1.141,D,03096531570.75.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 13:00:09.000,daniel,200,text/plain,39260,0,social:porn
|
755
|
+
10.1.1.148,D,0649100454.112.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 04:58:40.000,ben,500,image/jpeg,95618,0,media:web
|
756
|
+
10.1.1.17,A,designika.net,/foo?bar,mbp.remote,2011-05-06 00:28:39.000,terry,200,text/plain,38173,1,media:shopping
|
757
|
+
10.1.1.193,A,www.pedallingaround.com,/foo?bar,paul.netfox.local,2011-05-06 13:10:43.000,fabian,500,text/plain,82871,1,web:porn
|
758
|
+
10.1.1.157,D,c0427241.cdn.cloudfiles.rackspacecloud.com,/foo?bar,dan.netfox.local,2011-05-06 09:35:03.000,jeremy,200,text/plain,62729,1,shopping:web
|
759
|
+
10.1.1.86,D,www.saceboard.com,/foo?bar,paul.netfox.local,2011-05-06 00:55:13.000,michael,403,text/plain,77808,1,web:geek
|
760
|
+
10.1.1.45,D,www.buyme.com.au,/foo?bar,paul.netfox.local,2011-05-06 22:04:42.000,jeremy,200,image/jpeg,12697,1,business:web
|
761
|
+
10.1.1.124,A,www.staysmartonline.gov.au,/foo?bar,dan.netfox.local,2011-05-06 19:57:26.000,ben,404,application/octet-stream,70636,1,web:shopping
|
762
|
+
10.1.1.206,W,13276719963.96.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 20:39:39.000,robert,200,text/plain,93795,0,business
|
763
|
+
10.1.1.81,A,www.tallarmeniantale.com,/foo?bar,dan.netfox.local,2011-05-06 01:56:36.000,fabian,407,text/plain,80309,0,porn:business
|
764
|
+
10.1.1.115,A,v2.cache6.c.youtube.com,/foo?bar,mbp.remote,2011-05-06 06:02:23.000,eric,200,text/plain,27567,0,social:porn
|
765
|
+
10.1.1.72,A,www.consumerreview.com,/foo?bar,dan.netfox.local,2011-05-06 10:08:20.000,robert,500,application/octet-stream,2437,0,shopping:web
|
766
|
+
10.1.1.110,D,www.unodc.org,/foo?bar,dan.netfox.local,2011-05-06 10:48:19.000,jordan,200,text/plain,3769,1,business
|
767
|
+
10.1.1.37,A,www.toyota.com.au,/foo?bar,warren.netfox.local,2011-05-06 20:40:50.000,robert,500,application/octet-stream,76771,1,porn:social
|
768
|
+
10.1.1.28,W,0125292699.80.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 10:38:36.000,roger,200,application/octet-stream,68546,0,porn:web
|
769
|
+
10.1.1.189,A,www.my-piano.blogspot.com,/foo?bar,paul.netfox.local,2011-05-06 15:02:57.000,daniel,407,application/octet-stream,87742,0,porn:social
|
770
|
+
10.1.1.216,W,my.ttmall.cn,/foo?bar,warren.netfox.local,2011-05-06 02:07:15.000,jordan,200,text/html,80712,0,shopping
|
771
|
+
10.1.1.101,D,www.kraftrecipes.com,/foo?bar,dan.netfox.local,2011-05-06 06:59:05.000,graham,404,text/plain,82948,0,business:web
|
772
|
+
10.1.1.159,A,www.republikkreatif.com,/foo?bar,mbp.remote,2011-05-06 07:03:29.000,jayne,200,text/plain,86001,1,business:geek
|
773
|
+
10.1.1.55,A,www.wordbanter.com,/foo?bar,warren.netfox.local,2011-05-06 07:32:11.000,alexis,500,application/octet-stream,37523,0,web:porn
|
774
|
+
10.1.1.214,A,speed.duote.org,/foo?bar,warren.netfox.local,2011-05-06 08:48:33.000,fabian,200,text/plain,99837,0,media:shopping
|
775
|
+
10.1.1.213,D,th1179.photobucket.com,/foo?bar,dan.netfox.local,2011-05-06 14:45:59.000,fabian,403,image/jpeg,41136,1,social:shopping
|
776
|
+
10.1.1.203,D,11092270332.107.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 10:28:59.000,robert,200,text/html,57826,1,web:geek
|
777
|
+
10.1.1.197,A,myownincubus.com,/foo?bar,paul.netfox.local,2011-05-06 06:35:28.000,jeremy,500,text/plain,16396,0,media:shopping
|
778
|
+
10.1.1.104,A,02034360320.87.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 03:54:00.000,alexis,200,image/jpeg,34693,1,geek:web
|
779
|
+
10.1.1.7,D,04059590213.118.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 05:43:32.000,graham,407,image/jpeg,53906,0,porn:shopping
|
780
|
+
10.1.1.189,D,secure.leukaemiafoundation.org.au,/foo?bar,paul.netfox.local,2011-05-06 05:04:32.000,terry,200,text/html,65492,0,media:porn
|
781
|
+
10.1.1.164,D,22931263442.86.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 10:50:51.000,graham,403,application/octet-stream,59717,1,media:geek
|
782
|
+
10.1.1.174,D,0106889248.150.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 14:43:25.000,jordan,200,text/plain,18590,1,shopping
|
783
|
+
10.1.1.27,D,staticns.ankama.com,/foo?bar,paul.netfox.local,2011-05-06 20:26:04.000,jordan,403,text/html,22271,0,shopping:geek
|
784
|
+
10.1.1.215,A,sa.windows.com,/foo?bar,mbp.remote,2011-05-06 06:27:50.000,jordan,200,image/jpeg,44894,0,web:shopping
|
785
|
+
10.1.1.133,A,hidden-object-games.biz,/foo?bar,mbp.remote,2011-05-06 20:52:50.000,roger,404,text/html,21898,1,porn:shopping
|
786
|
+
10.1.1.0,D,www.magnetmagazine.com,/foo?bar,dan.netfox.local,2011-05-06 00:23:44.000,eric,200,application/octet-stream,9823,1,geek:shopping
|
787
|
+
10.1.1.100,W,4.88.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 20:52:30.000,graham,403,application/octet-stream,84532,0,business:social
|
788
|
+
10.1.1.174,A,cdn.webrupee.com,/foo?bar,warren.netfox.local,2011-05-06 07:26:51.000,daniel,200,application/octet-stream,22112,0,porn:shopping
|
789
|
+
10.1.1.160,D,logc22.xiti.com,/foo?bar,warren.netfox.local,2011-05-06 12:27:06.000,alexis,500,text/html,38190,1,web:shopping
|
790
|
+
10.1.1.49,W,www.seenly.com,/foo?bar,dan.netfox.local,2011-05-06 18:44:56.000,jordan,200,text/html,5255,1,social:porn
|
791
|
+
10.1.1.174,D,statik.topica.com,/foo?bar,mbp.remote,2011-05-06 13:15:12.000,sam,403,text/html,81241,1,web:geek
|
792
|
+
10.1.1.67,A,www.tangle.com,/foo?bar,paul.netfox.local,2011-05-06 13:51:04.000,jeremy,200,image/jpeg,36114,1,social:web
|
793
|
+
10.1.1.195,D,whenvanitystrikesatme.blogspot.com,/foo?bar,warren.netfox.local,2011-05-06 14:35:14.000,graham,500,image/jpeg,96382,0,media:web
|
794
|
+
10.1.1.59,A,hoklaswines.com.au,/foo?bar,warren.netfox.local,2011-05-06 01:31:29.000,alexis,200,text/html,44782,1,shopping
|
795
|
+
10.1.1.168,A,3.60.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 17:50:09.000,eric,403,text/html,61600,1,shopping:web
|
796
|
+
10.1.1.5,A,www.biggerstrongerfastermovie.com,/foo?bar,dan.netfox.local,2011-05-06 10:01:06.000,jordan,200,text/plain,75499,1,shopping:porn
|
797
|
+
10.1.1.31,D,www.taaza.com,/foo?bar,paul.netfox.local,2011-05-06 15:05:57.000,terry,407,application/octet-stream,61337,1,porn:media
|
798
|
+
10.1.1.10,D,www.sustainabilityninja.com,/foo?bar,warren.netfox.local,2011-05-06 19:10:15.000,jordan,200,text/html,37936,1,media:geek
|
799
|
+
10.1.1.55,A,tps.sagepub.com,/foo?bar,warren.netfox.local,2011-05-06 14:41:20.000,michael,403,application/octet-stream,13101,0,social:media
|
800
|
+
10.1.1.163,W,daiku-suzuki.com,/foo?bar,warren.netfox.local,2011-05-06 08:45:44.000,ben,200,text/html,39591,1,social:business
|
801
|
+
10.1.1.189,D,www.coolfunnyjokes.com,/foo?bar,paul.netfox.local,2011-05-06 11:58:59.000,roger,407,text/plain,38962,0,business:web
|
802
|
+
10.1.1.215,A,vote.sinajs.cn,/foo?bar,mbp.remote,2011-05-06 13:12:27.000,roger,200,text/plain,99630,1,porn:shopping
|
803
|
+
10.1.1.217,W,a1e711716ed3eb7a012ab0cc31d1ed2b4.profile.sin2.cloudfront.net,/foo?bar,warren.netfox.local,2011-05-06 06:42:49.000,jayne,404,application/octet-stream,20573,1,business:web
|
804
|
+
10.1.1.143,A,roomkey.com.au,/foo?bar,dan.netfox.local,2011-05-06 08:35:26.000,ben,200,application/octet-stream,90518,0,media
|
805
|
+
10.1.1.123,A,i440.photobucket.com,/foo?bar,mbp.remote,2011-05-06 05:59:51.000,jayne,404,application/octet-stream,34453,1,web:social
|
806
|
+
10.1.1.64,W,media.ask-leo.com,/foo?bar,paul.netfox.local,2011-05-06 07:20:03.000,sam,200,application/octet-stream,62543,1,geek:media
|
807
|
+
10.1.1.164,A,ayp5.nihoncars.com,/foo?bar,paul.netfox.local,2011-05-06 13:21:13.000,terry,500,image/jpeg,23066,0,shopping:porn
|
808
|
+
10.1.1.109,D,travelnotes.loyaltytoolbar.com,/foo?bar,mbp.remote,2011-05-06 17:50:01.000,alexis,200,application/octet-stream,99426,1,media:business
|
809
|
+
10.1.1.189,A,www.passedoutwookies.com,/foo?bar,warren.netfox.local,2011-05-06 07:33:31.000,jeremy,500,text/plain,55310,1,web:social
|
810
|
+
10.1.1.237,D,25.images22.51img1.com,/foo?bar,dan.netfox.local,2011-05-06 02:46:34.000,sam,200,application/octet-stream,68439,1,business:geek
|
811
|
+
10.1.1.100,W,www.sinhalasongs.info,/foo?bar,mbp.remote,2011-05-06 22:35:33.000,ben,403,text/html,72233,0,web:business
|
812
|
+
10.1.1.207,W,a596.phobos.apple.com,/foo?bar,mbp.remote,2011-05-06 17:24:34.000,eric,200,image/jpeg,37036,0,web:social
|
813
|
+
10.1.1.237,W,01443612711.67.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 09:43:57.000,graham,407,application/octet-stream,9025,0,social:business
|
814
|
+
10.1.1.59,A,www.googlemap.com,/foo?bar,dan.netfox.local,2011-05-06 07:44:39.000,jeremy,200,text/html,16146,0,business:shopping
|
815
|
+
10.1.1.237,D,au.alibaba.com,/foo?bar,paul.netfox.local,2011-05-06 21:27:44.000,jeremy,407,text/html,62397,1,shopping:geek
|
816
|
+
10.1.1.204,W,www.cookingchanneltv.com,/foo?bar,warren.netfox.local,2011-05-06 19:48:56.000,michael,200,image/jpeg,68789,0,business:web
|
817
|
+
10.1.1.56,D,adunit.chango.com,/foo?bar,dan.netfox.local,2011-05-06 17:13:08.000,michael,404,text/plain,98457,1,shopping:web
|
818
|
+
10.1.1.174,D,www.iwmshop.org.uk,/foo?bar,dan.netfox.local,2011-05-06 09:55:18.000,ben,200,text/html,48675,1,shopping:social
|
819
|
+
10.1.1.174,W,weelicious.com,/foo?bar,warren.netfox.local,2011-05-06 11:58:07.000,alexis,407,image/jpeg,90080,1,shopping:porn
|
820
|
+
10.1.1.12,W,meaningfuldistractions.files.wordpress.com,/foo?bar,paul.netfox.local,2011-05-06 23:41:30.000,michael,200,text/plain,34031,0,social:business
|
821
|
+
10.1.1.123,A,lol.uuu9.com,/foo?bar,mbp.remote,2011-05-06 21:31:08.000,ben,403,application/octet-stream,76748,1,web:geek
|
822
|
+
10.1.1.58,W,www.pardus.org.tr,/foo?bar,warren.netfox.local,2011-05-06 23:34:11.000,john,200,image/jpeg,20351,1,porn:web
|
823
|
+
10.1.1.80,W,www.cummingsstudyguides.net,/foo?bar,paul.netfox.local,2011-05-06 20:54:47.000,fabian,403,application/octet-stream,46137,0,web:shopping
|
824
|
+
10.1.1.225,D,www.nashvillegab.com,/foo?bar,warren.netfox.local,2011-05-06 00:42:08.000,jeremy,200,application/octet-stream,7659,0,shopping:porn
|
825
|
+
10.1.1.248,W,www.annesley.sa.edu.au,/foo?bar,mbp.remote,2011-05-06 06:18:05.000,terry,500,image/jpeg,68420,0,web:media
|
826
|
+
10.1.1.239,D,www.yowazzup.com,/foo?bar,warren.netfox.local,2011-05-06 12:31:42.000,michael,200,text/plain,13368,0,media:web
|
827
|
+
10.1.1.138,W,netfox.immanuel.sa.edu.au,/foo?bar,paul.netfox.local,2011-05-06 17:27:04.000,jayne,407,text/plain,60893,1,porn
|
828
|
+
10.1.1.245,A,tonedeaf.us1.list-manage.com,/foo?bar,warren.netfox.local,2011-05-06 14:44:02.000,eric,200,image/jpeg,9422,0,media:social
|
829
|
+
10.1.1.102,W,www.columbiarecords.com,/foo?bar,warren.netfox.local,2011-05-06 08:25:08.000,john,500,image/jpeg,31888,0,shopping:geek
|
830
|
+
10.1.1.155,W,nexus.passport.com,/foo?bar,mbp.remote,2011-05-06 10:40:30.000,fabian,200,application/octet-stream,67178,1,media:shopping
|
831
|
+
10.1.1.129,D,householdcents.blogspot.com,/foo?bar,paul.netfox.local,2011-05-06 20:29:12.000,daniel,403,text/plain,62306,1,geek:social
|
832
|
+
10.1.1.27,W,22839165303.33.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 17:48:32.000,terry,200,text/html,4926,0,media:porn
|
833
|
+
10.1.1.104,A,inlinethumb55.webshots.com,/foo?bar,dan.netfox.local,2011-05-06 07:21:40.000,jordan,407,text/html,46255,0,media:porn
|
834
|
+
10.1.1.188,A,www.dvdvideosoft.com,/foo?bar,dan.netfox.local,2011-05-06 07:07:57.000,terry,200,application/octet-stream,14756,0,business:web
|
835
|
+
10.1.1.236,D,www.artefelguerez.com,/foo?bar,warren.netfox.local,2011-05-06 13:45:23.000,sam,404,image/jpeg,87421,0,media:shopping
|
836
|
+
10.1.1.185,W,add.maxmovie.com,/foo?bar,paul.netfox.local,2011-05-06 05:03:24.000,robert,200,text/html,63466,0,geek:media
|
837
|
+
10.1.1.37,W,www.medalofhonor.com,/foo?bar,warren.netfox.local,2011-05-06 03:32:24.000,terry,403,text/plain,73395,1,business:social
|
838
|
+
10.1.1.14,W,www.duematernity.com,/foo?bar,mbp.remote,2011-05-06 10:11:36.000,graham,200,text/html,41459,1,media:shopping
|
839
|
+
10.1.1.54,A,www.coolboatnames.com,/foo?bar,mbp.remote,2011-05-06 18:52:45.000,john,500,text/plain,40422,0,geek:business
|
840
|
+
10.1.1.243,W,fpc.state.gov,/foo?bar,mbp.remote,2011-05-06 09:20:09.000,jeremy,200,text/html,18771,1,geek:business
|
841
|
+
10.1.1.200,A,01502672098.94.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 12:29:39.000,fabian,403,text/plain,59260,1,business
|
842
|
+
10.1.1.152,W,04015291793.107.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 06:11:45.000,jayne,200,text/plain,9167,0,shopping:social
|
843
|
+
10.1.1.24,W,www.hamcoll.sa.edu.au,/foo?bar,paul.netfox.local,2011-05-06 12:14:41.000,ben,404,text/html,2091,1,business
|
844
|
+
10.1.1.32,A,www.koramgame.com,/foo?bar,warren.netfox.local,2011-05-06 05:05:59.000,terry,200,text/html,67415,1,social:shopping
|
845
|
+
10.1.1.214,D,02699960614.71.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 22:21:04.000,graham,500,image/jpeg,44339,1,porn
|
846
|
+
10.1.1.204,D,media.thegamehomepage.com,/foo?bar,dan.netfox.local,2011-05-06 08:28:20.000,roger,200,text/plain,57310,0,geek:social
|
847
|
+
10.1.1.90,A,zs13.cnzz.com,/foo?bar,warren.netfox.local,2011-05-06 22:50:26.000,roger,404,text/plain,38918,0,social:porn
|
848
|
+
10.1.1.128,A,01278233005.27.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 23:43:51.000,terry,200,text/plain,27407,0,business:shopping
|
849
|
+
10.1.1.40,A,taxguide.completetax.com,/foo?bar,warren.netfox.local,2011-05-06 02:01:46.000,jayne,403,text/plain,67044,1,geek
|
850
|
+
10.1.1.44,W,ads.vivirmejor.es,/foo?bar,paul.netfox.local,2011-05-06 04:43:05.000,robert,200,application/octet-stream,26673,1,shopping:geek
|
851
|
+
10.1.1.138,D,0198544956.60.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 15:37:28.000,michael,403,text/plain,57249,0,web:geek
|
852
|
+
10.1.1.71,W,www.playpiano.com,/foo?bar,warren.netfox.local,2011-05-06 09:55:44.000,sam,200,image/jpeg,71927,0,business:media
|
853
|
+
10.1.1.23,A,d2-picimg.ol-img.com,/foo?bar,mbp.remote,2011-05-06 21:16:37.000,daniel,404,application/octet-stream,39204,1,geek:media
|
854
|
+
10.1.1.153,W,02565295006.52.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 05:41:37.000,roger,200,text/plain,12356,1,media:web
|
855
|
+
10.1.1.171,A,02497591730.41.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 22:06:24.000,graham,404,text/html,80249,0,business:porn
|
856
|
+
10.1.1.185,W,www.123cursors.com,/foo?bar,warren.netfox.local,2011-05-06 08:17:28.000,jayne,200,application/octet-stream,6003,0,media:porn
|
857
|
+
10.1.1.161,D,solveigmm.com,/foo?bar,warren.netfox.local,2011-05-06 04:45:49.000,sam,403,image/jpeg,58582,1,social:web
|
858
|
+
10.1.1.20,W,0103290640.155.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 17:18:33.000,terry,200,application/octet-stream,79730,0,web
|
859
|
+
10.1.1.65,A,0410627274.26.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 19:53:28.000,roger,407,text/html,89199,0,geek:business
|
860
|
+
10.1.1.115,A,school-formals-messenger.whereilive.com.au,/foo?bar,warren.netfox.local,2011-05-06 13:54:00.000,sam,200,image/jpeg,79130,0,business:geek
|
861
|
+
10.1.1.144,A,img194.imageshack.us,/foo?bar,dan.netfox.local,2011-05-06 07:09:35.000,roger,404,application/octet-stream,46262,1,porn
|
862
|
+
10.1.1.117,D,twiggs.org,/foo?bar,mbp.remote,2011-05-06 20:40:42.000,terry,200,text/html,983,1,porn:web
|
863
|
+
10.1.1.70,D,i46.photobucket.com,/foo?bar,dan.netfox.local,2011-05-06 13:05:23.000,robert,404,image/jpeg,44063,1,geek:porn
|
864
|
+
10.1.1.42,A,01177251356.69.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 20:08:36.000,ben,200,text/html,4348,1,shopping:social
|
865
|
+
10.1.1.124,D,12281254761.52.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 21:58:49.000,daniel,404,application/octet-stream,39639,1,web:geek
|
866
|
+
10.1.1.229,D,billabong3.wetter.com,/foo?bar,mbp.remote,2011-05-06 15:13:37.000,robert,200,image/jpeg,413,1,business:media
|
867
|
+
10.1.1.149,W,0542246735.8.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 16:54:46.000,daniel,407,image/jpeg,98767,0,geek:business
|
868
|
+
10.1.1.126,W,i387.photobucket.com,/foo?bar,warren.netfox.local,2011-05-06 13:34:22.000,robert,200,text/plain,61341,0,business:shopping
|
869
|
+
10.1.1.224,A,www.greenforceengg.com,/foo?bar,mbp.remote,2011-05-06 11:45:06.000,ben,403,text/html,24409,1,social:business
|
870
|
+
10.1.1.142,A,01725687594.44.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 05:45:13.000,eric,200,image/jpeg,62890,0,porn
|
871
|
+
10.1.1.138,D,www.buildingindex.com,/foo?bar,paul.netfox.local,2011-05-06 06:22:44.000,fabian,404,text/plain,78791,0,web:business
|
872
|
+
10.1.1.35,W,04205346452.44.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 05:36:10.000,terry,200,image/jpeg,98588,0,shopping:social
|
873
|
+
10.1.1.118,D,02704091645.48.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 15:01:03.000,john,500,application/octet-stream,41666,0,web:business
|
874
|
+
10.1.1.207,D,www.ineedaholiday.com.au,/foo?bar,warren.netfox.local,2011-05-06 17:23:44.000,alexis,200,image/jpeg,10818,1,geek:social
|
875
|
+
10.1.1.67,D,0218812434.28.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 17:19:20.000,john,403,application/octet-stream,57098,1,social:business
|
876
|
+
10.1.1.211,D,0384058652.123.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 00:08:05.000,alexis,200,image/jpeg,34503,0,media:social
|
877
|
+
10.1.1.185,W,maxmillard.com,/foo?bar,warren.netfox.local,2011-05-06 18:40:08.000,michael,403,image/jpeg,24440,0,porn:geek
|
878
|
+
10.1.1.74,W,g.christianbook.com,/foo?bar,warren.netfox.local,2011-05-06 17:58:05.000,jayne,200,application/octet-stream,34020,0,shopping:porn
|
879
|
+
10.1.1.140,D,dictionary.hamptoncatlin.com,/foo?bar,mbp.remote,2011-05-06 20:18:42.000,terry,404,text/plain,69119,1,business:porn
|
880
|
+
10.1.1.159,W,claudiasofia1.wordpress.com,/foo?bar,dan.netfox.local,2011-05-06 18:17:25.000,jeremy,200,application/octet-stream,63949,0,social:web
|
881
|
+
10.1.1.145,W,lady.lzsgzx.com,/foo?bar,warren.netfox.local,2011-05-06 19:53:47.000,graham,404,text/plain,19350,1,porn:media
|
882
|
+
10.1.1.157,A,0356968051.86.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 05:52:22.000,jeremy,200,application/octet-stream,58225,1,business:media
|
883
|
+
10.1.1.24,D,01366996061.100.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 18:11:58.000,terry,407,text/plain,82866,0,porn:business
|
884
|
+
10.1.1.33,W,www.pinkypuff.com.tw,/foo?bar,paul.netfox.local,2011-05-06 10:00:32.000,jayne,200,application/octet-stream,79185,1,social:porn
|
885
|
+
10.1.1.147,W,www.water-ed.org,/foo?bar,warren.netfox.local,2011-05-06 23:06:35.000,john,403,text/html,71865,0,business:media
|
886
|
+
10.1.1.83,D,www.orthojournalhms.org,/foo?bar,warren.netfox.local,2011-05-06 07:33:21.000,sam,200,text/plain,60270,1,porn:geek
|
887
|
+
10.1.1.107,A,math.rice.edu,/foo?bar,dan.netfox.local,2011-05-06 19:12:40.000,ben,500,image/jpeg,17051,1,business
|
888
|
+
10.1.1.131,D,www.lakerscore.com,/foo?bar,paul.netfox.local,2011-05-06 15:08:11.000,alexis,200,text/plain,77620,1,media:geek
|
889
|
+
10.1.1.58,A,en-gb.malware-error.mozilla.com,/foo?bar,dan.netfox.local,2011-05-06 16:23:33.000,terry,500,application/octet-stream,40423,1,geek:shopping
|
890
|
+
10.1.1.86,A,u.goal.com,/foo?bar,mbp.remote,2011-05-06 10:15:03.000,fabian,200,text/plain,48619,1,geek:media
|
891
|
+
10.1.1.239,A,www.glasgowconcerthalls.com,/foo?bar,warren.netfox.local,2011-05-06 23:10:35.000,john,403,image/jpeg,88970,0,web:porn
|
892
|
+
10.1.1.244,A,tag.didit.com,/foo?bar,paul.netfox.local,2011-05-06 00:28:41.000,terry,200,image/jpeg,73998,0,media:geek
|
893
|
+
10.1.1.23,A,www.contrechoc.com,/foo?bar,mbp.remote,2011-05-06 20:25:49.000,terry,407,application/octet-stream,35802,1,media
|
894
|
+
10.1.1.238,W,03593002703.41.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 00:32:01.000,jordan,200,text/plain,30719,0,geek:shopping
|
895
|
+
10.1.1.16,D,02290218025.39.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 09:58:31.000,eric,500,image/jpeg,11221,0,geek:web
|
896
|
+
10.1.1.160,W,1-10187-0-0-16-1-0-750-9-59959391.r.radar.cedexis.net,/foo?bar,mbp.remote,2011-05-06 20:11:53.000,michael,200,text/plain,71607,0,media:web
|
897
|
+
10.1.1.134,A,i307.photobucket.com,/foo?bar,warren.netfox.local,2011-05-06 04:27:28.000,john,500,application/octet-stream,96007,0,business:shopping
|
898
|
+
10.1.1.189,A,leeminho.vn,/foo?bar,warren.netfox.local,2011-05-06 03:09:01.000,alexis,200,text/plain,37155,0,social:business
|
899
|
+
10.1.1.12,D,02557088743.68.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 14:14:41.000,alexis,500,application/octet-stream,24621,0,shopping:porn
|
900
|
+
10.1.1.189,W,xml.eplayer.performgroup.com,/foo?bar,mbp.remote,2011-05-06 16:04:46.000,ben,200,text/plain,42833,1,geek:social
|
901
|
+
10.1.1.29,W,myaccount.impactcomputers.com,/foo?bar,mbp.remote,2011-05-06 07:42:01.000,jayne,500,image/jpeg,8943,0,shopping:social
|
902
|
+
10.1.1.77,A,askjud.com,/foo?bar,dan.netfox.local,2011-05-06 12:26:49.000,michael,200,application/octet-stream,32733,0,media:porn
|
903
|
+
10.1.1.74,A,maps.vodafone.com.au,/foo?bar,mbp.remote,2011-05-06 19:02:09.000,jordan,500,image/jpeg,13435,1,social:web
|
904
|
+
10.1.1.205,D,www.peterpinsongallery.com,/foo?bar,mbp.remote,2011-05-06 08:10:08.000,daniel,200,text/html,63641,0,business:media
|
905
|
+
10.1.1.103,W,m.webtrends.com,/foo?bar,warren.netfox.local,2011-05-06 02:51:40.000,robert,404,application/octet-stream,65586,0,shopping:media
|
906
|
+
10.1.1.176,D,www.westernhospital.com.au,/foo?bar,warren.netfox.local,2011-05-06 11:24:05.000,jayne,200,image/jpeg,41751,1,porn:social
|
907
|
+
10.1.1.191,W,www.gov-auctions.org,/foo?bar,dan.netfox.local,2011-05-06 02:08:15.000,terry,404,image/jpeg,17929,0,porn:media
|
908
|
+
10.1.1.2,W,01332874986.39.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 01:15:22.000,roger,200,image/jpeg,65879,0,web
|
909
|
+
10.1.1.190,W,s.media-imdb.com,/foo?bar,dan.netfox.local,2011-05-06 20:48:35.000,roger,404,image/jpeg,62090,0,shopping:porn
|
910
|
+
10.1.1.11,W,www.bargains.com.au,/foo?bar,dan.netfox.local,2011-05-06 12:40:43.000,jeremy,200,text/plain,4949,1,social:media
|
911
|
+
10.1.1.186,W,www.shenton.wa.edu.au,/foo?bar,warren.netfox.local,2011-05-06 10:08:42.000,roger,500,application/octet-stream,70838,0,porn:business
|
912
|
+
10.1.1.149,W,www.hawaiianmusichistory.com,/foo?bar,mbp.remote,2011-05-06 11:22:51.000,robert,200,text/plain,98207,0,shopping:geek
|
913
|
+
10.1.1.58,W,labor.net.au,/foo?bar,dan.netfox.local,2011-05-06 08:39:42.000,michael,404,application/octet-stream,28169,0,geek:porn
|
914
|
+
10.1.1.124,A,d3mc0rm5ezl95j.cloudfront.net,/foo?bar,warren.netfox.local,2011-05-06 04:51:34.000,fabian,200,application/octet-stream,81058,1,business:geek
|
915
|
+
10.1.1.15,D,images.lotour.com,/foo?bar,dan.netfox.local,2011-05-06 05:59:43.000,fabian,407,text/plain,88931,0,web:porn
|
916
|
+
10.1.1.193,A,01621540094.99.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 13:12:59.000,daniel,200,text/plain,33075,0,geek:shopping
|
917
|
+
10.1.1.119,D,oascentral.ctt-inc.com,/foo?bar,mbp.remote,2011-05-06 22:24:35.000,terry,403,text/plain,60119,1,social:porn
|
918
|
+
10.1.1.207,D,www.biblestudytools.com,/foo?bar,paul.netfox.local,2011-05-06 12:39:41.000,ben,200,image/jpeg,81452,1,business:media
|
919
|
+
10.1.1.179,D,0464857968.2.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 17:31:09.000,terry,407,image/jpeg,57525,0,web
|
920
|
+
10.1.1.154,W,www.worldbeachvacation.com,/foo?bar,warren.netfox.local,2011-05-06 23:17:55.000,fabian,200,text/html,31558,1,business
|
921
|
+
10.1.1.170,W,www.kalakshetra.net,/foo?bar,mbp.remote,2011-05-06 14:43:24.000,jeremy,403,text/plain,28249,0,shopping:geek
|
922
|
+
10.1.1.126,D,web.hgtv.com,/foo?bar,mbp.remote,2011-05-06 16:23:14.000,jeremy,200,text/html,14364,0,media:shopping
|
923
|
+
10.1.1.203,A,www.willow.tv,/foo?bar,dan.netfox.local,2011-05-06 17:04:08.000,jordan,403,application/octet-stream,27963,1,porn:business
|
924
|
+
10.1.1.56,A,chinadigitaltimes.net,/foo?bar,warren.netfox.local,2011-05-06 11:10:52.000,robert,200,image/jpeg,98874,0,media:business
|
925
|
+
10.1.1.248,D,khm1.google.com.tw,/foo?bar,mbp.remote,2011-05-06 19:19:22.000,fabian,404,text/plain,20827,0,web:porn
|
926
|
+
10.1.1.115,D,040875313.95.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 06:28:52.000,sam,200,application/octet-stream,31643,0,geek:business
|
927
|
+
10.1.1.176,D,profile.id.com.au,/foo?bar,mbp.remote,2011-05-06 21:43:21.000,ben,407,text/html,98697,1,business:porn
|
928
|
+
10.1.1.56,D,www.skwirk.com,/foo?bar,dan.netfox.local,2011-05-06 11:06:17.000,robert,200,text/html,98748,1,social:business
|
929
|
+
10.1.1.51,A,03698153801.75.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 18:47:03.000,terry,403,application/octet-stream,10884,1,media
|
930
|
+
10.1.1.235,W,02527028679.56.channel.facebook.com,/foo?bar,paul.netfox.local,2011-05-06 15:29:37.000,fabian,200,image/jpeg,95757,1,social:web
|
931
|
+
10.1.1.227,W,www.collegemagazine.com,/foo?bar,paul.netfox.local,2011-05-06 10:05:35.000,daniel,407,image/jpeg,54796,0,web:social
|
932
|
+
10.1.1.191,W,static7.jewelryviewer.com,/foo?bar,paul.netfox.local,2011-05-06 21:54:38.000,john,200,image/jpeg,69330,1,porn:social
|
933
|
+
10.1.1.186,A,0935271144.113.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 17:20:43.000,jeremy,407,image/jpeg,58189,1,business:shopping
|
934
|
+
10.1.1.202,W,12905036711.76.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 18:08:07.000,graham,200,text/html,80122,1,media:geek
|
935
|
+
10.1.1.110,A,gabrielhummel.com,/foo?bar,warren.netfox.local,2011-05-06 05:24:10.000,alexis,403,application/octet-stream,76085,1,media:shopping
|
936
|
+
10.1.1.223,W,02008164208.96.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 04:37:29.000,michael,200,text/plain,94311,1,media:web
|
937
|
+
10.1.1.167,A,deepbluesky-tagging.jiglu.com,/foo?bar,warren.netfox.local,2011-05-06 21:33:57.000,graham,403,application/octet-stream,68751,0,web:social
|
938
|
+
10.1.1.67,D,tengossip.com,/foo?bar,mbp.remote,2011-05-06 19:08:30.000,daniel,200,text/plain,13161,0,business:social
|
939
|
+
10.1.1.36,A,dv4.zwigglers.com,/foo?bar,paul.netfox.local,2011-05-06 01:17:22.000,sam,404,image/jpeg,34739,0,geek:web
|
940
|
+
10.1.1.57,A,www.manataka.org,/foo?bar,dan.netfox.local,2011-05-06 13:26:32.000,eric,200,image/jpeg,67953,0,geek:media
|
941
|
+
10.1.1.99,D,blogoffrancescomugnai.disqus.com,/foo?bar,paul.netfox.local,2011-05-06 11:38:22.000,alexis,404,text/plain,1648,1,media
|
942
|
+
10.1.1.207,D,www.saquilters.org.au,/foo?bar,paul.netfox.local,2011-05-06 15:38:55.000,sam,200,application/octet-stream,34548,0,web:business
|
943
|
+
10.1.1.197,W,www.nationaltiles.com.au,/foo?bar,warren.netfox.local,2011-05-06 22:21:38.000,ben,407,application/octet-stream,68792,1,business:shopping
|
944
|
+
10.1.1.213,A,www.inquisitr.com,/foo?bar,paul.netfox.local,2011-05-06 15:48:06.000,eric,200,image/jpeg,44970,1,social:shopping
|
945
|
+
10.1.1.121,W,www.powerbar.com.au,/foo?bar,warren.netfox.local,2011-05-06 07:12:33.000,jeremy,500,text/plain,87769,1,porn:media
|
946
|
+
10.1.1.217,D,r18.telstra-syd1.c.youtube.com,/foo?bar,mbp.remote,2011-05-06 03:53:40.000,sam,200,image/jpeg,9462,1,media:porn
|
947
|
+
10.1.1.125,A,m.pf.henhaoji.com,/foo?bar,dan.netfox.local,2011-05-06 00:43:48.000,ben,403,application/octet-stream,95917,1,web:geek
|
948
|
+
10.1.1.46,A,stephenkinsella.net,/foo?bar,paul.netfox.local,2011-05-06 19:39:55.000,sam,200,text/plain,97494,0,geek:business
|
949
|
+
10.1.1.15,D,02369962345.58.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 13:31:48.000,jayne,407,image/jpeg,6641,1,media:porn
|
950
|
+
10.1.1.194,W,i3.social.answers.microsoft.com,/foo?bar,paul.netfox.local,2011-05-06 10:32:39.000,robert,200,image/jpeg,34490,1,web:social
|
951
|
+
10.1.1.85,W,www.musically.com,/foo?bar,paul.netfox.local,2011-05-06 14:16:45.000,jeremy,407,image/jpeg,20481,1,business:social
|
952
|
+
10.1.1.236,A,aef6b86b31.adelaidecyclists.ninggadgets.com,/foo?bar,paul.netfox.local,2011-05-06 07:45:32.000,jayne,200,text/html,61006,0,porn:social
|
953
|
+
10.1.1.102,D,www.priorityclub.com,/foo?bar,dan.netfox.local,2011-05-06 21:52:17.000,robert,404,text/plain,4135,0,shopping:web
|
954
|
+
10.1.1.233,W,employnet.socialnet.org.hk,/foo?bar,mbp.remote,2011-05-06 13:21:41.000,robert,200,text/plain,70007,0,porn:media
|
955
|
+
10.1.1.56,D,www.codmac.com.au,/foo?bar,mbp.remote,2011-05-06 20:07:28.000,jordan,407,application/octet-stream,53802,0,web:social
|
956
|
+
10.1.1.106,W,images.marthastewart.com,/foo?bar,mbp.remote,2011-05-06 11:46:03.000,daniel,200,text/plain,34931,0,business:media
|
957
|
+
10.1.1.47,D,sbrp.sunsetphuket.com,/foo?bar,warren.netfox.local,2011-05-06 08:53:40.000,sam,500,image/jpeg,99186,0,social:geek
|
958
|
+
10.1.1.109,D,img.hottopic.com,/foo?bar,paul.netfox.local,2011-05-06 09:31:59.000,alexis,200,text/html,35570,1,media:social
|
959
|
+
10.1.1.109,A,02645163430.0.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 07:40:21.000,graham,403,text/html,86003,1,media:business
|
960
|
+
10.1.1.74,D,my.qooza.hk,/foo?bar,paul.netfox.local,2011-05-06 10:38:17.000,jeremy,200,image/jpeg,21457,0,shopping:social
|
961
|
+
10.1.1.173,A,static.music-boom.com,/foo?bar,warren.netfox.local,2011-05-06 01:57:27.000,michael,500,application/octet-stream,39824,1,business
|
962
|
+
10.1.1.88,A,super.kitnmedia.com,/foo?bar,dan.netfox.local,2011-05-06 06:45:23.000,jeremy,200,text/html,46367,1,media:porn
|
963
|
+
10.1.1.217,D,02044052955.2.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 10:17:20.000,eric,500,application/octet-stream,88245,0,media:business
|
964
|
+
10.1.1.188,A,0140600170.107.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 18:22:51.000,eric,200,image/jpeg,68965,0,social:shopping
|
965
|
+
10.1.1.65,W,www.getdota.com,/foo?bar,mbp.remote,2011-05-06 03:03:35.000,jeremy,500,image/jpeg,22297,1,shopping:business
|
966
|
+
10.1.1.203,W,p2.mqxihayolgmuw.6jfuz75yapx62lts.ds.ipv6-exp.l.google.com,/foo?bar,paul.netfox.local,2011-05-06 21:43:01.000,alexis,200,image/jpeg,28891,1,business:media
|
967
|
+
10.1.1.87,W,cdn2.chartsbin.com,/foo?bar,paul.netfox.local,2011-05-06 15:56:14.000,fabian,500,image/jpeg,24480,0,shopping:media
|
968
|
+
10.1.1.222,A,www.porsche.com,/foo?bar,paul.netfox.local,2011-05-06 23:17:36.000,jayne,200,text/plain,15598,0,media:social
|
969
|
+
10.1.1.99,D,ne.cooltext.com,/foo?bar,mbp.remote,2011-05-06 15:34:20.000,john,407,application/octet-stream,62313,1,web:business
|
970
|
+
10.1.1.210,W,ctxtfly.tribalfusion.com,/foo?bar,dan.netfox.local,2011-05-06 08:59:30.000,roger,200,text/plain,24303,1,business:web
|
971
|
+
10.1.1.69,D,www.peakstuff.com,/foo?bar,warren.netfox.local,2011-05-06 10:54:44.000,ben,403,text/html,20420,0,media
|
972
|
+
10.1.1.78,W,01163258861.142.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 12:19:09.000,roger,200,application/octet-stream,65337,0,web
|
973
|
+
10.1.1.172,A,www.vintagesynth.com,/foo?bar,paul.netfox.local,2011-05-06 05:46:08.000,daniel,407,text/html,46539,0,business:porn
|
974
|
+
10.1.1.173,A,agricultureguide.org,/foo?bar,mbp.remote,2011-05-06 06:46:45.000,terry,200,image/jpeg,1560,0,shopping:geek
|
975
|
+
10.1.1.135,D,www.way2barcelona.com,/foo?bar,mbp.remote,2011-05-06 18:28:30.000,daniel,403,image/jpeg,56383,1,shopping:social
|
976
|
+
10.1.1.29,D,03686902722.161.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 20:41:32.000,jordan,200,text/html,90833,0,media:porn
|
977
|
+
10.1.1.141,A,rangacupofchai.blogspot.com,/foo?bar,paul.netfox.local,2011-05-06 23:23:32.000,michael,403,text/html,22550,0,business:media
|
978
|
+
10.1.1.107,W,widgets.community.myfoxny.com,/foo?bar,mbp.remote,2011-05-06 16:30:42.000,jordan,200,text/html,74542,1,geek:web
|
979
|
+
10.1.1.173,D,0199563661.87.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 14:22:57.000,jayne,404,text/html,53656,0,porn:geek
|
980
|
+
10.1.1.79,D,02657918464.42.channel.facebook.com,/foo?bar,mbp.remote,2011-05-06 15:10:12.000,ben,200,text/html,33106,1,media
|
981
|
+
10.1.1.237,A,guardtunnel.com,/foo?bar,warren.netfox.local,2011-05-06 00:41:48.000,fabian,500,image/jpeg,161,1,web:shopping
|
982
|
+
10.1.1.194,D,i713.photobucket.com,/foo?bar,warren.netfox.local,2011-05-06 06:07:04.000,eric,200,image/jpeg,93424,1,social:porn
|
983
|
+
10.1.1.217,W,members.virtualtourist.com,/foo?bar,warren.netfox.local,2011-05-06 03:49:22.000,graham,404,image/jpeg,33495,1,web:geek
|
984
|
+
10.1.1.0,D,sea.battle.net,/foo?bar,dan.netfox.local,2011-05-06 13:22:06.000,jordan,200,text/plain,18830,1,porn:web
|
985
|
+
10.1.1.76,W,electricvisual.com,/foo?bar,mbp.remote,2011-05-06 12:47:31.000,eric,500,text/plain,64152,0,media:geek
|
986
|
+
10.1.1.224,D,webtrends.eu.playstation.com,/foo?bar,paul.netfox.local,2011-05-06 13:09:21.000,sam,200,text/html,95987,0,geek:business
|
987
|
+
10.1.1.162,A,banners.ikiteboarding.com,/foo?bar,paul.netfox.local,2011-05-06 14:31:41.000,michael,407,text/plain,85381,1,social
|
988
|
+
10.1.1.81,D,www.lavc.edu,/foo?bar,mbp.remote,2011-05-06 18:53:35.000,fabian,200,text/html,61950,0,web:geek
|
989
|
+
10.1.1.129,W,boss.streamos.com,/foo?bar,dan.netfox.local,2011-05-06 02:40:44.000,alexis,403,text/plain,80657,1,business
|
990
|
+
10.1.1.206,W,i886.photobucket.com,/foo?bar,dan.netfox.local,2011-05-06 21:26:00.000,terry,200,text/html,75915,1,media
|
991
|
+
10.1.1.97,A,0523608441.75.channel.facebook.com,/foo?bar,dan.netfox.local,2011-05-06 00:30:20.000,terry,404,text/plain,64071,0,web:business
|
992
|
+
10.1.1.103,A,www.thegratitudecleanse.com,/foo?bar,paul.netfox.local,2011-05-06 06:40:38.000,eric,200,text/html,36368,0,media:geek
|
993
|
+
10.1.1.193,W,01463577726.60.channel.facebook.com,/foo?bar,warren.netfox.local,2011-05-06 01:46:43.000,alexis,403,text/plain,11860,1,web:geek
|
994
|
+
10.1.1.177,W,v1.cache4.c.youtube.com,/foo?bar,warren.netfox.local,2011-05-06 18:23:03.000,alexis,200,text/plain,65157,0,web:media
|
995
|
+
10.1.1.229,A,www.childrensparties.com.au,/foo?bar,mbp.remote,2011-05-06 06:31:58.000,terry,407,image/jpeg,95756,1,porn:geek
|
996
|
+
10.1.1.45,D,bellhd.com,/foo?bar,paul.netfox.local,2011-05-06 05:33:02.000,eric,200,application/octet-stream,87634,0,business:shopping
|
997
|
+
10.1.1.71,A,svc004.bne3-0050dp.server-web.com,/foo?bar,paul.netfox.local,2011-05-06 16:05:19.000,roger,407,text/html,21235,1,shopping:business
|
998
|
+
10.1.1.183,A,fms101-lax.tokbox.com,/foo?bar,dan.netfox.local,2011-05-06 06:55:22.000,graham,200,text/html,93852,0,porn
|
999
|
+
10.1.1.157,D,www.espncricinfo.com,/foo?bar,paul.netfox.local,2011-05-06 11:07:04.000,jayne,500,text/plain,16912,0,media
|
1000
|
+
10.1.1.228,A,swdlp.apple.com,/foo?bar,dan.netfox.local,2011-05-06 15:34:27.000,michael,200,text/plain,98138,0,porn:media
|