Problem 1: User defined functions for log snooping
Problem 1: User defined functions for log snooping [20 points] I’ve provided you with a file called access_log.txt. It’s an Apache server log. For those of you don’t know, Apache is the primary server software underlying the internet. Learn more at http://httpd.apache.org/. You can read about the format of Apache log files at http://httpd.apache.org/docs/1.3/logs.html#common. In this problem, you are taking on the role of a security analyst who is checking into some possible irregular traffic hitting your servers. Browse the file to get sense of structure • IP address (or domain name) • date time • HTTP command (GET, POST, HEAD, …) • Filename/URL • return code (2xx is good, 3xx is redirect, 4xx is error, 5xx is ?) • data size returned Part 3.1 – Manually import log file into Import the access_log.txt file into Excel. Import it as a TAB DELIMITED file so that each record gets imported into Column A in your spreadsheet. Here’s a screenshot of the top of my Excel file: Save your file as apache_log_functions.xlsm (yes, as a macro-enabled workbook). You’ll be doing all the work for this problem in this file and you’ll be turning it in as part of the assignment. Part 3.2 – Creating a function to extract the date from a log file line Let’s assume you want to be able to quickly filter lines by dates of the log line. You’ll see there is a datetime stamp right after a left bracket – “[“. To make this easy you are going to create a simple VBA function that returns the date value for a single line passed into 1 3/31/2024 the function. Then you could use this function in a worksheet formula in some column to the right of your data. Each row containing the string of interest will end up with a date value and then you could Autofilter the whole range and just see the records of interest. For lines which don’t contain dates, we’ll have our function return a zero. This function will be called GetApacheDate. It will take one input arguments. The first is a string representing an Apache log line. To help you out, here’s a code skeleton with a bunch of things blurred out. I STRONGLY SUGGEST YOU USE THIS CODE SKELETON. Remember, you can and should debug and test your user defined function using the Immediate Window, or the spreadsheet itself, or a “tester Sub”. See the Variables and Procedure Basics screencast which covers creating, using and testing user defined functions. IMPORTANT: Remember, functions take input arguments and return values. As you can see from the screenshot above, the first input argument is a string. So, your function should NOT reference anything else in the workbook or worksheet other than the argument passed in. That’s the whole point of functions. Also, as you can see from the function declaration, your function will simply return an Excel date value. It will NOT 2 3/31/2024 explicitly modify the spreadsheet. The spreadsheet will get modified when you use the function in a cell. A user defined function is just like any other Excel function. Once you have it working, use it in formulas in Column B and then filter so that only those records from March 11, 2004, are shown. Here’s what the answer will look like. 3 3/31/2024 64.242.88.10 – – [07/Mar/2004:16:05:49 -0800] “GET /twiki/bin/edit/Main/Double_bounce_sender?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12846 64.242.88.10 – – [07/Mar/2004:16:06:51 -0800] “GET /twiki/bin/rdiff/TWiki/NewUserTemplate?rev1=1.3&rev2=1.2 HTTP/1.1” 200 4523 64.242.88.10 – – [07/Mar/2004:16:10:02 -0800] “GET /mailman/listinfo/hsdivision HTTP/1.1” 200 6291 64.242.88.10 – – [07/Mar/2004:16:11:58 -0800] “GET /twiki/bin/view/TWiki/WikiSyntax HTTP/1.1” 200 7352 64.242.88.10 – – [07/Mar/2004:16:20:55 -0800] “GET /twiki/bin/view/Main/DCCAndPostFix HTTP/1.1” 200 5253 64.242.88.10 – – [07/Mar/2004:16:23:12 -0800] “GET /twiki/bin/oops/TWiki/AppendixFileSystem?template=oopsmore¶m1=1.12¶m2=1.12 HTTP/1.1” 200 11382 64.242.88.10 – – [07/Mar/2004:16:24:16 -0800] “GET /twiki/bin/view/Main/PeterThoeny HTTP/1.1” 200 4924 64.242.88.10 – – [07/Mar/2004:16:29:16 -0800] “GET /twiki/bin/edit/Main/Header_checks?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12851 64.242.88.10 – – [07/Mar/2004:16:30:29 -0800] “GET /twiki/bin/attach/Main/OfficeLocations HTTP/1.1” 401 12851 64.242.88.10 – – [07/Mar/2004:16:31:48 -0800] “GET /twiki/bin/view/TWiki/WebTopicEditTemplate HTTP/1.1” 200 3732 64.242.88.10 – – [07/Mar/2004:16:32:50 -0800] “GET /twiki/bin/view/Main/WebChanges HTTP/1.1” 200 40520 64.242.88.10 – – [07/Mar/2004:16:33:53 -0800] “GET /twiki/bin/edit/Main/Smtpd_etrn_restrictions?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12851 64.242.88.10 – – [07/Mar/2004:16:35:19 -0800] “GET /mailman/listinfo/business HTTP/1.1” 200 6379 64.242.88.10 – – [07/Mar/2004:16:36:22 -0800] “GET /twiki/bin/rdiff/Main/WebIndex?rev1=1.2&rev2=1.1 HTTP/1.1” 200 46373 64.242.88.10 – – [07/Mar/2004:16:37:27 -0800] “GET /twiki/bin/view/TWiki/DontNotify HTTP/1.1” 200 4140 64.242.88.10 – – [07/Mar/2004:16:39:24 -0800] “GET /twiki/bin/view/Main/TokyoOffice HTTP/1.1” 200 3853 64.242.88.10 – – [07/Mar/2004:16:43:54 -0800] “GET /twiki/bin/view/Main/MikeMannix HTTP/1.1” 200 3686 64.242.88.10 – – [07/Mar/2004:16:45:56 -0800] “GET /twiki/bin/attach/Main/PostfixCommands HTTP/1.1” 401 12846 64.242.88.10 – – [07/Mar/2004:16:47:12 -0800] “GET /robots.txt HTTP/1.1” 200 68 64.242.88.10 – – [07/Mar/2004:16:47:46 -0800] “GET /twiki/bin/rdiff/Know/ReadmeFirst?rev1=1.5&rev2=1.4 HTTP/1.1” 200 5724 64.242.88.10 – – [07/Mar/2004:16:49:04 -0800] “GET /twiki/bin/view/Main/TWikiGroups?rev=1.2 HTTP/1.1” 200 5162 64.242.88.10 – – [07/Mar/2004:16:50:54 -0800] “GET /twiki/bin/rdiff/Main/ConfigurationVariables HTTP/1.1” 200 59679 64.242.88.10 – – [07/Mar/2004:16:52:35 -0800] “GET /twiki/bin/edit/Main/Flush_service_name?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12851 64.242.88.10 – – [07/Mar/2004:16:53:46 -0800] “GET /twiki/bin/rdiff/TWiki/TWikiRegistration HTTP/1.1” 200 34395 64.242.88.10 – – [07/Mar/2004:16:54:55 -0800] “GET /twiki/bin/rdiff/Main/NicholasLee HTTP/1.1” 200 7235 64.242.88.10 – – [07/Mar/2004:16:56:39 -0800] “GET /twiki/bin/view/Sandbox/WebHome?rev=1.6 HTTP/1.1” 200 8545 64.242.88.10 – – [07/Mar/2004:16:58:54 -0800] “GET /mailman/listinfo/administration HTTP/1.1” 200 6459 lordgun.org – – [07/Mar/2004:17:01:53 -0800] “GET /razor.html HTTP/1.1” 200 2869 64.242.88.10 – – [07/Mar/2004:17:09:01 -0800] “GET /twiki/bin/search/Main/SearchResult?scope=text®ex=on&search=Joris%20*Benschop[^A-Za-z] HTTP/1.1” 200 4284 64.242.88.10 – – [07/Mar/2004:17:10:20 -0800] “GET /twiki/bin/oops/TWiki/TextFormattingRules?template=oopsmore¶m1=1.37¶m2=1.37 HTTP/1.1” 200 11400 64.242.88.10 – – [07/Mar/2004:17:13:50 -0800] “GET /twiki/bin/edit/TWiki/DefaultPlugin?t=1078688936 HTTP/1.1” 401 12846 64.242.88.10 – – [07/Mar/2004:17:16:00 -0800] “GET /twiki/bin/search/Main/?scope=topic®ex=on&search=^g HTTP/1.1” 200 3675 64.242.88.10 – – [07/Mar/2004:17:17:27 -0800] “GET /twiki/bin/search/TWiki/?scope=topic®ex=on&search=^d HTTP/1.1” 200 5773 lj1036.inktomisearch.com – – [07/Mar/2004:17:18:36 -0800] “GET /robots.txt HTTP/1.0” 200 68 lj1090.inktomisearch.com – – [07/Mar/2004:17:18:41 -0800] “GET /twiki/bin/view/Main/LondonOffice HTTP/1.0” 200 3860 64.242.88.10 – – [07/Mar/2004:17:21:44 -0800] “GET /twiki/bin/attach/TWiki/TablePlugin HTTP/1.1” 401 12846 64.242.88.10 – – [07/Mar/2004:17:22:49 -0800] “GET /twiki/bin/view/TWiki/ManagingWebs?rev=1.22 HTTP/1.1” 200 9310 64.242.88.10 – – [07/Mar/2004:17:23:54 -0800] “GET /twiki/bin/statistics/Main HTTP/1.1” 200 808 64.242.88.10 – – [07/Mar/2004:17:26:30 -0800] “GET /twiki/bin/view/TWiki/WikiCulture HTTP/1.1” 200 5935 64.242.88.10 – – [07/Mar/2004:17:27:37 -0800] “GET /twiki/bin/edit/Main/WebSearch?t=1078669682 HTTP/1.1” 401 12846 64.242.88.10 – – [07/Mar/2004:17:28:45 -0800] “GET /twiki/bin/oops/TWiki/ResetPassword?template=oopsmore¶m1=1.4¶m2=1.4 HTTP/1.1” 200 11281 64.242.88.10 – – [07/Mar/2004:17:29:59 -0800] “GET /twiki/bin/view/TWiki/ManagingWebs?skin=print HTTP/1.1” 200 8806 64.242.88.10 – – [07/Mar/2004:17:31:39 -0800] “GET /twiki/bin/edit/Main/UvscanAndPostFix?topicparent=Main.WebHome HTTP/1.1” 401 12846 64.242.88.10 – – [07/Mar/2004:17:35:35 -0800] “GET /twiki/bin/view/TWiki/KlausWriessnegger HTTP/1.1” 200 3848 64.242.88.10 – – [07/Mar/2004:17:39:39 -0800] “GET /twiki/bin/view/Main/SpamAssassin HTTP/1.1” 200 4081 64.242.88.10 – – [07/Mar/2004:17:42:15 -0800] “GET /twiki/bin/oops/TWiki/RichardDonkin?template=oopsmore¶m1=1.2¶m2=1.2 HTTP/1.1” 200 11281 64.242.88.10 – – [07/Mar/2004:17:46:17 -0800] “GET /twiki/bin/rdiff/TWiki/AlWilliams?rev1=1.3&rev2=1.2 HTTP/1.1” 200 4485 64.242.88.10 – – [07/Mar/2004:17:47:43 -0800] “GET /twiki/bin/rdiff/TWiki/AlWilliams?rev1=1.2&rev2=1.1 HTTP/1.1” 200 5234 64.242.88.10 – – [07/Mar/2004:17:50:44 -0800] “GET /twiki/bin/view/TWiki/SvenDowideit HTTP/1.1” 200 3616 64.242.88.10 – – [07/Mar/2004:17:53:45 -0800] “GET /twiki/bin/search/Main/SearchResult?scope=text®ex=on&search=Office%20*Locations[^A-Za-z] HTTP/1.1” 200 7771 64.242.88.10 – – [07/Mar/2004:17:56:54 -0800] “GET /twiki/bin/view/TWiki/TextFormattingRules?rev=r1.31 HTTP/1.1” 200 23338 64.242.88.10 – – [07/Mar/2004:17:58:00 -0800] “GET /twiki/bin/edit/Main/KevinWGagel?t=1078670331 HTTP/1.1” 401 12846 64.242.88.10 – – [07/Mar/2004:18:00:09 -0800] “GET /twiki/bin/edit/Main/Virtual_mailbox_lock?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12846 64.242.88.10 – – [07/Mar/2004:18:02:10 -0800] “GET /twiki/bin/view/Main/WebPreferences HTTP/1.1” 200 8820 64.242.88.10 – – [07/Mar/2004:18:04:05 -0800] “GET /twiki/bin/view/TWiki/WikiWord?rev=1.3 HTTP/1.1” 200 6816 lj1125.inktomisearch.com – – [07/Mar/2004:18:06:14 -0800] “GET /twiki/bin/oops/Sandbox/WebChanges HTTP/1.0” 200 209 64.242.88.10 – – [07/Mar/2004:18:09:00 -0800] “GET /twiki/bin/rdiff/Main/TWikiGuest HTTP/1.1” 200 11314 64.242.88.10 – – [07/Mar/2004:18:10:09 -0800] “GET /twiki/bin/edit/TWiki/TWikiVariables?t=1078684115 HTTP/1.1” 401 12846 d207-6-9-183.bchsia.telus.net – – [07/Mar/2004:18:10:18 -0800] “GET /pipermail/cncce/2004-January/000001.html HTTP/1.1” 200 3095 d207-6-9-183.bchsia.telus.net – – [07/Mar/2004:18:10:20 -0800] “GET /pipermail/cncce/2004-January/000002.html HTTP/1.1” 200 3810 64.242.88.10 – – [07/Mar/2004:18:17:26 -0800] “GET /twiki/bin/rdiff/TWiki/WikiWord?rev1=1.4&rev2=1.3 HTTP/1.1” 200 6948 64.242.88.10 – – [07/Mar/2004:18:19:01 -0800] “GET /twiki/bin/edit/Main/TWikiPreferences?topicparent=Main.WebHome HTTP/1.1” 401 12846 d207-6-9-183.bchsia.telus.net – – [07/Mar/2004:18:19:16 -0800] “GET /pipermail/cncce/2004-January.txt HTTP/1.1” 200 3376 64.242.88.10 – – [07/Mar/2004:18:22:52 -0800] “GET /twiki/bin/search/Main/SearchResult?scope=text®ex=on&search=Web%20*Statistics[^A-Za-z] HTTP/1.1” 200 3584 64.242.88.10 – – [07/Mar/2004:18:26:32 -0800] “GET /twiki/bin/rdiff/TWiki/PeterFokkinga?rev1=1.4&rev2=1.3 HTTP/1.1” 200 4548 64.242.88.10 – – [07/Mar/2004:18:32:39 -0800] “GET /mailman/listinfo/dentalstudies HTTP/1.1” 200 6345 64.242.88.10 – – [07/Mar/2004:18:34:42 -0800] “GET /twiki/bin/view/Main/TWikiGuest HTTP/1.1” 200 4449 64.242.88.10 – – [07/Mar/2004:18:42:29 -0800] “GET /twiki/bin/attach/Main/TWikiGroups HTTP/1.1” 401 12846 64.242.88.10 – – [07/Mar/2004:18:46:00 -0800] “GET /twiki/bin/rdiff/TWiki/TextFormattingRules?rev1=1.36&rev2=1.35 HTTP/1.1” 200 25416 64.242.88.10 – – [07/Mar/2004:18:47:06 -0800] “GET /twiki/bin/rdiff/Main/TWikiGroups?rev1=1.3&rev2=1.2 HTTP/1.1” 200 4308 64.242.88.10 – – [07/Mar/2004:18:48:15 -0800] “GET /twiki/bin/search/TWiki/?scope=topic®ex=on&search=.* HTTP/1.1” 200 3544 64.242.88.10 – – [07/Mar/2004:18:52:30 -0800] “GET /twiki/bin/edit/Main/Trigger_timeout?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12846 64.242.88.10 – – [07/Mar/2004:18:53:55 -0800] “GET /twiki/bin/oops/TWiki/TWikiSite?template=oopsmore¶m1=1.21¶m2=1.21 HTTP/1.1” 200 11284 64.242.88.10 – – [07/Mar/2004:18:57:07 -0800] “GET /twiki/bin/view/TWiki/TextFormattingRules?rev=r1.35 HTTP/1.1” 200 27248 64.242.88.10 – – [07/Mar/2004:18:58:52 -0800] “GET /twiki/bin/edit/Main/Mydestination?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12846 64.242.88.10 – – [07/Mar/2004:18:59:52 -0800] “GET /mailman/listinfo/fcd HTTP/1.1” 200 5967 64.242.88.10 – – [07/Mar/2004:19:01:48 -0800] “GET /twiki/bin/rdiff/Main/WebHome?rev1=1.28&rev2=1.27 HTTP/1.1” 200 3596 64.242.88.10 – – [07/Mar/2004:19:03:58 -0800] “GET /twiki/bin/edit/Main/Message_size_limit?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12846 64.242.88.10 – – [07/Mar/2004:19:08:55 -0800] “GET /twiki/bin/rdiff/TWiki/TWikiHistory HTTP/1.1” 200 138789 64.242.88.10 – – [07/Mar/2004:19:10:13 -0800] “GET /twiki/bin/search/TWiki/?scope=topic®ex=on&search=^y HTTP/1.1” 200 3628 64.242.88.10 – – [07/Mar/2004:19:15:38 -0800] “GET /twiki/bin/edit/Main/Smtpd_history_flush_threshold?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12851 64.242.88.10 – – [07/Mar/2004:19:16:44 -0800] “GET /twiki/bin/view/TWiki/TWikiHistory?rev=1.59 HTTP/1.1” 200 52854 64.242.88.10 – – [07/Mar/2004:19:18:05 -0800] “GET /twiki/bin/edit/Main/Sender_canonical_maps?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12851 64.242.88.10 – – [07/Mar/2004:19:19:19 -0800] “GET /mailman/listinfo/mlc HTTP/1.1” 200 6142 64.242.88.10 – – [07/Mar/2004:19:21:01 -0800] “GET /twiki/bin/rdiff/Main/WebChanges HTTP/1.1” 200 114241 64.242.88.10 – – [07/Mar/2004:19:22:11 -0800] “GET /twiki/bin/edit/Sandbox/TestTopic5?topicparent=Sandbox.WebHome HTTP/1.1” 401 12846 64.242.88.10 – – [07/Mar/2004:19:24:57 -0800] “GET /twiki/bin/view/TWiki/TextFormattingRules?rev=r1.22 HTTP/1.1” 200 21162 64.242.88.10 – – [07/Mar/2004:19:26:22 -0800] “GET /twiki/bin/search/TWiki/?scope=topic®ex=on&search=^j HTTP/1.1” 200 4524 64.242.88.10 – – [07/Mar/2004:19:29:46 -0800] “GET /twiki/bin/oops/TWiki/TWikiVariables?template=oopsmore¶m1=1.62¶m2=1.62 HTTP/1.1” 200 11444 64.242.88.10 – – [07/Mar/2004:19:31:25 -0800] “GET /twiki/bin/edit/Main/Lmtp_connect_timeout?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12846 64.242.88.10 – – [07/Mar/2004:19:32:45 -0800] “GET /twiki/bin/search/TWiki/?scope=topic®ex=on&search=^q HTTP/1.1” 200 2937 64.242.88.10 – – [07/Mar/2004:19:36:14 -0800] “GET /twiki/bin/view/TWiki/ManagingWebs?rev=1.21 HTTP/1.1” 200 9310 64.242.88.10 – – [07/Mar/2004:19:39:40 -0800] “GET /twiki/bin/edit/Main/Qmqpd_authorized_clients?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12846 64.242.88.10 – – [07/Mar/2004:19:41:33 -0800] “GET /twiki/bin/edit/Main/Header_address_token_limit?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12846 64.242.88.10 – – [07/Mar/2004:19:42:45 -0800] “GET /twiki/bin/edit/Main/Syslog_name?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12846 80-219-148-207.dclient.hispeed.ch – – [07/Mar/2004:19:47:36 -0800] “OPTIONS * HTTP/1.0” 200 – 64.242.88.10 – – [07/Mar/2004:19:49:28 -0800] “GET /twiki/bin/oops/TWiki/TWikiHistory?template=oopsmore¶m1=1.61¶m2=1.61 HTTP/1.1” 200 11345 64.242.88.10 – – [07/Mar/2004:19:52:28 -0800] “GET /twiki/bin/view/TWiki/HaroldGottschalk HTTP/1.1” 200 3838 64.242.88.10 – – [07/Mar/2004:19:54:33 -0800] “GET /twiki/bin/view/TWiki/DefaultPlugin?rev=1.4 HTTP/1.1” 200 7298 64.242.88.10 – – [07/Mar/2004:19:55:40 -0800] “GET /twiki/bin/oops/TWiki/WelcomeGuest?template=oopsmore¶m1=1.20¶m2=1.20 HTTP/1.1” 200 11266 64.242.88.10 – – [07/Mar/2004:19:56:41 -0800] “GET /twiki/bin/rdiff/Main/WebIndex HTTP/1.1” 200 46373 64.242.88.10 – – [07/Mar/2004:19:58:24 -0800] “GET /twiki/bin/rdiff/TWiki/TWikiRegistration?rev1=1.10&rev2=1.9 HTTP/1.1” 200 3826 64.242.88.10 – – [07/Mar/2004:20:00:06 -0800] “GET /twiki/bin/view/TWiki/TextFormattingRules?rev=r1.21 HTTP/1.1” 200 20972 64.242.88.10 – – [07/Mar/2004:20:02:13 -0800] “GET /twiki/bin/attach/TWiki/DefaultPlugin HTTP/1.1” 401 12846 64.242.88.10 – – [07/Mar/2004:20:03:29 -0800] “GET /twiki/bin/search/Main/?scope=topic®ex=on&search=^p HTTP/1.1” 200 7245 206-15-133-181.dialup.ziplink.net – – [07/Mar/2004:20:04:03 -0800] “HEAD /twiki/bin/view/Main/SpamAssassinDeleting HTTP/1.1” 200 0 64.242.88.10 – – [07/Mar/2004:20:04:35 -0800] “GET /twiki/bin/edit/Main/Smtp_pix_workaround_delay_time?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12846 64.242.88.10 – – [07/Mar/2004:20:07:12 -0800] “GET /twiki/bin/edit/Main/Berkeley_db_create_buffer_size?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12851 mmscrm07-2.sac.overture.com – – [07/Mar/2004:20:10:50 -0800] “GET /robots.txt HTTP/1.0” 200 68 64.242.88.10 – – [07/Mar/2004:20:11:33 -0800] “GET /twiki/bin/attach/TWiki/TWikiSite HTTP/1.1” 401 12846 64.242.88.10 – – [07/Mar/2004:20:12:55 -0800] “GET /twiki/bin/edit/TWiki/TWikiSite?t=1078681794 HTTP/1.1” 401 12846 64.242.88.10 – – [07/Mar/2004:20:23:35 -0800] “GET /twiki/bin/search/TWiki/SearchResult?scope=text®ex=on&search=Web%20*Statistics[^A-Za-z] HTTP/1.1” 200 10118 64.242.88.10 – – [07/Mar/2004:20:25:31 -0800] “GET /twiki/bin/edit/Main/Defer_transports?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12846 64.242.88.10 – – [07/Mar/2004:20:31:40 -0800] “GET /twiki/bin/rdiff/TWiki/SearchDoesNotWork HTTP/1.1” 200 6738 64.242.88.10 – – [07/Mar/2004:20:35:28 -0800] “GET /twiki/bin/search/Main/SearchResult?scope=text®ex=on&search=TWiki%20*Admin%20*Group[^A-Za-z] HTTP/1.1” 200 7311 64.242.88.10 – – [07/Mar/2004:20:38:14 -0800] “GET /twiki/bin/rdiff/TWiki/ChangePassword HTTP/1.1” 200 16670 64.242.88.10 – – [07/Mar/2004:20:40:41 -0800] “GET /twiki/bin/rdiff/TWiki/SvenDowideit HTTP/1.1” 200 5277 64.242.88.10 – – [07/Mar/2004:20:42:09 -0800] “GET /twiki/bin/rdiff/TWiki/KevinKinnell?rev1=1.5&rev2=1.4 HTTP/1.1” 200 4982 64.242.88.10 – – [07/Mar/2004:20:44:48 -0800] “GET /twiki/bin/edit/Main/Undisclosed_recipients_header?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12846 64.242.88.10 – – [07/Mar/2004:20:55:43 -0800] “GET /mailman/listinfo/hs_support HTTP/1.1” 200 6294 64.242.88.10 – – [07/Mar/2004:20:56:56 -0800] “GET /twiki/bin/view/TWiki/WebTopicList HTTP/1.1” 200 14070 64.242.88.10 – – [07/Mar/2004:20:58:27 -0800] “GET /twiki/bin/attach/TWiki/WebPreferences HTTP/1.1” 401 12846 64.242.88.10 – – [07/Mar/2004:21:03:48 -0800] “GET /twiki/bin/view/TWiki/TWikiFAQ HTTP/1.1” 200 12050 64.242.88.10 – – [07/Mar/2004:21:06:05 -0800] “GET /twiki/bin/oops/TWiki/DefaultPlugin?template=oopsmore¶m1=1.5¶m2=1.5 HTTP/1.1” 200 11281 64.242.88.10 – – [07/Mar/2004:21:07:24 -0800] “GET /twiki/bin/rdiff/TWiki/AppendixFileSystem?rev1=1.11&rev2=1.10 HTTP/1.1” 200 40578 64.242.88.10 – – [07/Mar/2004:21:14:32 -0800] “GET /twiki/bin/rdiff/TWiki/FileAttribute HTTP/1.1” 200 5846 h24-70-56-49.ca.shawcable.net – – [07/Mar/2004:21:16:17 -0800] “GET /twiki/view/Main/WebHome HTTP/1.1” 404 300 h24-70-56-49.ca.shawcable.net – – [07/Mar/2004:21:16:18 -0800] “GET /favicon.ico HTTP/1.1” 200 1078 h24-70-56-49.ca.shawcable.net – – [07/Mar/2004:21:16:21 -0800] “GET /twiki/ HTTP/1.1” 200 782 h24-70-56-49.ca.shawcable.net – – [07/Mar/2004:21:16:23 -0800] “GET /twiki/bin/view/Main/WebHome HTTP/1.1” 200 10419 h24-70-56-49.ca.shawcable.net – – [07/Mar/2004:21:16:23 -0800] “GET /twiki/pub/TWiki/TWikiLogos/twikiRobot46x50.gif HTTP/1.1” 200 2877 h24-70-56-49.ca.shawcable.net – – [07/Mar/2004:21:16:33 -0800] “GET /twiki/bin/view/Main/TWikiUsers HTTP/1.1” 200 6697 h24-70-56-49.ca.shawcable.net – – [07/Mar/2004:21:16:40 -0800] “GET /twiki/bin/view/Main/KevinWGagel HTTP/1.1” 200 4901 64.242.88.10 – – [07/Mar/2004:21:20:14 -0800] “GET /twiki/bin/edit/TWiki/RichardDonkin?t=1078691832 HTTP/1.1” 401 12846 64.242.88.10 – – [07/Mar/2004:21:21:40 -0800] “GET /twiki/bin/oops/Main/DCC?template=oopsmore¶m1=1.1¶m2=1.1 HTTP/1.1” 200 6399 64.242.88.10 – – [07/Mar/2004:21:23:38 -0800] “GET /twiki/bin/view/TWiki/TWikiUpgradeTo01May2000 HTTP/1.1” 200 7463 64.242.88.10 – – [07/Mar/2004:21:31:12 -0800] “GET /twiki/bin/edit/Main/Mail_release_date?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12846 64.242.88.10 – – [07/Mar/2004:21:33:51 -0800] “GET /twiki/bin/view/TWiki/TWikiPlugins?rev=1.19 HTTP/1.1” 200 26541 bh02i525f01.au.ibm.com – – [07/Mar/2004:21:34:00 -0800] “GET /AmavisNew.html HTTP/1.0” 200 2300 64.242.88.10 – – [07/Mar/2004:21:39:55 -0800] “GET /twiki/bin/attach/Main/ConfigurationVariables HTTP/1.1” 401 12846 64.242.88.10 – – [07/Mar/2004:21:41:04 -0800] “GET /mailman/listinfo/techcomm HTTP/1.1” 200 6155 64.242.88.10 – – [07/Mar/2004:21:42:47 -0800] “GET /twiki/bin/view/TWiki/TWikiHistory?rev=1.8 HTTP/1.1” 200 15618 64.242.88.10 – – [07/Mar/2004:21:44:10 -0800] “GET /twiki/bin/edit/Sandbox/TestTopic7?topicparent=Sandbox.WebHome HTTP/1.1” 401 12846 64.242.88.10 – – [07/Mar/2004:21:50:22 -0800] “GET /twiki/bin/rdiff/TWiki/WebSearch HTTP/1.1” 200 55862 64.242.88.10 – – [07/Mar/2004:21:52:05 -0800] “GET /twiki/bin/rdiff/TWiki/TWikiTopics HTTP/1.1” 200 101445 64.242.88.10 – – [07/Mar/2004:22:03:19 -0800] “GET /twiki/bin/rdiff/Main/VishaalGolam HTTP/1.1” 200 5055 64.242.88.10 – – [07/Mar/2004:22:04:44 -0800] “GET /twiki/bin/view/Main/TWikiUsers?rev=1.21 HTTP/1.1” 200 6522 64.242.88.10 – – [07/Mar/2004:22:06:16 -0800] “GET /twiki/bin/edit/Main/Delay_notice_recipient?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12846 64.242.88.10 – – [07/Mar/2004:22:07:33 -0800] “GET /twiki/bin/view/TWiki/WikiNotation HTTP/1.1” 200 3617 64.242.88.10 – – [07/Mar/2004:22:08:43 -0800] “GET /twiki/bin/edit/Main/Forward_expansion_filter?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12846 64.242.88.10 – – [07/Mar/2004:22:09:44 -0800] “GET /twiki/bin/edit/Main/TestArea?topicparent=Main.WebHome HTTP/1.1” 401 12846 64.242.88.10 – – [07/Mar/2004:22:10:55 -0800] “GET /twiki/bin/view/Main/TokyoOffice?rev=1.2 HTTP/1.1” 200 4366 64.242.88.10 – – [07/Mar/2004:22:12:28 -0800] “GET /twiki/bin/attach/TWiki/WebSearch HTTP/1.1” 401 12846 64.242.88.10 – – [07/Mar/2004:22:15:57 -0800] “GET /mailman/listinfo/hs_rcafaculty HTTP/1.1” 200 6345 64.242.88.10 – – [07/Mar/2004:22:17:40 -0800] “GET /twiki/bin/view/TWiki/TWikiSkins?skin=print HTTP/1.1” 200 9563 64.242.88.10 – – [07/Mar/2004:22:27:18 -0800] “GET /twiki/bin/edit/Main/OfficeLocations?t=1078691049 HTTP/1.1” 401 12846 64.242.88.10 – – [07/Mar/2004:22:29:10 -0800] “GET /twiki/bin/view/Main/ThanadonSomdee HTTP/1.1” 200 4611 h24-71-249-14.ca.shawcable.net – – [07/Mar/2004:22:29:12 -0800] “GET /mailman/options/cnc_notice/arobin%40shaw.c HTTP/1.1” 200 3382 h24-71-249-14.ca.shawcable.net – – [07/Mar/2004:22:29:13 -0800] “GET /icons/mailman.jpg HTTP/1.1” 200 2022 h24-71-249-14.ca.shawcable.net – – [07/Mar/2004:22:29:13 -0800] “GET /icons/PythonPowered.png HTTP/1.1” 200 945 h24-71-249-14.ca.shawcable.net – – [07/Mar/2004:22:29:13 -0800] “GET /icons/gnu-head-tiny.jpg HTTP/1.1” 200 3049 h24-71-249-14.ca.shawcable.net – – [07/Mar/2004:22:29:41 -0800] “POST /mailman/options/cnc_notice HTTP/1.1” 200 3533 h24-71-249-14.ca.shawcable.net – – [07/Mar/2004:22:30:08 -0800] “POST /mailman/options/cnc_notice HTTP/1.1” 200 13973 64.242.88.10 – – [07/Mar/2004:22:31:25 -0800] “GET /twiki/bin/view/TWiki/TextFormattingRules?rev=r1.16 HTTP/1.1” 200 17361 64.242.88.10 – – [07/Mar/2004:22:35:53 -0800] “GET /twiki/bin/edit/Main/Default_delivery_slot_discount?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12851 64.242.88.10 – – [07/Mar/2004:22:36:58 -0800] “GET /twiki/bin/rdiff/TWiki/TWikiHistory?rev1=1.10&rev2=1.9 HTTP/1.1” 200 5336 64.242.88.10 – – [07/Mar/2004:22:39:00 -0800] “GET /twiki/bin/search/TWiki/SearchResult?scope=text®ex=on&search=Al%20*Williams[^A-Za-z] HTTP/1.1” 200 4364 64.242.88.10 – – [07/Mar/2004:22:45:46 -0800] “GET /twiki/bin/edit/Main/Smtpd_banner?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12846 64.242.88.10 – – [07/Mar/2004:22:47:19 -0800] “GET /twiki/bin/view/Main/WebHome?rev=r1.9 HTTP/1.1” 200 9133 64.242.88.10 – – [07/Mar/2004:22:48:55 -0800] “GET /twiki/bin/rdiff/TWiki/TWikiSkins?rev1=1.10&rev2=1.9 HTTP/1.1” 200 5989 64.242.88.10 – – [07/Mar/2004:22:51:55 -0800] “GET /twiki/bin/attach/TWiki/AndreaSterbini HTTP/1.1” 401 12851 64.242.88.10 – – [07/Mar/2004:22:53:36 -0800] “GET /twiki/bin/rdiff/TWiki/TWikiPlugins?rev1=1.20&rev2=1.19 HTTP/1.1” 200 5140 64.242.88.10 – – [07/Mar/2004:22:54:43 -0800] “GET /twiki/bin/view/Know/ReadmeFirst?rev=1.4 HTTP/1.1” 200 6736 64.242.88.10 – – [07/Mar/2004:22:58:24 -0800] “GET /twiki/bin/view/Main/TokyoOffice?rev=r1.3 HTTP/1.1” 200 3853 64.242.88.10 – – [07/Mar/2004:23:09:07 -0800] “GET /twiki/bin/view/TWiki/AlWilliams?rev=1.1 HTTP/1.1” 200 3697 calcite.rhyolite.com – – [07/Mar/2004:23:10:27 -0800] “GET /clients.html HTTP/1.1” 200 18753 64.242.88.10 – – [07/Mar/2004:23:10:44 -0800] “GET /twiki/bin/view/TWiki/JohnTalintyre HTTP/1.1” 200 3766 64.242.88.10 – – [07/Mar/2004:23:13:51 -0800] “GET /twiki/bin/view/TWiki/TWikiDocGraphics HTTP/1.1” 200 14492 64.242.88.10 – – [07/Mar/2004:23:15:51 -0800] “GET /twiki/bin/view/TWiki/TextFormattingRules?rev=r1.24 HTTP/1.1” 200 20981 64.242.88.10 – – [07/Mar/2004:23:16:57 -0800] “GET /twiki/bin/rdiff/Main/SanJoseOffice HTTP/1.1” 200 9524 64.242.88.10 – – [07/Mar/2004:23:19:01 -0800] “GET /twiki/bin/rdiff/Main/WebNotify HTTP/1.1” 200 16853 64.242.88.10 – – [07/Mar/2004:23:20:26 -0800] “GET /twiki/bin/view/TWiki/TWikiSiteTools HTTP/1.1” 200 14435 64.242.88.10 – – [07/Mar/2004:23:23:00 -0800] “GET /twiki/bin/rdiff/TWiki/RichardDonkin?rev1=1.2&rev2=1.1 HTTP/1.1” 200 5891 64.242.88.10 – – [07/Mar/2004:23:27:26 -0800] “GET /twiki/bin/search/TWiki/SearchResult?scope=text®ex=on&search=Web%20*Preferences[^A-Za-z] HTTP/1.1” 200 20030 64.242.88.10 – – [07/Mar/2004:23:30:23 -0800] “GET /twiki/bin/rdiff/TWiki/WebHome HTTP/1.1” 200 108162 64.242.88.10 – – [07/Mar/2004:23:34:31 -0800] “GET /twiki/bin/edit/Main/Lmtp_quit_timeout?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12851 64.242.88.10 – – [07/Mar/2004:23:36:48 -0800] “GET /twiki/bin/view/TWiki/WebSiteTools HTTP/1.1” 200 5208 lj1036.inktomisearch.com – – [07/Mar/2004:23:36:59 -0800] “GET /robots.txt HTTP/1.0” 200 68 lj1088.inktomisearch.com – – [07/Mar/2004:23:36:59 -0800] “GET /twiki/bin/oops/TWiki/JohnAltstadt HTTP/1.0” 200 209 64.242.88.10 – – [07/Mar/2004:23:37:48 -0800] “GET /twiki/bin/oops/Main/FileAttachment?template=oopsmore¶m1=1.3¶m2=1.3 HTTP/1.1” 200 6612 64.242.88.10 – – [07/Mar/2004:23:42:44 -0800] “GET /twiki/bin/edit/Main/Cleanup_service_name?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12846 64.242.88.10 – – [07/Mar/2004:23:47:58 -0800] “GET /twiki/bin/view/TWiki/WikiReferences?skin=print HTTP/1.1” 200 5596 64.242.88.10 – – [07/Mar/2004:23:50:03 -0800] “GET /twiki/bin/view/Main/TokyoOffice?rev=1.3 HTTP/1.1” 200 3853 64.242.88.10 – – [07/Mar/2004:23:51:38 -0800] “GET /twiki/bin/view/Main/PostSuper?rev=r1.1 HTTP/1.1” 200 3629 64.242.88.10 – – [07/Mar/2004:23:56:30 -0800] “GET /twiki/bin/rdiff/Main/PostQueue HTTP/1.1” 200 4662 64.242.88.10 – – [07/Mar/2004:23:58:53 -0800] “GET /twiki/bin/edit/TWiki/TablePlugin?t=1078681446 HTTP/1.1” 401 12851 dsl-80-43-113-44.access.uk.tiscali.com – – [08/Mar/2004:00:05:30 -0800] “GET / HTTP/1.1” 200 3169 dsl-80-43-113-44.access.uk.tiscali.com – – [08/Mar/2004:00:05:35 -0800] “GET /favicon.ico HTTP/1.1” 200 1078 dsl-80-43-113-44.access.uk.tiscali.com – – [08/Mar/2004:00:06:32 -0800] “GET /DCC.html HTTP/1.1” 200 2878 64.242.88.10 – – [08/Mar/2004:00:08:58 -0800] “GET /twiki/bin/oops/Sandbox/WebHome?template=oopsmore¶m1=1.7¶m2=1.7 HTTP/1.1” 200 4226 64.242.88.10 – – [08/Mar/2004:00:11:22 -0800] “GET /twiki/bin/edit/Main/WelcomeGuest?topicparent=Main.WebHome HTTP/1.1” 401 12846 lj1125.inktomisearch.com – – [08/Mar/2004:00:17:00 -0800] “GET /twiki/bin/oops/Main/TWiki HTTP/1.0” 200 209 64.242.88.10 – – [08/Mar/2004:00:17:22 -0800] “GET /twiki/bin/view/TWiki/RichardDonkin?skin=print HTTP/1.1” 200 1729 64.242.88.10 – – [08/Mar/2004:00:19:51 -0800] “GET /twiki/bin/view/Main/WebPreferences?rev=r1.4 HTTP/1.1” 200 7049 64.242.88.10 – – [08/Mar/2004:00:21:54 -0800] “GET /twiki/bin/view/TWiki/TWikiRegistration?rev=r1.7 HTTP/1.1” 200 12737 64.242.88.10 – – [08/Mar/2004:00:25:11 -0800] “GET /twiki/bin/view/TWiki/TextFormattingRules?rev=r1.26 HTTP/1.1” 200 22710 64.242.88.10 – – [08/Mar/2004:00:27:53 -0800] “GET /twiki/bin/view/TWiki/GoBox HTTP/1.1” 200 3762 64.242.88.10 – – [08/Mar/2004:00:29:13 -0800] “GET /twiki/bin/view/Main/FileAttachment?rev=1.1 HTTP/1.1” 200 17757 64.242.88.10 – – [08/Mar/2004:00:32:45 -0800] “GET /twiki/bin/attach/TWiki/KevinKinnell HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:00:36:21 -0800] “GET /twiki/bin/rdiff/TWiki/WikiWikiClones HTTP/1.1” 200 9259 64.242.88.10 – – [08/Mar/2004:00:37:23 -0800] “GET /twiki/bin/oops/Main/NicholasLee?template=oopsmore¶m1=1.2¶m2=1.2 HTTP/1.1” 200 6558 64.242.88.10 – – [08/Mar/2004:00:40:10 -0800] “GET /twiki/bin/edit/Main/TWikiForms?topicparent=Main.TWikiVariables HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:00:43:43 -0800] “GET /twiki/bin/rdiff/TWiki/DefaultPlugin HTTP/1.1” 200 20376 64.242.88.10 – – [08/Mar/2004:00:50:59 -0800] “GET /mailman/admin/educationadmin HTTP/1.1” 200 2150 64.242.88.10 – – [08/Mar/2004:00:52:12 -0800] “GET /mailman/private/hsdivision/ HTTP/1.1” 200 1549 64.242.88.10 – – [08/Mar/2004:00:54:26 -0800] “GET /mailman/listinfo/artsscience HTTP/1.1” 200 6248 64.242.88.10 – – [08/Mar/2004:00:55:38 -0800] “GET /twiki/bin/search/TWiki/?scope=topic®ex=on&search=^i HTTP/1.1” 200 7226 64.242.88.10 – – [08/Mar/2004:01:00:08 -0800] “GET /twiki/bin/rdiff/TWiki/AdrianLynch HTTP/1.1” 200 4011 64.242.88.10 – – [08/Mar/2004:01:01:15 -0800] “GET /twiki/bin/view/Main/WelcomeGuest HTTP/1.1” 200 4723 64.242.88.10 – – [08/Mar/2004:01:02:16 -0800] “GET /twiki/bin/view/Main/MikeMannix?rev=1.3 HTTP/1.1” 200 4721 64.242.88.10 – – [08/Mar/2004:01:04:05 -0800] “GET /twiki/bin/edit/TWiki/WikiStyleWord?topicparent=TWiki.TextFormattingFAQ HTTP/1.1” 401 12846 lj1089.inktomisearch.com – – [08/Mar/2004:01:04:54 -0800] “GET /twiki/bin/oops/TWiki/InterWikis HTTP/1.0” 200 209 64.242.88.10 – – [08/Mar/2004:01:10:43 -0800] “GET /twiki/bin/view/TWiki/FormattedSearch?rev=1.8 HTTP/1.1” 200 20434 64.242.88.10 – – [08/Mar/2004:01:12:20 -0800] “GET /twiki/bin/view/TWiki/TWikiEnhancementRequests?rev=1.3 HTTP/1.1” 200 4379 64.242.88.10 – – [08/Mar/2004:01:16:37 -0800] “GET /twiki/bin/view/Main/FileAttachment?rev=1.2 HTTP/1.1” 200 17919 64.242.88.10 – – [08/Mar/2004:01:19:18 -0800] “GET /twiki/bin/edit/TWiki/AppendixFileSystem?t=1078674582 HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:01:24:13 -0800] “GET /twiki/bin/view/TWiki/TextFormattingRules?rev=r1.33 HTTP/1.1” 200 26294 64.242.88.10 – – [08/Mar/2004:01:25:15 -0800] “GET /twiki/bin/search/Main/?scope=topic®ex=on&search=^t HTTP/1.1” 200 8306 64.242.88.10 – – [08/Mar/2004:01:29:17 -0800] “GET /twiki/bin/oops/TWiki/TWikiPlugins?template=oopsmore¶m1=1.21¶m2=1.21 HTTP/1.1” 200 11341 64.242.88.10 – – [08/Mar/2004:01:30:39 -0800] “GET /mailman/private/sswk/ HTTP/1.1” 200 1531 64.242.88.10 – – [08/Mar/2004:01:33:14 -0800] “GET /mailman/private/business/ HTTP/1.1” 200 1543 64.242.88.10 – – [08/Mar/2004:01:35:13 -0800] “GET /twiki/bin/edit/TWiki/InterWikis?t=1078696998 HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:01:41:14 -0800] “GET /twiki/bin/view/TWiki/WelcomeGuest?rev=r1.18 HTTP/1.1” 200 14001 64.242.88.10 – – [08/Mar/2004:01:46:05 -0800] “GET /twiki/bin/search/TWiki/?search=\.*&scope=topic&order=modified&reverse=on®ex=on&nosearch=on&limit=200 HTTP/1.1” 200 101279 64.242.88.10 – – [08/Mar/2004:01:47:06 -0800] “GET /twiki/bin/edit/TWiki/TWikiPages?topicparent=TWiki.WelcomeGuest HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:01:48:06 -0800] “GET /twiki/bin/view/Main/WebHome?rev=r1.16 HTTP/1.1” 200 9342 64.242.88.10 – – [08/Mar/2004:01:50:37 -0800] “GET /twiki/bin/rdiff/TWiki/RyanFreebern?rev1=1.2&rev2=1.1 HTTP/1.1” 200 5243 64.242.88.10 – – [08/Mar/2004:01:59:13 -0800] “GET /twiki/bin/edit/Main/Smtp_line_length_limit?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:02:00:30 -0800] “GET /twiki/bin/view/Main/WebStatistics?skin=print HTTP/1.1” 200 6194 64.242.88.10 – – [08/Mar/2004:02:01:34 -0800] “GET /mailman/listinfo/webber HTTP/1.1” 200 6051 64.242.88.10 – – [08/Mar/2004:02:03:12 -0800] “GET /mailman/admin/mlc HTTP/1.1” 200 2060 64.242.88.10 – – [08/Mar/2004:02:05:15 -0800] “GET /mailman/listinfo/jjec HTTP/1.1” 200 6297 64.242.88.10 – – [08/Mar/2004:02:06:17 -0800] “GET /mailman/listinfo/deans HTTP/1.1” 200 6102 64.242.88.10 – – [08/Mar/2004:02:07:21 -0800] “GET /mailman/listinfo/gisgrad HTTP/1.1” 200 6024 64.242.88.10 – – [08/Mar/2004:02:09:08 -0800] “GET /twiki/bin/view/Main/WebNotify HTTP/1.1” 200 4468 64.242.88.10 – – [08/Mar/2004:02:12:24 -0800] “GET /twiki/bin/edit/Main/Setgid_group?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:02:16:24 -0800] “GET /twiki/bin/view/Main/WebChanges?skin=print HTTP/1.1” 200 38580 lj1016.inktomisearch.com – – [08/Mar/2004:02:17:10 -0800] “GET /twiki/bin/oops/TWiki/FileAttachment HTTP/1.0” 200 209 lj1036.inktomisearch.com – – [08/Mar/2004:02:22:19 -0800] “GET /twiki/bin/view/Main/TWi HTTP/1.0” 200 4866 64.242.88.10 – – [08/Mar/2004:02:23:45 -0800] “GET /twiki/bin/rdiff/TWiki/IncludeTopicsAndWebPages HTTP/1.1” 200 20972 64.242.88.10 – – [08/Mar/2004:02:26:44 -0800] “GET /twiki/bin/oops/Main/WebChanges?template=oopsmore¶m1=1.2¶m2=1.2 HTTP/1.1” 200 6540 64.242.88.10 – – [08/Mar/2004:02:27:51 -0800] “GET /twiki/bin/rdiff/TWiki/InstantEnhancements HTTP/1.1” 200 25123 64.242.88.10 – – [08/Mar/2004:02:33:28 -0800] “GET /twiki/bin/rdiff/TWiki/TWikiPreferences?rev1=1.47&rev2=1.46 HTTP/1.1” 200 4313 64.242.88.10 – – [08/Mar/2004:02:34:40 -0800] “GET /twiki/bin/view/Main/WebHome?rev=r1.24 HTTP/1.1” 200 9769 64.242.88.10 – – [08/Mar/2004:02:42:36 -0800] “GET /mailman/listinfo/ppwc HTTP/1.1” 200 6271 64.242.88.10 – – [08/Mar/2004:02:45:03 -0800] “GET /twiki/bin/search/TWiki/?scope=topic®ex=on&bookview=on&search=.* HTTP/1.1” 200 102399 64.242.88.10 – – [08/Mar/2004:02:46:12 -0800] “GET /twiki/bin/edit/Main/Local_recipient_maps?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12851 64.242.88.10 – – [08/Mar/2004:02:47:58 -0800] “GET /mailman/listinfo HTTP/1.1” 200 6893 lj1025.inktomisearch.com – – [08/Mar/2004:02:48:05 -0800] “GET /twiki/bin/oops/Main/KevinWGage HTTP/1.0” 200 209 prxint-sxb3.e-i.net – – [08/Mar/2004:02:50:53 -0800] “GET /twiki/bin/view/Main/WebHome HTTP/1.0” 200 10392 prxint-sxb3.e-i.net – – [08/Mar/2004:02:50:54 -0800] “GET /twiki/pub/TWiki/TWikiLogos/twikiRobot46x50.gif HTTP/1.0” 200 2877 64.242.88.10 – – [08/Mar/2004:02:52:39 -0800] “GET /twiki/bin/view/Main/PostfixCmd HTTP/1.1” 200 4173 prxint-sxb2.e-i.net – – [08/Mar/2004:02:54:29 -0800] “GET /twiki/bin/view/Main/SpamAssassinAndPostFix HTTP/1.0” 200 4022 64.242.88.10 – – [08/Mar/2004:02:54:54 -0800] “GET /twiki/bin/edit/TWiki/NewTopic?topicparent=TWiki.WikiSyntax HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:02:59:03 -0800] “GET /twiki/bin/rdiff/TWiki/TWikiSite HTTP/1.1” 200 71941 64.242.88.10 – – [08/Mar/2004:03:01:12 -0800] “GET /twiki/bin/rdiff/TWiki/SimultaneousEdits HTTP/1.1” 200 6180 64.242.88.10 – – [08/Mar/2004:03:06:31 -0800] “GET /twiki/bin/view/Main/NicholasLee?rev=1.2 HTTP/1.1” 200 3570 64.242.88.10 – – [08/Mar/2004:03:07:59 -0800] “GET /twiki/bin/view/TWiki/TWikiHistory?rev=1.9 HTTP/1.1” 200 15756 64.242.88.10 – – [08/Mar/2004:03:09:20 -0800] “GET /mailman/listinfo/ncbnpfaculty HTTP/1.1” 200 6331 64.242.88.10 – – [08/Mar/2004:03:11:28 -0800] “GET /twiki/bin/search/TWiki/SearchResult?scope=text®ex=on&search=Inter%20*Wikis[^A-Za-z] HTTP/1.1” 200 5113 64.242.88.10 – – [08/Mar/2004:03:16:22 -0800] “GET /twiki/bin/oops/TWiki/TextFormattingFAQ?template=oopsmore¶m1=1.14¶m2=1.14 HTTP/1.1” 200 11364 64.242.88.10 – – [08/Mar/2004:03:17:50 -0800] “GET /twiki/bin/rdiff/Main/WebTopicList HTTP/1.1” 200 8004 64.242.88.10 – – [08/Mar/2004:03:21:16 -0800] “GET /ie.htm HTTP/1.1” 200 3518 64.242.88.10 – – [08/Mar/2004:03:26:06 -0800] “GET /mailman/private/mlc/ HTTP/1.1” 200 1528 64.242.88.10 – – [08/Mar/2004:03:28:02 -0800] “GET /twiki/bin/view/TWiki/WikiName HTTP/1.1” 200 4811 64.242.88.10 – – [08/Mar/2004:03:33:52 -0800] “GET /twiki/bin/rdiff/Main/WebRss HTTP/1.1” 200 20726 64.242.88.10 – – [08/Mar/2004:03:35:42 -0800] “GET /twiki/bin/rdiff/TWiki/SvenDowideit?rev1=1.2&rev2=1.1 HTTP/1.1” 200 5277 rouble.cc.strath.ac.uk – – [08/Mar/2004:03:40:51 -0800] “GET /razor.html HTTP/1.0” 200 2869 213.181.81.4 – – [08/Mar/2004:03:42:20 -0800] “GET /LateEmail.html HTTP/1.0” 200 7649 64.242.88.10 – – [08/Mar/2004:03:46:27 -0800] “GET /twiki/bin/edit/Main/Deliver_lock_attempts?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:03:48:18 -0800] “GET /twiki/bin/edit/Main/Daemon_directory?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:03:49:24 -0800] “GET /twiki/bin/rdiff/TWiki/KlausWriessnegger?rev1=1.2&rev2=1.1 HTTP/1.1” 200 5421 64.242.88.10 – – [08/Mar/2004:03:51:05 -0800] “GET /twiki/bin/view/Main/TWikiGuest?rev=1.4 HTTP/1.1” 200 4719 64.242.88.10 – – [08/Mar/2004:03:52:17 -0800] “GET /twiki/bin/edit/Main/Relayhost?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12846 lj1036.inktomisearch.com – – [08/Mar/2004:03:53:59 -0800] “GET /robots.txt HTTP/1.0” 200 68 lj1159.inktomisearch.com – – [08/Mar/2004:03:54:03 -0800] “GET /twiki/bin/oops/Main/TWi HTTP/1.0” 200 209 64.242.88.10 – – [08/Mar/2004:03:55:09 -0800] “GET /twiki/bin/edit/Main/BookView?topicparent=Main.TWikiVariables HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:04:16:08 -0800] “GET /twiki/bin/rdiff/TWiki/DeleteOrRenameATopic HTTP/1.1” 200 10254 64.242.88.10 – – [08/Mar/2004:04:18:28 -0800] “GET /twiki/bin/view/TWiki/DavidWarman HTTP/1.1” 200 3739 64.242.88.10 – – [08/Mar/2004:04:20:48 -0800] “GET /twiki/bin/view/TWiki/TextFormattingRules?rev=r1.28 HTTP/1.1” 200 22777 64.242.88.10 – – [08/Mar/2004:04:21:53 -0800] “GET /twiki/bin/rdiff/Main/PeterThoeny HTTP/1.1” 200 18927 64.242.88.10 – – [08/Mar/2004:04:22:55 -0800] “GET /twiki/bin/edit/TWiki/SvenDowideit?t=1078710644 HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:04:24:47 -0800] “GET /twiki/bin/edit/Main/RBLsHowTo?t=1078668449 HTTP/1.1” 401 12846 prxint-sxb3.e-i.net – – [08/Mar/2004:04:25:38 -0800] “GET /twiki/bin/view/Main/SpamAssassinTaggingOnly HTTP/1.0” 200 5672 prxint-sxb3.e-i.net – – [08/Mar/2004:04:25:44 -0800] “GET /twiki/bin/view/Main/WebHome HTTP/1.0” 200 10392 prxint-sxb3.e-i.net – – [08/Mar/2004:04:26:02 -0800] “GET /twiki/bin/view/Main/SideBar HTTP/1.0” 200 3960 64.242.88.10 – – [08/Mar/2004:04:26:02 -0800] “GET /twiki/bin/rdiff/TWiki/DefaultPlugin?rev1=1.5&rev2=1.4 HTTP/1.1” 200 4911 prxint-sxb3.e-i.net – – [08/Mar/2004:04:26:11 -0800] “GET /twiki/bin/view/Main/LinksOfUse HTTP/1.0” 200 4515 prxint-sxb3.e-i.net – – [08/Mar/2004:04:28:34 -0800] “GET /twiki/bin/view/Main/RelayGateway HTTP/1.0” 200 4213 prxint-sxb3.e-i.net – – [08/Mar/2004:04:28:38 -0800] “GET /twiki/bin/view/Main/PostfixCommands HTTP/1.0” 200 4004 prxint-sxb3.e-i.net – – [08/Mar/2004:04:28:41 -0800] “GET /twiki/bin/view/Main/PostfixCmd HTTP/1.0” 200 4154 64.242.88.10 – – [08/Mar/2004:04:28:42 -0800] “GET /twiki/bin/rdiff/TWiki/TWikiHistory?rev1=1.61&rev2=1.60 HTTP/1.1” 200 4898 prxint-sxb3.e-i.net – – [08/Mar/2004:04:28:52 -0800] “GET /twiki/bin/view/Main/PostSuper HTTP/1.0” 200 3617 prxint-sxb3.e-i.net – – [08/Mar/2004:04:29:00 -0800] “GET /twiki/bin/view/Main/RBLsHowTo HTTP/1.0” 200 4646 prxint-sxb3.e-i.net – – [08/Mar/2004:04:29:11 -0800] “GET /twiki/bin/view/Main/ConfigurationVariables HTTP/1.0” 200 58169 prxint-sxb3.e-i.net – – [08/Mar/2004:04:29:21 -0800] “GET /twiki/bin/edit/Main/Propagate_unmatched_extensions?topicparent=Main.ConfigurationVariables HTTP/1.0” 401 12816 prxint-sxb3.e-i.net – – [08/Mar/2004:04:29:30 -0800] “GET /twiki/pub/TWiki/TWikiDocGraphics/help.gif HTTP/1.0” 200 130 64.242.88.10 – – [08/Mar/2004:04:33:25 -0800] “GET /mailman/admin/hs_support HTTP/1.1” 200 2120 64.242.88.10 – – [08/Mar/2004:04:40:32 -0800] “GET /twiki/bin/edit/Main/Always_bcc?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:04:43:52 -0800] “GET /twiki/bin/view/TWiki/WelcomeGuest?rev=r1.5 HTTP/1.1” 200 9492 64.242.88.10 – – [08/Mar/2004:04:52:13 -0800] “GET /twiki/bin/rdiff/Main/TWikiGuest?rev1=1.5&rev2=1.4 HTTP/1.1” 200 6233 64.242.88.10 – – [08/Mar/2004:04:55:40 -0800] “GET /twiki/bin/edit/Main/Delay_warning_time?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:04:59:13 -0800] “GET /twiki/bin/edit/TWiki/KlausWriessnegger?t=1078709735 HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:05:00:42 -0800] “GET /twiki/bin/rdiff/TWiki/StanleyKnutson HTTP/1.1” 200 5327 p213.54.168.132.tisdip.tiscali.de – – [08/Mar/2004:05:00:44 -0800] “GET /twiki/bin/view/Main/WebHome HTTP/1.1” 200 10419 p213.54.168.132.tisdip.tiscali.de – – [08/Mar/2004:05:00:45 -0800] “GET /twiki/pub/TWiki/TWikiLogos/twikiRobot46x50.gif HTTP/1.1” 200 2877 p213.54.168.132.tisdip.tiscali.de – – [08/Mar/2004:05:00:46 -0800] “GET /favicon.ico HTTP/1.1” 200 1078 p213.54.168.132.tisdip.tiscali.de – – [08/Mar/2004:05:00:52 -0800] “GET /twiki/bin/view/Main/WebHome HTTP/1.1” 200 10419 p213.54.168.132.tisdip.tiscali.de – – [08/Mar/2004:05:01:02 -0800] “GET /twiki/bin/view/Main/SpamAssassinAndPostFix HTTP/1.1” 200 4034 p213.54.168.132.tisdip.tiscali.de – – [08/Mar/2004:05:01:14 -0800] “GET /twiki/bin/view/Main/SpamAssassinTaggingOnly HTTP/1.1” 200 5691 64.242.88.10 – – [08/Mar/2004:05:01:58 -0800] “GET /twiki/bin/view/TWiki/WhatIsWikiWiki HTTP/1.1” 200 4234 200.160.249.68.bmf.com.br – – [08/Mar/2004:05:02:06 -0800] “GET /twiki/bin/view/Main/WebHome HTTP/1.0” 200 10392 200.160.249.68.bmf.com.br – – [08/Mar/2004:05:02:07 -0800] “GET /twiki/pub/TWiki/TWikiLogos/twikiRobot46x50.gif HTTP/1.0” 200 2877 64.242.88.10 – – [08/Mar/2004:05:03:13 -0800] “GET /twiki/bin/view/Main/WebIndex?rev=1.1 HTTP/1.1” 200 44960 64.242.88.10 – – [08/Mar/2004:05:13:35 -0800] “GET /mailman/private/hs_support/ HTTP/1.1” 200 1549 68-174-110-154.nyc.rr.com – – [08/Mar/2004:05:16:15 -0800] “GET /razor.html HTTP/1.1” 200 2869 68-174-110-154.nyc.rr.com – – [08/Mar/2004:05:16:20 -0800] “GET /favicon.ico HTTP/1.1” 200 1078 64.242.88.10 – – [08/Mar/2004:05:22:57 -0800] “GET /twiki/bin/attach/Sandbox/WebHome HTTP/1.1” 401 12846 p213.54.168.132.tisdip.tiscali.de – – [08/Mar/2004:05:23:37 -0800] “GET /twiki/bin/view/Main/SpamAssassinDeleting HTTP/1.1” 200 5543 66-194-6-70.gen.twtelecom.net – – [08/Mar/2004:05:24:18 -0800] “GET / HTTP/1.1” 200 3169 64.242.88.10 – – [08/Mar/2004:05:24:29 -0800] “GET /twiki/bin/edit/TWiki/UnchangeableTopicBug?topicparent=TWiki.TWikiHistory HTTP/1.1” 401 12846 p213.54.168.132.tisdip.tiscali.de – – [08/Mar/2004:05:24:50 -0800] “GET /twiki/bin/view/Main/SpamAssassinUsingRazorAndDCC HTTP/1.1” 200 7435 p213.54.168.132.tisdip.tiscali.de – – [08/Mar/2004:05:25:46 -0800] “GET /twiki/bin/view/Main/Postfix HTTP/1.1” 200 3699 64.242.88.10 – – [08/Mar/2004:05:26:02 -0800] “GET /twiki/bin/view/Main/TWikiGuest?skin=print HTTP/1.1” 200 2372 p213.54.168.132.tisdip.tiscali.de – – [08/Mar/2004:05:26:06 -0800] “GET /twiki/bin/edit/Main/UvscanAndPostFix?topicparent=Main.WebHome HTTP/1.1” 401 12851 p213.54.168.132.tisdip.tiscali.de – – [08/Mar/2004:05:26:08 -0800] “GET /twiki/pub/TWiki/TWikiDocGraphics/help.gif HTTP/1.1” 200 130 p213.54.168.132.tisdip.tiscali.de – – [08/Mar/2004:05:26:16 -0800] “GET /twiki/bin/view/Main/DCCAndPostFix HTTP/1.1” 200 5253 64.242.88.10 – – [08/Mar/2004:05:30:07 -0800] “GET /twiki/bin/view/TWiki/SvenDowideit?rev=1.1 HTTP/1.1” 200 3564 64.242.88.10 – – [08/Mar/2004:05:31:47 -0800] “GET /twiki/bin/edit/Main/Maps_rbl_reject_code?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12846 lj1027.inktomisearch.com – – [08/Mar/2004:05:32:01 -0800] “GET /twiki/bin/view/TWiki/2fa HTTP/1.0” 200 4615 64.242.88.10 – – [08/Mar/2004:05:34:33 -0800] “GET /twiki/bin/search/Main/SearchResult?scope=text®ex=on&search=Web%20*Changes[^A-Za-z] HTTP/1.1” 200 4829 64.242.88.10 – – [08/Mar/2004:05:36:56 -0800] “GET /twiki/bin/edit/Main/WebStatistics?t=1078690975 HTTP/1.1” 401 12851 68-174-110-154.nyc.rr.com – – [08/Mar/2004:05:38:57 -0800] “GET /razor.html HTTP/1.1” 304 – 64.242.88.10 – – [08/Mar/2004:05:42:06 -0800] “GET /twiki/bin/view/Main/RelayGateway?rev=1.3 HTTP/1.1” 200 4232 64.242.88.10 – – [08/Mar/2004:05:47:38 -0800] “GET /robots.txt HTTP/1.1” 200 68 64.242.88.10 – – [08/Mar/2004:05:48:48 -0800] “GET /twiki/bin/rdiff/TWiki/KevinKinnell?rev1=1.4&rev2=1.3 HTTP/1.1” 200 4369 64.242.88.10 – – [08/Mar/2004:05:51:45 -0800] “GET /twiki/bin/view/TWiki/WelcomeGuest?rev=r1.11 HTTP/1.1” 200 13102 64.242.88.10 – – [08/Mar/2004:05:56:08 -0800] “GET /twiki/bin/view/TWiki/TWikiRegistration?rev=r1.4 HTTP/1.1” 200 12113 64.242.88.10 – – [08/Mar/2004:05:57:15 -0800] “GET /twiki/bin/edit/TWiki/TWikiCodevTWikiEnhancementRequests?topicparent=TWiki.TWikiHistory HTTP/1.1” 401 12851 64.242.88.10 – – [08/Mar/2004:05:58:39 -0800] “GET /twiki/bin/search/TWiki/SearchResult?scope=text®ex=on&search=Peter%20*Fokkinga[^A-Za-z] HTTP/1.1” 200 4388 64.242.88.10 – – [08/Mar/2004:06:01:51 -0800] “GET /twiki/bin/attach/Main/WebPreferences HTTP/1.1” 401 12851 64.242.88.10 – – [08/Mar/2004:06:09:37 -0800] “GET /mailman/admin/hs_rcafaculty HTTP/1.1” 200 2144 64.242.88.10 – – [08/Mar/2004:06:17:13 -0800] “GET /twiki/bin/rdiff/TWiki/WebChanges HTTP/1.1” 200 114167 64.242.88.10 – – [08/Mar/2004:06:20:36 -0800] “GET /twiki/bin/view/Main/JorisBenschop?skin=print HTTP/1.1” 200 2717 64.242.88.10 – – [08/Mar/2004:06:23:52 -0800] “GET /twiki/bin/edit/TWiki/TestArea?topicparent=TWiki.WelcomeGuest HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:06:32:14 -0800] “GET /twiki/bin/view/TWiki/WelcomeGuest?rev=r1.6 HTTP/1.1” 200 12620 64.242.88.10 – – [08/Mar/2004:06:37:19 -0800] “GET /twiki/bin/rdiff/TWiki/HaroldGottschalk?rev1=1.2&rev2=1.1 HTTP/1.1” 200 5389 64.242.88.10 – – [08/Mar/2004:06:41:22 -0800] “GET /pipermail/techcomm/ HTTP/1.1” 200 1176 64.242.88.10 – – [08/Mar/2004:06:42:29 -0800] “GET /twiki/bin/view/TWiki/TextFormattingRules?rev=r1.19 HTTP/1.1” 200 20488 64.242.88.10 – – [08/Mar/2004:06:43:32 -0800] “GET /twiki/bin/edit/Sandbox/TestTopic2?topicparent=Sandbox.WebHome HTTP/1.1” 401 12846 128.227.88.79 – – [08/Mar/2004:06:47:41 -0800] “GET /twiki/bin/view/Main/WebHome HTTP/1.1” 200 10419 128.227.88.79 – – [08/Mar/2004:06:47:41 -0800] “GET /twiki/pub/TWiki/TWikiLogos/twikiRobot46x50.gif HTTP/1.1” 200 2877 64.242.88.10 – – [08/Mar/2004:06:49:27 -0800] “GET /twiki/bin/attach/TWiki/InterWikis HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:06:54:30 -0800] “GET /twiki/bin/rdiff/TWiki/TWikiSkins?rev1=1.11&rev2=1.10 HTTP/1.1” 200 5711 64.242.88.10 – – [08/Mar/2004:06:57:09 -0800] “GET /twiki/bin/rdiff/TWiki/WebNotify HTTP/1.1” 200 11780 128.227.88.79 – – [08/Mar/2004:06:57:46 -0800] “GET /twiki/bin/view/Main/WebHome HTTP/1.1” 200 10419 128.227.88.79 – – [08/Mar/2004:06:57:46 -0800] “GET /twiki/pub/TWiki/TWikiLogos/twikiRobot46x50.gif HTTP/1.1” 304 – 64.242.88.10 – – [08/Mar/2004:07:00:15 -0800] “GET /twiki/bin/view/TWiki/DontNotify?rev=1.1 HTTP/1.1” 200 3965 64.242.88.10 – – [08/Mar/2004:07:07:13 -0800] “GET /twiki/bin/edit/Main/Masquerade_classes?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12846 128.227.88.79 – – [08/Mar/2004:07:09:12 -0800] “GET /twiki/bin/view/Main/SpamAssassin HTTP/1.1” 200 4081 64.242.88.10 – – [08/Mar/2004:07:09:21 -0800] “GET /twiki/bin/view/Main/WebPreferences?rev=r1.10 HTTP/1.1” 200 8312 64.242.88.10 – – [08/Mar/2004:07:10:26 -0800] “GET /twiki/bin/view/TWiki/HaroldGottschalk?rev=1.2 HTTP/1.1” 200 3774 64.242.88.10 – – [08/Mar/2004:07:11:37 -0800] “GET /twiki/bin/edit/TWiki/TWikiCodevTWikiPlannedFeatures?topicparent=TWiki.TWikiHistory HTTP/1.1” 401 12851 64.242.88.10 – – [08/Mar/2004:07:12:39 -0800] “GET /twiki/bin/view/TWiki/TWikiHistory?rev=r1.44 HTTP/1.1” 200 41434 64.242.88.10 – – [08/Mar/2004:07:22:13 -0800] “GET /twiki/bin/view/TWiki/PeterFokkinga?rev=1.2 HTTP/1.1” 200 3748 64.242.88.10 – – [08/Mar/2004:07:23:38 -0800] “GET /twiki/bin/edit/TWiki/TWikiPlugins?t=1078696313 HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:07:24:43 -0800] “GET /mailman/listinfo/webct HTTP/1.1” 200 6377 64.242.88.10 – – [08/Mar/2004:07:25:56 -0800] “GET /razor.html HTTP/1.1” 200 2869 64.242.88.10 – – [08/Mar/2004:07:27:01 -0800] “GET /mailman/listinfo/faculty HTTP/1.1” 200 6054 61.9.4.61 – – [08/Mar/2004:07:27:36 -0800] “GET /_vti_bin/owssvr.dll?UL=1&ACT=4&BUILD=2614&STRMVER=4&CAPREQ=0 HTTP/1.0” 404 284 61.9.4.61 – – [08/Mar/2004:07:27:36 -0800] “GET /SpamAssassin.html HTTP/1.0” 200 7368 61.9.4.61 – – [08/Mar/2004:07:27:37 -0800] “GET /MSOffice/cltreq.asp?UL=1&ACT=4&BUILD=2614&STRMVER=4&CAPREQ=0 HTTP/1.0” 404 284 64.242.88.10 – – [08/Mar/2004:07:28:29 -0800] “GET /mailman/admin/sswk HTTP/1.1” 200 2072 64.242.88.10 – – [08/Mar/2004:07:29:56 -0800] “GET /mailman/listinfo/purchasing HTTP/1.1” 200 6050 64.242.88.10 – – [08/Mar/2004:07:35:50 -0800] “GET /twiki/bin/edit/Main/Invalid_hostname_reject_code?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:07:39:31 -0800] “GET /twiki/bin/rdiff/Main/WebPreferences?rev1=1.14&rev2=1.13 HTTP/1.1” 200 7207 64.242.88.10 – – [08/Mar/2004:07:40:54 -0800] “GET /twiki/bin/rename/TWiki/TWikiHistory HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:07:43:21 -0800] “GET /twiki/bin/view/TWiki/SearchDoesNotWork?rev=r1.2 HTTP/1.1” 200 4072 64.242.88.10 – – [08/Mar/2004:07:44:53 -0800] “GET /twiki/bin/view/TWiki/TWikiHistory?rev=r1.50 HTTP/1.1” 200 42285 64.242.88.10 – – [08/Mar/2004:07:49:56 -0800] “GET /twiki/bin/edit/TWiki/RyanFreebern?t=1078701457 HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:07:51:39 -0800] “GET /twiki/bin/view/Main/WebPreferences?rev=r1.2 HTTP/1.1” 200 6061 64.242.88.10 – – [08/Mar/2004:07:53:19 -0800] “GET /twiki/bin/rdiff/TWiki/WebTopicEditTemplate HTTP/1.1” 200 7895 mcl02.cnc.bc.ca – – [08/Mar/2004:07:53:37 -0800] “GET /ie.htm HTTP/1.1” 200 3518 mcl02.cnc.bc.ca – – [08/Mar/2004:07:53:38 -0800] “GET /images/image005.jpg HTTP/1.1” 200 21125 mcl02.cnc.bc.ca – – [08/Mar/2004:07:53:38 -0800] “GET /images/image004.jpg HTTP/1.1” 200 10936 mcl02.cnc.bc.ca – – [08/Mar/2004:07:53:38 -0800] “GET /images/msgops.JPG HTTP/1.1” 200 7939 64.242.88.10 – – [08/Mar/2004:07:54:30 -0800] “GET /twiki/bin/edit/Main/Unknown_local_recipient_reject_code?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:07:56:34 -0800] “GET /twiki/bin/search/Main/SearchResult?scope=text®ex=on&search=Web%20*Index[^A-Za-z] HTTP/1.1” 200 4163 64.242.88.10 – – [08/Mar/2004:08:04:46 -0800] “GET /SpamAssassin.html HTTP/1.1” 200 7368 p5083cd5d.dip0.t-ipconnect.de – – [08/Mar/2004:08:09:32 -0800] “GET /SpamAssassin.html HTTP/1.0” 200 7368 64.242.88.10 – – [08/Mar/2004:08:12:50 -0800] “GET /twiki/bin/view/TWiki/ChangePassword?rev=r1.6 HTTP/1.1” 200 5181 64.242.88.10 – – [08/Mar/2004:08:14:15 -0800] “GET /twiki/bin/edit/TWiki/HaroldGottschalk?t=1078717948 HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:08:15:21 -0800] “GET /twiki/bin/edit/Main/Expand_owner_alias?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:08:17:09 -0800] “GET /twiki/bin/view/Main/WebIndex?rev=r1.2 HTTP/1.1” 200 45059 64.242.88.10 – – [08/Mar/2004:08:18:52 -0800] “GET /rfc.html HTTP/1.1” 200 3103 pool-68-160-195-60.ny325.east.verizon.net – – [08/Mar/2004:08:21:00 -0800] “GET / HTTP/1.1” 200 3169 pool-68-160-195-60.ny325.east.verizon.net – – [08/Mar/2004:08:21:00 -0800] “GET /favicon.ico HTTP/1.1” 200 1078 64.242.88.10 – – [08/Mar/2004:08:21:47 -0800] “GET /twiki/bin/search/Main/SearchResult?scope=text®ex=on&search=RBLs%20*How%20*To[^A-Za-z] HTTP/1.1” 200 3575 64.242.88.10 – – [08/Mar/2004:08:25:37 -0800] “GET /twiki/bin/rdiff/TWiki/WebTopicEditTemplate?rev1=1.5&rev2=1.4 HTTP/1.1” 200 4212 212.92.37.62 – – [08/Mar/2004:08:26:41 -0800] “GET / HTTP/1.1” 200 3169 212.92.37.62 – – [08/Mar/2004:08:27:04 -0800] “GET /twiki/bin/view/Main/WebHome HTTP/1.1” 200 10419 212.92.37.62 – – [08/Mar/2004:08:27:08 -0800] “GET /twiki/pub/TWiki/TWikiLogos/twikiRobot46x50.gif HTTP/1.1” 200 2877 64.242.88.10 – – [08/Mar/2004:08:27:14 -0800] “GET /twiki/bin/rdiff/Main/SpamAssassin HTTP/1.1” 200 4445 212.92.37.62 – – [08/Mar/2004:08:27:23 -0800] “GET /twiki/bin/view/Main/SpamAssassinAndPostFix HTTP/1.1” 200 4034 212.92.37.62 – – [08/Mar/2004:08:27:28 -0800] “GET /twiki/bin/view/Main/SpamAssassinTaggingOnly HTTP/1.1” 200 5691 64.242.88.10 – – [08/Mar/2004:08:28:23 -0800] “GET /twiki/bin/rdiff/Main/TokyoOffice?rev1=1.2&rev2=1.1 HTTP/1.1” 200 7316 64.242.88.10 – – [08/Mar/2004:08:29:36 -0800] “GET /twiki/bin/view/TWiki/TWikiCategoryTable HTTP/1.1” 200 3729 219.95.17.51 – – [08/Mar/2004:08:29:57 -0800] “GET / HTTP/1.1” 200 3169 212.92.37.62 – – [08/Mar/2004:08:30:25 -0800] “GET /twiki/bin/view/Main/SpamAssassinDeleting HTTP/1.1” 200 5543 212.92.37.62 – – [08/Mar/2004:08:31:37 -0800] “GET /twiki/bin/view/Main/DCCAndPostFix HTTP/1.1” 200 5253 10.0.0.153 – – [08/Mar/2004:08:32:24 -0800] “GET / HTTP/1.1” 304 – 10.0.0.153 – – [08/Mar/2004:08:32:27 -0800] “GET /twiki/bin/view/Main/WebHome HTTP/1.1” 200 10419 10.0.0.153 – – [08/Mar/2004:08:32:27 -0800] “GET /twiki/pub/TWiki/TWikiLogos/twikiRobot46x50.gif HTTP/1.1” 304 – 212.92.37.62 – – [08/Mar/2004:08:32:34 -0800] “GET /twiki/bin/view/Main/SpamAssassinUsingRazorAndDCC HTTP/1.1” 200 7435 212.92.37.62 – – [08/Mar/2004:08:33:27 -0800] “GET /twiki/bin/view/Main/PostfixCommands HTTP/1.1” 200 4016 212.92.37.62 – – [08/Mar/2004:08:33:30 -0800] “GET /twiki/bin/view/Main/PostfixCmd HTTP/1.1” 200 4173 212.92.37.62 – – [08/Mar/2004:08:33:39 -0800] “GET /twiki/bin/view/Main/PostSuper HTTP/1.1” 200 3629 64.242.88.10 – – [08/Mar/2004:08:33:51 -0800] “GET /twiki/bin/view/Main/WebPreferences?rev=r1.14 HTTP/1.1” 200 8820 212.92.37.62 – – [08/Mar/2004:08:33:52 -0800] “GET /twiki/bin/view/Main/SideBar HTTP/1.1” 200 3972 212.92.37.62 – – [08/Mar/2004:08:33:57 -0800] “GET /twiki/bin/view/Main/DCCGraphs HTTP/1.1” 200 5402 212.92.37.62 – – [08/Mar/2004:08:34:09 -0800] “GET /SpamAssassin.html HTTP/1.1” 200 7368 64.242.88.10 – – [08/Mar/2004:08:34:53 -0800] “GET /twiki/bin/rdiff/TWiki/TWikiHistory?rev1=1.8&rev2=1.7 HTTP/1.1” 200 4972 64.242.88.10 – – [08/Mar/2004:08:36:05 -0800] “GET /twiki/bin/view/TWiki/ChangePassword?rev=r1.3 HTTP/1.1” 200 5229 92-moc-6.acn.waw.pl – – [08/Mar/2004:08:37:14 -0800] “GET /twiki/bin/view/Main/SpamAssassinAndPostFix HTTP/1.1” 200 4034 92-moc-6.acn.waw.pl – – [08/Mar/2004:08:37:14 -0800] “GET /twiki/pub/TWiki/TWikiLogos/twikiRobot46x50.gif HTTP/1.1” 304 – 92-moc-6.acn.waw.pl – – [08/Mar/2004:08:37:17 -0800] “GET /twiki/bin/view/Main/SpamAssassinTaggingOnly HTTP/1.1” 200 5691 64.242.88.10 – – [08/Mar/2004:08:37:23 -0800] “GET /twiki/bin/attach/TWiki/HaroldGottschalk HTTP/1.1” 401 12846 66.213.206.2 – – [08/Mar/2004:08:37:53 -0800] “GET / HTTP/1.1” 200 3169 64.242.88.10 – – [08/Mar/2004:08:40:15 -0800] “GET /LateEmail.html HTTP/1.1” 200 7649 64.242.88.10 – – [08/Mar/2004:08:52:13 -0800] “GET /twiki/bin/view/TWiki/TextFormattingRules?rev=r1.15 HTTP/1.1” 200 16746 64.242.88.10 – – [08/Mar/2004:08:53:17 -0800] “GET /twiki/bin/view/TWiki/TWikiTutorial HTTP/1.1” 200 14485 64.242.88.10 – – [08/Mar/2004:08:55:12 -0800] “GET /mailman/private/dentalstudies/ HTTP/1.1” 200 1558 spot.nnacorp.com – – [08/Mar/2004:09:02:14 -0800] “GET / HTTP/1.1” 200 3169 spot.nnacorp.com – – [08/Mar/2004:09:02:21 -0800] “GET /twiki/bin/view/Main/WebHome HTTP/1.1” 200 10419 spot.nnacorp.com – – [08/Mar/2004:09:02:21 -0800] “GET /twiki/pub/TWiki/TWikiLogos/twikiRobot46x50.gif HTTP/1.1” 200 2877 10.0.0.153 – – [08/Mar/2004:09:02:29 -0800] “GET / HTTP/1.1” 304 – 10.0.0.153 – – [08/Mar/2004:09:02:31 -0800] “GET /cgi-bin/mailgraph2.cgi HTTP/1.1” 200 2987 10.0.0.153 – – [08/Mar/2004:09:02:32 -0800] “GET /cgi-bin/mailgraph.cgi/mailgraph_0_err.png HTTP/1.1” 200 7326 10.0.0.153 – – [08/Mar/2004:09:02:32 -0800] “GET /cgi-bin/mailgraph.cgi/mailgraph_0.png HTTP/1.1” 200 7927 10.0.0.153 – – [08/Mar/2004:09:02:32 -0800] “GET /cgi-bin/mailgraph.cgi/mailgraph_1_err.png HTTP/1.1” 200 7182 10.0.0.153 – – [08/Mar/2004:09:02:32 -0800] “GET /cgi-bin/mailgraph.cgi/mailgraph_1.png HTTP/1.1” 200 8866 10.0.0.153 – – [08/Mar/2004:09:02:32 -0800] “GET /cgi-bin/mailgraph.cgi/mailgraph_2.png HTTP/1.1” 200 9307 10.0.0.153 – – [08/Mar/2004:09:02:32 -0800] “GET /cgi-bin/mailgraph.cgi/mailgraph_2_err.png HTTP/1.1” 200 6805 10.0.0.153 – – [08/Mar/2004:09:02:32 -0800] “GET /cgi-bin/mailgraph.cgi/mailgraph_3.png HTTP/1.1” 200 6596 10.0.0.153 – – [08/Mar/2004:09:02:32 -0800] “GET /cgi-bin/mailgraph.cgi/mailgraph_3_err.png HTTP/1.1” 200 5499 spot.nnacorp.com – – [08/Mar/2004:09:02:54 -0800] “GET /twiki/bin/view/Main/TWikiUsers HTTP/1.1” 200 6697 spot.nnacorp.com – – [08/Mar/2004:09:02:54 -0800] “GET /twiki/pub/TWiki/TWikiLogos/twikiRobot46x50.gif HTTP/1.1” 304 – 64.242.88.10 – – [08/Mar/2004:09:03:18 -0800] “GET /dccstats/index.html HTTP/1.1” 200 2955 64.242.88.10 – – [08/Mar/2004:09:05:54 -0800] “GET /twiki/bin/edit/Sandbox/TestTopic6?topicparent=Sandbox.WebHome HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:09:09:55 -0800] “GET /twiki/bin/view/TWiki/TablePlugin?skin=print HTTP/1.1” 200 1572 64.242.88.10 – – [08/Mar/2004:09:12:54 -0800] “GET /twiki/bin/search/Main/SearchResult?scope=text®ex=on&search=Spam%20*Assassin[^A-Za-z] HTTP/1.1” 200 8782 lhr003a.dhl.com – – [08/Mar/2004:09:16:26 -0800] “GET / HTTP/1.0” 200 3169 lhr003a.dhl.com – – [08/Mar/2004:09:17:16 -0800] “GET /dccstats/index.html HTTP/1.0” 200 2955 lhr003a.dhl.com – – [08/Mar/2004:09:17:17 -0800] “GET /dccstats/stats-spam.1day.png HTTP/1.0” 200 3040 lhr003a.dhl.com – – [08/Mar/2004:09:17:17 -0800] “GET /dccstats/stats-spam-ratio.1week.png HTTP/1.0” 200 2341 lhr003a.dhl.com – – [08/Mar/2004:09:17:17 -0800] “GET /dccstats/stats-spam-ratio.1day.png HTTP/1.0” 200 2271 lhr003a.dhl.com – – [08/Mar/2004:09:17:17 -0800] “GET /dccstats/stats-spam.1week.png HTTP/1.0” 200 3302 lhr003a.dhl.com – – [08/Mar/2004:09:17:17 -0800] “GET /dccstats/stats-hashes.1week.png HTTP/1.0” 200 1663 lhr003a.dhl.com – – [08/Mar/2004:09:17:17 -0800] “GET /dccstats/stats-spam.1month.png HTTP/1.0” 200 2521 lhr003a.dhl.com – – [08/Mar/2004:09:17:17 -0800] “GET /dccstats/stats-spam-ratio.1month.png HTTP/1.0” 200 1918 lhr003a.dhl.com – – [08/Mar/2004:09:17:17 -0800] “GET /dccstats/stats-hashes.1month.png HTTP/1.0” 200 1580 lhr003a.dhl.com – – [08/Mar/2004:09:17:17 -0800] “GET /dccstats/stats-spam.1year.png HTTP/1.0” 200 2202 lhr003a.dhl.com – – [08/Mar/2004:09:17:18 -0800] “GET /dccstats/stats-spam-ratio.1year.png HTTP/1.0” 200 1822 lhr003a.dhl.com – – [08/Mar/2004:09:17:18 -0800] “GET /dccstats/stats-hashes.1year.png HTTP/1.0” 200 1526 10.0.0.153 – – [08/Mar/2004:09:18:53 -0800] “GET / HTTP/1.1” 304 – 10.0.0.153 – – [08/Mar/2004:09:18:56 -0800] “GET /dccstats/index.html HTTP/1.1” 304 – 10.0.0.153 – – [08/Mar/2004:09:18:57 -0800] “GET /dccstats/stats-spam.1day.png HTTP/1.1” 200 3040 10.0.0.153 – – [08/Mar/2004:09:18:57 -0800] “GET /dccstats/stats-spam-ratio.1day.png HTTP/1.1” 200 2271 10.0.0.153 – – [08/Mar/2004:09:18:57 -0800] “GET /dccstats/stats-spam-ratio.1week.png HTTP/1.1” 200 2341 10.0.0.153 – – [08/Mar/2004:09:18:57 -0800] “GET /dccstats/stats-spam.1week.png HTTP/1.1” 200 3302 10.0.0.153 – – [08/Mar/2004:09:18:57 -0800] “GET /dccstats/stats-hashes.1month.png HTTP/1.1” 200 1580 10.0.0.153 – – [08/Mar/2004:09:18:57 -0800] “GET /dccstats/stats-spam-ratio.1month.png HTTP/1.1” 200 1918 10.0.0.153 – – [08/Mar/2004:09:18:57 -0800] “GET /dccstats/stats-hashes.1week.png HTTP/1.1” 200 1663 10.0.0.153 – – [08/Mar/2004:09:18:57 -0800] “GET /dccstats/stats-spam.1year.png HTTP/1.1” 200 2202 10.0.0.153 – – [08/Mar/2004:09:18:57 -0800] “GET /dccstats/stats-spam.1month.png HTTP/1.1” 200 2521 10.0.0.153 – – [08/Mar/2004:09:18:57 -0800] “GET /dccstats/stats-spam-ratio.1year.png HTTP/1.1” 200 1822 10.0.0.153 – – [08/Mar/2004:09:18:57 -0800] “GET /dccstats/stats-hashes.1year.png HTTP/1.1” 200 1526 64.242.88.10 – – [08/Mar/2004:09:23:03 -0800] “GET /twiki/bin/view/TWiki/SearchDoesNotWork?rev=r1.1 HTTP/1.1” 200 3981 64.242.88.10 – – [08/Mar/2004:09:25:42 -0800] “GET /twiki/bin/search/TWiki/SearchResult?scope=text®ex=on&search=TWiki%20*FAQ[^A-Za-z] HTTP/1.1” 200 12083 lj1036.inktomisearch.com – – [08/Mar/2004:09:29:35 -0800] “GET /robots.txt HTTP/1.0” 200 68 lj1027.inktomisearch.com – – [08/Mar/2004:09:29:36 -0800] “GET /twiki/bin/oops/Know/WinDoze95Crash HTTP/1.0” 200 209 pool-68-160-195-60.ny325.east.verizon.net – – [08/Mar/2004:09:30:10 -0800] “GET /twiki/bin/view/Main/WebHome HTTP/1.1” 200 10419 pool-68-160-195-60.ny325.east.verizon.net – – [08/Mar/2004:09:30:11 -0800] “GET /favicon.ico HTTP/1.1” 200 1078 pool-68-160-195-60.ny325.east.verizon.net – – [08/Mar/2004:09:30:11 -0800] “GET /twiki/pub/TWiki/TWikiLogos/twikiRobot46x50.gif HTTP/1.1” 200 2877 64.242.88.10 – – [08/Mar/2004:09:30:40 -0800] “GET /twiki/bin/view/TWiki/WebSearch?rev=r1.10 HTTP/1.1” 200 9419 64.242.88.10 – – [08/Mar/2004:09:32:32 -0800] “GET /twiki/bin/rdiff/TWiki/TWikiDownload HTTP/1.1” 200 5933 64.242.88.10 – – [08/Mar/2004:09:33:46 -0800] “GET /twiki/bin/view/Main/SideBar?rev=1.1 HTTP/1.1” 200 3564 lj1156.inktomisearch.com – – [08/Mar/2004:09:33:53 -0800] “GET /twiki/bin/oops/TWiki/TWikiAccessControl HTTP/1.0” 200 209 64.242.88.10 – – [08/Mar/2004:09:34:58 -0800] “GET /twiki/bin/rdiff/TWiki/TWikiFAQ HTTP/1.1” 200 43115 64.242.88.10 – – [08/Mar/2004:09:36:35 -0800] “GET /twiki/bin/edit/TWiki/WebNotification?topicparent=TWiki.TWikiUpgradeTo01May2000 HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:09:38:11 -0800] “GET /twiki/bin/view/Main/TWikiGuest?rev=r1.3 HTTP/1.1” 200 4604 lj1156.inktomisearch.com – – [08/Mar/2004:09:40:30 -0800] “GET /twiki/bin/view/TWiki/d43 HTTP/1.0” 200 4619 64.242.88.10 – – [08/Mar/2004:09:41:15 -0800] “GET /twiki/bin/edit/Main/Export_environment?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:09:42:27 -0800] “GET /twiki/bin/rdiff/Know/ReadmeFirst?rev1=1.6&rev2=1.5 HTTP/1.1” 200 4187 64.242.88.10 – – [08/Mar/2004:09:45:15 -0800] “GET /twiki/bin/search/TWiki/SearchResult?scope=text®ex=on&search=Change%20*Password[^A-Za-z] HTTP/1.1” 200 7226 64.242.88.10 – – [08/Mar/2004:10:01:06 -0800] “GET /twiki/bin/view/TWiki/TWikiTopics?rev=r1.4 HTTP/1.1” 200 5171 64.242.88.10 – – [08/Mar/2004:10:05:40 -0800] “GET /twiki/bin/view/TWiki/WebSearch?rev=r1.9 HTTP/1.1” 200 9469 lj1164.inktomisearch.com – – [08/Mar/2004:10:06:28 -0800] “GET /twiki/bin/view/Main/DCCGraphs HTTP/1.0” 200 5383 64.242.88.10 – – [08/Mar/2004:10:08:02 -0800] “GET /twiki/bin/rename/TWiki/DefaultPlugin HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:10:09:52 -0800] “GET /twiki/bin/view/Main/TWikiGuest?rev=r1.1 HTTP/1.1” 200 3763 64.242.88.10 – – [08/Mar/2004:10:14:46 -0800] “GET /twiki/bin/edit/TWiki/TWikiRegistration?t=1078670224 HTTP/1.1” 401 12851 64.242.88.10 – – [08/Mar/2004:10:16:52 -0800] “GET /twiki/bin/view/Main/TWikiAdminGroup?rev=1.6 HTTP/1.1” 200 4462 64.242.88.10 – – [08/Mar/2004:10:18:21 -0800] “GET /twiki/bin/rdiff/TWiki/WikiSyntax HTTP/1.1” 200 59454 64.242.88.10 – – [08/Mar/2004:10:21:21 -0800] “GET /twiki/bin/oops/TWiki/WikiCulture?template=oopsmore¶m1=1.8¶m2=1.8 HTTP/1.1” 200 11245 64.242.88.10 – – [08/Mar/2004:10:30:56 -0800] “GET /twiki/bin/view/TWiki/WikiTopic HTTP/1.1” 200 4646 64.242.88.10 – – [08/Mar/2004:10:32:18 -0800] “GET /twiki/bin/rdiff/TWiki/WebPreferences HTTP/1.1” 200 36410 64.242.88.10 – – [08/Mar/2004:10:34:55 -0800] “GET /twiki/bin/view/TWiki/WebSearch?skin=print HTTP/1.1” 200 7196 64.242.88.10 – – [08/Mar/2004:10:40:09 -0800] “GET /twiki/bin/view/TWiki/TWikiTopics?rev=r1.7 HTTP/1.1” 200 8540 64.242.88.10 – – [08/Mar/2004:10:45:25 -0800] “GET /twiki/bin/search/Main/SearchResult?scope=text®ex=on&search=Thanadon%20*Somdee[^A-Za-z] HTTP/1.1” 200 4287 64.242.88.10 – – [08/Mar/2004:10:46:34 -0800] “GET /twiki/bin/view/TWiki/TWikiUpgradeTo01May2000?rev=1.3 HTTP/1.1” 200 7441 10.0.0.153 – – [08/Mar/2004:10:48:02 -0800] “GET / HTTP/1.1” 304 – 10.0.0.153 – – [08/Mar/2004:10:48:05 -0800] “GET /cgi-bin/mailgraph2.cgi HTTP/1.1” 200 2987 10.0.0.153 – – [08/Mar/2004:10:48:06 -0800] “GET /cgi-bin/mailgraph.cgi/mailgraph_0_err.png HTTP/1.1” 200 7213 10.0.0.153 – – [08/Mar/2004:10:48:06 -0800] “GET /cgi-bin/mailgraph.cgi/mailgraph_0.png HTTP/1.1” 200 7970 10.0.0.153 – – [08/Mar/2004:10:48:06 -0800] “GET /cgi-bin/mailgraph.cgi/mailgraph_1_err.png HTTP/1.1” 200 7254 10.0.0.153 – – [08/Mar/2004:10:48:06 -0800] “GET /cgi-bin/mailgraph.cgi/mailgraph_1.png HTTP/1.1” 200 8821 10.0.0.153 – – [08/Mar/2004:10:48:06 -0800] “GET /cgi-bin/mailgraph.cgi/mailgraph_2_err.png HTTP/1.1” 200 6866 10.0.0.153 – – [08/Mar/2004:10:48:06 -0800] “GET /cgi-bin/mailgraph.cgi/mailgraph_2.png HTTP/1.1” 200 9312 10.0.0.153 – – [08/Mar/2004:10:48:06 -0800] “GET /cgi-bin/mailgraph.cgi/mailgraph_3.png HTTP/1.1” 200 6596 10.0.0.153 – – [08/Mar/2004:10:48:06 -0800] “GET /cgi-bin/mailgraph.cgi/mailgraph_3_err.png HTTP/1.1” 200 5499 64.242.88.10 – – [08/Mar/2004:10:48:19 -0800] “GET /twiki/bin/edit/Main/Max_use?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12846 10.0.0.153 – – [08/Mar/2004:10:48:37 -0800] “GET /dccstats/index.html HTTP/1.1” 304 – 10.0.0.153 – – [08/Mar/2004:10:48:37 -0800] “GET /dccstats/stats-spam.1day.png HTTP/1.1” 200 3080 10.0.0.153 – – [08/Mar/2004:10:48:37 -0800] “GET /dccstats/stats-spam-ratio.1day.png HTTP/1.1” 200 2224 10.0.0.153 – – [08/Mar/2004:10:48:37 -0800] “GET /dccstats/stats-spam.1week.png HTTP/1.1” 200 3299 10.0.0.153 – – [08/Mar/2004:10:48:37 -0800] “GET /dccstats/stats-spam.1month.png HTTP/1.1” 200 2481 10.0.0.153 – – [08/Mar/2004:10:48:37 -0800] “GET /dccstats/stats-hashes.1week.png HTTP/1.1″ 200 1667 10.0.0.153 – – [08/Mar/2004:10:48:37 -0800] “GET /dccstats/stats-spam-ratio.1week.png HTTP/1.1” 200 2346 10.0.0.153 – – [08/Mar/2004:10:48:37 -0800] “GET /dccstats/stats-spam-ratio.1month.png HTTP/1.1” 200 1872 10.0.0.153 – – [08/Mar/2004:10:48:37 -0800] “GET /dccstats/stats-hashes.1month.png HTTP/1.1” 200 1585 10.0.0.153 – – [08/Mar/2004:10:48:37 -0800] “GET /dccstats/stats-spam.1year.png HTTP/1.1” 200 2202 10.0.0.153 – – [08/Mar/2004:10:48:37 -0800] “GET /dccstats/stats-spam-ratio.1year.png HTTP/1.1” 200 1833 10.0.0.153 – – [08/Mar/2004:10:48:37 -0800] “GET /dccstats/stats-hashes.1year.png HTTP/1.1” 200 1521 64.242.88.10 – – [08/Mar/2004:10:50:05 -0800] “GET /twiki/bin/rdiff/TWiki/WebRss HTTP/1.1” 200 21483 64.242.88.10 – – [08/Mar/2004:11:03:34 -0800] “GET /twiki/bin/rdiff/TWiki/WikiCulture?rev1=1.8&rev2=1.7 HTTP/1.1” 200 5326 128.227.88.79 – – [08/Mar/2004:11:06:20 -0800] “GET /twiki/bin/view/Main/SpamAssassinAndPostFix HTTP/1.1” 200 4034 128.227.88.79 – – [08/Mar/2004:11:06:20 -0800] “GET /twiki/pub/TWiki/TWikiLogos/twikiRobot46x50.gif HTTP/1.1” 304 – 128.227.88.79 – – [08/Mar/2004:11:06:28 -0800] “GET /twiki/bin/view/Main/SpamAssassinTaggingOnly HTTP/1.1” 200 5691 64.242.88.10 – – [08/Mar/2004:11:09:24 -0800] “GET /twiki/bin/edit/Main/Lmtp_mail_timeout?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12846 128.227.88.79 – – [08/Mar/2004:11:10:09 -0800] “GET /twiki/bin/view/Main/WebHome HTTP/1.1” 200 10419 128.227.88.79 – – [08/Mar/2004:11:10:24 -0800] “GET /twiki/bin/view/Main/PostfixCommands HTTP/1.1” 200 4016 128.227.88.79 – – [08/Mar/2004:11:11:04 -0800] “GET /twiki/bin/view/Main/WebHome HTTP/1.1” 200 10419 128.227.88.79 – – [08/Mar/2004:11:11:10 -0800] “GET /twiki/bin/view/Main/TWikiGroups HTTP/1.1” 200 4816 128.227.88.79 – – [08/Mar/2004:11:11:15 -0800] “GET /twiki/bin/view/Main/TWikiAdminGroup HTTP/1.1” 200 4175 128.227.88.79 – – [08/Mar/2004:11:11:26 -0800] “GET /twiki/bin/view/Main/WebHome HTTP/1.1” 200 10419 64.242.88.10 – – [08/Mar/2004:11:11:51 -0800] “GET /twiki/bin/edit/Main/TWikiGuest?t=1078713282 HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:11:15:51 -0800] “GET /twiki/bin/rdiff/TWiki/AdminSkillsAssumptions HTTP/1.1” 200 10368 64.242.88.10 – – [08/Mar/2004:11:17:49 -0800] “GET /twiki/bin/view/Sandbox/WebHome?rev=r1.3 HTTP/1.1” 200 8708 64.242.88.10 – – [08/Mar/2004:11:19:43 -0800] “GET /twiki/bin/edit/TWiki/WikiNotation?t=1078726052 HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:11:24:12 -0800] “GET /twiki/bin/search/TWiki/SearchResult?scope=text®ex=on&search=Wiki%20*Notation[^A-Za-z] HTTP/1.1” 200 6558 64.242.88.10 – – [08/Mar/2004:11:25:16 -0800] “GET /twiki/bin/oops/TWiki/WikiNotation?template=oopsmore¶m1=1.3¶m2=1.3 HTTP/1.1” 200 11263 10.0.0.153 – – [08/Mar/2004:11:40:41 -0800] “GET /cgi-bin/mailgraph2.cgi HTTP/1.1” 200 2987 10.0.0.153 – – [08/Mar/2004:11:40:42 -0800] “GET /cgi-bin/mailgraph.cgi/mailgraph_0_err.png HTTP/1.1” 200 7226 10.0.0.153 – – [08/Mar/2004:11:40:42 -0800] “GET /cgi-bin/mailgraph.cgi/mailgraph_0.png HTTP/1.1” 200 8055 10.0.0.153 – – [08/Mar/2004:11:40:42 -0800] “GET /cgi-bin/mailgraph.cgi/mailgraph_1.png HTTP/1.1” 200 8787 10.0.0.153 – – [08/Mar/2004:11:40:42 -0800] “GET /cgi-bin/mailgraph.cgi/mailgraph_1_err.png HTTP/1.1” 200 7088 10.0.0.153 – – [08/Mar/2004:11:40:42 -0800] “GET /cgi-bin/mailgraph.cgi/mailgraph_2_err.png HTTP/1.1” 200 6866 10.0.0.153 – – [08/Mar/2004:11:40:42 -0800] “GET /cgi-bin/mailgraph.cgi/mailgraph_3.png HTTP/1.1” 200 6596 10.0.0.153 – – [08/Mar/2004:11:40:42 -0800] “GET /cgi-bin/mailgraph.cgi/mailgraph_2.png HTTP/1.1” 200 9312 10.0.0.153 – – [08/Mar/2004:11:40:42 -0800] “GET /cgi-bin/mailgraph.cgi/mailgraph_3_err.png HTTP/1.1” 200 5499 64.242.88.10 – – [08/Mar/2004:11:41:14 -0800] “GET /mailman/admin/artsscience HTTP/1.1” 200 2125 64.242.88.10 – – [08/Mar/2004:11:43:17 -0800] “GET /twiki/bin/search/Main/?scope=topic®ex=on&search=^d HTTP/1.1” 200 5036 64.242.88.10 – – [08/Mar/2004:11:45:08 -0800] “GET /twiki/bin/edit/TWiki/TWikiCodevFeatureToDo?topicparent=TWiki.TWikiHistory HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:11:47:52 -0800] “GET /twiki/bin/rename/TWiki/ResetPassword HTTP/1.1” 401 12851 64.242.88.10 – – [08/Mar/2004:11:49:23 -0800] “GET /twiki/bin/edit/Main/Fast_flush_domains?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:11:51:20 -0800] “GET /twiki/bin/edit/Main/SpamAssassin?t=1078709979 HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:11:56:19 -0800] “GET /twiki/bin/view/TWiki/TWikiTopics?rev=r1.10 HTTP/1.1” 200 14650 64.242.88.10 – – [08/Mar/2004:11:57:28 -0800] “GET /twiki/bin/view/TWiki/FileAttribute?rev=r1.2 HTTP/1.1” 200 3949 64.242.88.10 – – [08/Mar/2004:12:00:26 -0800] “GET /twiki/bin/rdiff/TWiki/TWikiEnhancementRequests HTTP/1.1” 200 10417 64.242.88.10 – – [08/Mar/2004:12:06:03 -0800] “GET /twiki/bin/search/TWiki/SearchResult?scope=text®ex=on&search=Kevin%20*Kinnell[^A-Za-z] HTTP/1.1” 200 4536 10.0.0.153 – – [08/Mar/2004:12:06:29 -0800] “GET /cgi-bin/mailgraph2.cgi HTTP/1.1” 200 2987 10.0.0.153 – – [08/Mar/2004:12:06:29 -0800] “GET /cgi-bin/mailgraph.cgi/mailgraph_0_err.png HTTP/1.1” 200 7192 10.0.0.153 – – [08/Mar/2004:12:06:29 -0800] “GET /cgi-bin/mailgraph.cgi/mailgraph_0.png HTTP/1.1” 200 8081 10.0.0.153 – – [08/Mar/2004:12:06:29 -0800] “GET /cgi-bin/mailgraph.cgi/mailgraph_1.png HTTP/1.1” 200 9065 10.0.0.153 – – [08/Mar/2004:12:06:29 -0800] “GET /cgi-bin/mailgraph.cgi/mailgraph_1_err.png HTTP/1.1” 200 7206 10.0.0.153 – – [08/Mar/2004:12:06:29 -0800] “GET /cgi-bin/mailgraph.cgi/mailgraph_2.png HTTP/1.1” 200 9312 10.0.0.153 – – [08/Mar/2004:12:06:29 -0800] “GET /cgi-bin/mailgraph.cgi/mailgraph_2_err.png HTTP/1.1” 200 6866 10.0.0.153 – – [08/Mar/2004:12:06:29 -0800] “GET /cgi-bin/mailgraph.cgi/mailgraph_3.png HTTP/1.1” 200 6596 10.0.0.153 – – [08/Mar/2004:12:06:29 -0800] “GET /cgi-bin/mailgraph.cgi/mailgraph_3_err.png HTTP/1.1” 200 5499 64.242.88.10 – – [08/Mar/2004:12:07:13 -0800] “GET /twiki/bin/view/TWiki/FileAttribute?rev=1.2 HTTP/1.1” 200 3949 64.242.88.10 – – [08/Mar/2004:12:08:32 -0800] “GET /twiki/bin/view/TWiki/WikiNotation?skin=print HTTP/1.1” 200 1435 64.242.88.10 – – [08/Mar/2004:12:10:39 -0800] “GET /twiki/bin/rdiff/TWiki/TWikiPlannedFeatures HTTP/1.1” 200 10577 64.242.88.10 – – [08/Mar/2004:12:12:50 -0800] “GET /mailman/admin/deans HTTP/1.1” 200 2080 64.242.88.10 – – [08/Mar/2004:12:15:36 -0800] “GET /pipermail/webber/ HTTP/1.1” 200 1161 64.242.88.10 – – [08/Mar/2004:12:20:18 -0800] “GET /twiki/bin/view/Main/PostSuper?rev=1.1 HTTP/1.1” 200 3629 64.242.88.10 – – [08/Mar/2004:12:25:47 -0800] “GET /twiki/bin/view/Main/WebPreferences?rev=1.13 HTTP/1.1” 200 8770 64.242.88.10 – – [08/Mar/2004:12:28:09 -0800] “GET /twiki/bin/edit/Main/Mailq_path?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:12:31:32 -0800] “GET /twiki/bin/view/TWiki/WebHome?rev=r1.49 HTTP/1.1” 200 12993 64.242.88.10 – – [08/Mar/2004:12:33:09 -0800] “GET /twiki/bin/view/TWiki/TWikiHistory?rev=r1.49 HTTP/1.1” 200 42243 64.242.88.10 – – [08/Mar/2004:12:39:34 -0800] “GET /twiki/bin/rdiff/TWiki/TWikiDocGraphics?rev1=1.11&rev2=1.10 HTTP/1.1” 200 6551 64.242.88.10 – – [08/Mar/2004:12:40:36 -0800] “GET /twiki/bin/view/TWiki/WebHome?rev=r1.47 HTTP/1.1” 200 12819 64.242.88.10 – – [08/Mar/2004:12:42:04 -0800] “GET /twiki/bin/view/Sandbox/WebStatistics HTTP/1.1” 200 6063 64.242.88.10 – – [08/Mar/2004:12:43:08 -0800] “GET /pipermail/gisgrad/ HTTP/1.1” 200 1118 64.242.88.10 – – [08/Mar/2004:12:45:13 -0800] “GET /mailman/admin/webber HTTP/1.1” 200 2089 64.242.88.10 – – [08/Mar/2004:12:47:42 -0800] “GET /twiki/bin/view/Main/WebPreferences?rev=1.14 HTTP/1.1” 200 8820 64.242.88.10 – – [08/Mar/2004:12:55:18 -0800] “GET /twiki/bin/view/TWiki/KevinKinnell?rev=1.4 HTTP/1.1” 200 3730 64.242.88.10 – – [08/Mar/2004:12:58:39 -0800] “GET /twiki/bin/search/Main/?search=\.*&scope=topic&order=modified&reverse=on®ex=on&nosearch=on&limit=800 HTTP/1.1” 200 43915 market-mail.panduit.com – – [08/Mar/2004:12:58:50 -0800] “GET / HTTP/1.0” 200 3169 market-mail.panduit.com – – [08/Mar/2004:12:58:50 -0800] “GET /favicon.ico HTTP/1.0” 200 1078 market-mail.panduit.com – – [08/Mar/2004:12:59:18 -0800] “GET /razor.html HTTP/1.0” 200 2869 market-mail.panduit.com – – [08/Mar/2004:12:59:34 -0800] “GET /dccstats/index.html HTTP/1.0” 200 2955 market-mail.panduit.com – – [08/Mar/2004:12:59:37 -0800] “GET /dccstats/stats-spam.1day.png HTTP/1.0” 200 3095 market-mail.panduit.com – – [08/Mar/2004:12:59:37 -0800] “GET /dccstats/stats-spam-ratio.1day.png HTTP/1.0” 200 2272 market-mail.panduit.com – – [08/Mar/2004:12:59:37 -0800] “GET /dccstats/stats-spam.1week.png HTTP/1.0” 200 3279 market-mail.panduit.com – – [08/Mar/2004:12:59:37 -0800] “GET /dccstats/stats-spam-ratio.1week.png HTTP/1.0” 200 2349 market-mail.panduit.com – – [08/Mar/2004:12:59:37 -0800] “GET /dccstats/stats-hashes.1week.png HTTP/1.0” 200 1659 market-mail.panduit.com – – [08/Mar/2004:12:59:37 -0800] “GET /dccstats/stats-spam.1month.png HTTP/1.0” 200 2542 market-mail.panduit.com – – [08/Mar/2004:12:59:37 -0800] “GET /dccstats/stats-spam-ratio.1month.png HTTP/1.0” 200 1927 market-mail.panduit.com – – [08/Mar/2004:12:59:37 -0800] “GET /dccstats/stats-hashes.1month.png HTTP/1.0” 200 1580 market-mail.panduit.com – – [08/Mar/2004:12:59:37 -0800] “GET /dccstats/stats-spam.1year.png HTTP/1.0” 200 2201 market-mail.panduit.com – – [08/Mar/2004:12:59:37 -0800] “GET /dccstats/stats-spam-ratio.1year.png HTTP/1.0” 200 1829 market-mail.panduit.com – – [08/Mar/2004:12:59:37 -0800] “GET /dccstats/stats-hashes.1year.png HTTP/1.0” 200 1524 market-mail.panduit.com – – [08/Mar/2004:12:59:55 -0800] “GET /DCC.html HTTP/1.0” 200 2878 market-mail.panduit.com – – [08/Mar/2004:13:00:12 -0800] “GET /twiki/bin/view/Main/WebHome HTTP/1.0” 200 10392 market-mail.panduit.com – – [08/Mar/2004:13:00:12 -0800] “GET /favicon.ico HTTP/1.0” 200 1078 market-mail.panduit.com – – [08/Mar/2004:13:00:13 -0800] “GET /twiki/pub/TWiki/TWikiLogos/twikiRobot46x50.gif HTTP/1.0” 200 2877 market-mail.panduit.com – – [08/Mar/2004:13:00:20 -0800] “GET /twiki/bin/view/Main/DCC HTTP/1.0” 200 4377 market-mail.panduit.com – – [08/Mar/2004:13:00:27 -0800] “GET /twiki/bin/view/Main/DCCAndPostFix HTTP/1.0” 200 5234 64.242.88.10 – – [08/Mar/2004:13:00:40 -0800] “GET /twiki/bin/oops/TWiki/HaroldGottschalk?template=oopsmore¶m1=1.3¶m2=1.3 HTTP/1.1” 200 11335 market-mail.panduit.com – – [08/Mar/2004:13:01:27 -0800] “GET /twiki/bin/view/Main/PostfixCommands HTTP/1.0” 200 4004 market-mail.panduit.com – – [08/Mar/2004:13:01:29 -0800] “GET /twiki/bin/view/Main/PostfixCmd HTTP/1.0” 200 4154 market-mail.panduit.com – – [08/Mar/2004:13:01:35 -0800] “GET /twiki/bin/edit/Main/PostConf?topicparent=Main.PostfixCommands HTTP/1.0” 401 12816 market-mail.panduit.com – – [08/Mar/2004:13:01:38 -0800] “GET /twiki/pub/TWiki/TWikiDocGraphics/help.gif HTTP/1.0” 200 130 64.242.88.10 – – [08/Mar/2004:13:01:42 -0800] “GET /twiki/bin/search/TWiki/SearchResult?scope=text®ex=on&search=John%20*Talintyre[^A-Za-z] HTTP/1.1” 200 8066 market-mail.panduit.com – – [08/Mar/2004:13:01:42 -0800] “GET /twiki/bin/view/Main/PostSuper HTTP/1.0” 200 3617 market-mail.panduit.com – – [08/Mar/2004:13:01:55 -0800] “GET /twiki/bin/view/Main/RelayGateway HTTP/1.0” 200 4213 market-mail.panduit.com – – [08/Mar/2004:13:02:03 -0800] “GET /twiki/bin/view/Main/VerifingGatway HTTP/1.0” 200 4731 market-mail.panduit.com – – [08/Mar/2004:13:02:16 -0800] “GET /twiki/bin/view/Main/Relay_Domains HTTP/1.0” 200 4564 64.242.88.10 – – [08/Mar/2004:13:04:14 -0800] “GET /twiki/bin/attach/Main/TWikiGuest HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:13:07:16 -0800] “GET /twiki/bin/view/Main/NicholasLee?rev=1.1 HTTP/1.1” 200 4456 64.242.88.10 – – [08/Mar/2004:13:08:17 -0800] “GET /twiki/bin/attach/TWiki/TWikiDocGraphics?filename=pencil.gif&revInfo=1 HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:13:12:54 -0800] “GET /twiki/bin/rdiff/TWiki/WebSiteTools?rev1=1.2&rev2=1.1 HTTP/1.1” 200 6640 64.242.88.10 – – [08/Mar/2004:13:15:03 -0800] “GET /twiki/bin/view/TWiki/TWikiHistory?rev=r1.55 HTTP/1.1” 200 44652 64.242.88.10 – – [08/Mar/2004:13:16:11 -0800] “GET /twiki/bin/attach/Main/SpamAssassinAndPostFix HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:13:17:23 -0800] “GET /mailman/private/artsscience/ HTTP/1.1” 200 1552 64.242.88.10 – – [08/Mar/2004:13:18:57 -0800] “GET /twiki/bin/search/TWiki/?scope=topic®ex=on&search=^l HTTP/1.1” 200 2937 64.242.88.10 – – [08/Mar/2004:13:24:49 -0800] “GET /twiki/bin/rdiff/Main/RelayGateway?rev1=1.3&rev2=1.2 HTTP/1.1” 200 5181 64.242.88.10 – – [08/Mar/2004:13:29:37 -0800] “GET /twiki/bin/rdiff/Main/RelayGateway?rev1=1.2&rev2=1.1 HTTP/1.1” 200 6029 64.242.88.10 – – [08/Mar/2004:13:31:16 -0800] “GET /twiki/bin/rdiff/TWiki/WikiReferences?rev1=1.2&rev2=1.1 HTTP/1.1” 200 10024 64.242.88.10 – – [08/Mar/2004:13:32:35 -0800] “GET /twiki/bin/view/Main/WebPreferences?rev=r1.9 HTTP/1.1” 200 7511 64.242.88.10 – – [08/Mar/2004:13:35:02 -0800] “GET /twiki/bin/edit/TWiki/WebSiteTools?t=1078731408 HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:13:36:06 -0800] “GET /twiki/bin/attach/TWiki/TWikiDocGraphics?filename=viewtopic.gif&revInfo=1 HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:13:38:39 -0800] “GET /twiki/bin/view/TWiki/SvenDowideit?rev=r1.1 HTTP/1.1” 200 3564 64.242.88.10 – – [08/Mar/2004:13:45:46 -0800] “GET /twiki/bin/edit/Main/Ignore_mx_lookup_error?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:13:48:06 -0800] “GET /twiki/bin/oops/Main/DCCAndPostFix?template=oopsmore¶m1=1.2¶m2=1.2 HTTP/1.1” 200 6602 64.242.88.10 – – [08/Mar/2004:13:49:47 -0800] “GET /twiki/bin/view/TWiki/TWikiHistory?rev=r1.54 HTTP/1.1” 200 44644 64.242.88.10 – – [08/Mar/2004:13:55:51 -0800] “GET /twiki/bin/edit/Main/Allow_min_user?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:13:56:52 -0800] “GET /twiki/bin/edit/TWiki/KevinKinnell?t=1078692967 HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:13:57:52 -0800] “GET /pipermail/fcd/ HTTP/1.1” 200 468 64.242.88.10 – – [08/Mar/2004:13:58:55 -0800] “GET /mailman/listinfo/mgt-157 HTTP/1.1” 200 6189 64.242.88.10 – – [08/Mar/2004:14:00:08 -0800] “GET /mailman/admin/fcd HTTP/1.1” 200 2060 64.242.88.10 – – [08/Mar/2004:14:01:36 -0800] “GET /mailman/listinfo/cnc_forestry HTTP/1.1” 200 6159 64.242.88.10 – – [08/Mar/2004:14:07:26 -0800] “GET /twiki/bin/edit/Main/Strict_8bitmime?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:14:11:28 -0800] “GET /twiki/bin/view/TWiki/WelcomeGuest?rev=r1.19 HTTP/1.1” 200 13997 64.242.88.10 – – [08/Mar/2004:14:12:49 -0800] “GET /twiki/bin/view/TWiki/TWikiFAQ?rev=1.11 HTTP/1.1” 200 11950 64.242.88.10 – – [08/Mar/2004:14:13:51 -0800] “GET /mailman/admin/gisgrad HTTP/1.1” 200 2093 64.242.88.10 – – [08/Mar/2004:14:15:01 -0800] “GET /mailman/admin/jjec HTTP/1.1” 200 2088 fw.aub.dk – – [08/Mar/2004:14:16:38 -0800] “GET /twiki/bin/view/Main/WebHome HTTP/1.0” 200 10392 fw.aub.dk – – [08/Mar/2004:14:16:39 -0800] “GET /twiki/pub/TWiki/TWikiLogos/twikiRobot46x50.gif HTTP/1.0” 200 2877 64.242.88.10 – – [08/Mar/2004:14:23:54 -0800] “GET /twiki/bin/oops/TWiki/RyanFreebern?template=oopsmore¶m1=1.2¶m2=1.2 HTTP/1.1” 200 11263 64.242.88.10 – – [08/Mar/2004:14:25:33 -0800] “GET /twiki/bin/rdiff/TWiki/WebChangesAlert HTTP/1.1” 200 27035 64.242.88.10 – – [08/Mar/2004:14:26:45 -0800] “GET /twiki/bin/rdiff/Sandbox/WebTopicList HTTP/1.1” 200 4319 64.242.88.10 – – [08/Mar/2004:14:27:46 -0800] “GET /twiki/bin/edit/Main/Virtual_gid_maps?topicparent=Main.ConfigurationVariables HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:14:28:46 -0800] “GET /twiki/bin/view/TWiki/NewUserTemplate?skin=print HTTP/1.1” 200 2449 64.242.88.10 – – [08/Mar/2004:14:33:56 -0800] “GET /mailman/admin HTTP/1.1” 200 6872 64.242.88.10 – – [08/Mar/2004:14:40:18 -0800] “GET /mailman/admin/ncbnpfaculty HTTP/1.1” 200 2136 64.242.88.10 – – [08/Mar/2004:14:41:22 -0800] “GET /twiki/bin/search/TWiki/SearchResult?scope=text®ex=on&search=Web%20*Topic%20*List[^A-Za-z] HTTP/1.1” 200 10700 64.242.88.10 – – [08/Mar/2004:14:42:44 -0800] “GET /twiki/bin/view/TWiki/WebSearch?rev=1.11 HTTP/1.1” 200 9419 64.242.88.10 – – [08/Mar/2004:14:43:45 -0800] “GET /twiki/bin/view/TWiki/MartinCleaver HTTP/1.1” 200 3634 64.242.88.10 – – [08/Mar/2004:14:52:51 -0800] “GET /twiki/bin/view/TWiki/WebIndex HTTP/1.1” 200 102154 64.242.88.10 – – [08/Mar/2004:14:54:56 -0800] “GET /twiki/bin/edit/Main/TokyoOffice?t=1078706364 HTTP/1.1” 401 12846 64.242.88.10 – – [08/Mar/2004:14:57:19 -0800] “GET /twiki/bin/rdiff/Main/SpamAssassinAndPostFix?rev1=1.2&rev2=1.1 HTTP/1.1” 200 5794 64.242.88.10 – – [08/Mar/2004:14:58:58 -0800] “GET /twiki/bin/rdiff/TWiki/WhatIsWikiWiki HTTP/1.1” 200 9412 64.242.88.10 – – [08/Mar/2004:15:00:07 -0800] “GET /twiki/bin/rdiff/Main/WebChanges?rev1=1.2&rev2=1.1 HTTP/1.1” 200 114220 64.242.88.10 – – [08/Mar/2004:15:01:12 -0800] “GET /twiki/bin/rdiff/TWiki/EditDoesNotIncreaseTheRevision HTTP/1.1” 200 6310 64.242.88.10 – – [08/Mar/2004:15:02:29 -0800] “GET /twiki/bin/rdiff/TWiki/WebTopicList HTTP/1.1” 200 14591 64.242.88.10 – – [08/Mar/2004:15:03:49 -0800] “GET /antivirus.html HTTP/1.1” 200 3548 64.242.88.10 – – [08/Mar/2004:15:07:41 -0800] “GET /twiki/bin/search/TWiki/SearchResult?scope=text®ex=on&search=Harold%20*Gottschalk[^A-Za-z] HTTP/1.1” 200 4412 ip-200-56-225-61-mty.marcatel.net.mx – – [08/Mar/2004:15:15:17 -0800] “GET /razor.html HTTP/1.1” 200 2869 64.242.88.10 – – [08/Mar/2004:15:16:14 -0800] “GET /twiki/bin/view/TWiki/TextFormattingRules?rev=r1.37 HTTP/1.1” 200 28922 64.242.88.10 – – [08/Mar/2004:15:17:18 -0800] “GET /twiki/bin/search/Main/?scope=topic®ex=on&search=^f HTTP/1.1” 200 3438 64.242.88.10 – – [08/Mar/2004:15:19:35 -0800] “GET /RBL.html HTTP/1.1” 200 4114 c-24-11-14-147.client.comcast.net – – [08/Mar/2004:16:54:47 -0800] “GET /razor.html HTTP/1.1” 200 2869 c-24-11-14-147.client.comcast.net – – [08/Mar/2004:16:54:47 -0800] “GET /favicon.ico HTTP/1.1” 200 1078 lj1036.inktomisearch.com – – [08/Mar/2004:17:39:00 -0800] “GET /robots.txt HTTP/1.0” 200 68 lj1168.inktomisearch.com – – [08/Mar/2004:17:39:01 -0800] “GET /twiki/bin/oops/TWiki/TWikiVariables HTTP/1.0” 200 209 calcite.rhyolite.com – – [08/Mar/2004:18:14:44 -0800] “GET /clients.html HTTP/1.1” 200 18767 acbf6930.ipt.aol.com – – [08/Mar/2004:18:20:44 -0800] “GET /RBL.html HTTP/1.1” 200 4114 acbf6930.ipt.aol.com – – [08/Mar/2004:18:20:44 -0800] “GET /LateEmail.html HTTP/1.1” 200 7649 lj1018.inktomisearch.com – – [08/Mar/2004:18:23:43 -0800] “GET /twiki/bin/oops/Know/PublicSupported HTTP/1.0” 200 209 barrie-ppp108371.sympatico.ca – – [08/Mar/2004:18:39:33 -0800] “GET /mailman/listinfo/webber HTTP/1.1” 200 6051 barrie-ppp108371.sympatico.ca – – [08/Mar/2004:18:39:35 -0800] “GET /icons/mailman.jpg HTTP/1.1” 200 2022 barrie-ppp108371.sympatico.ca – – [08/Mar/2004:18:39:35 -0800] “GET /icons/PythonPowered.png HTTP/1.1” 200 945 barrie-ppp108371.sympatico.ca – – [08/Mar/2004:18:39:36 -0800] “GET /icons/gnu-head-tiny.jpg HTTP/1.1” 200 3049 px7wh.vc.shawcable.net – – [08/Mar/2004:18:41:16 -0800] “GET /LateEmail.html HTTP/1.1” 200 7649 user-0c8hdkf.cable.mindspring.com – – [08/Mar/2004:19:08:27 -0800] “GET /twiki/bin/view/Main/WebHome HTTP/1.1” 200 10419 user-0c8hdkf.cable.mindspring.com – – [08/Mar/2004:19:08:28 -0800] “GET /twiki/pub/TWiki/TWikiLogos/twikiRobot46x50.gif HTTP/1.1” 200 2877 user-0c8hdkf.cable.mindspring.com – – [08/Mar/2004:19:08:39 -0800] “GET /twiki/bin/view/Main/RelayGateway HTTP/1.1” 200 4232 user-0c8hdkf.cable.mindspring.com – – [08/Mar/2004:19:08:52 -0800] “GET /twiki/bin/view/Main/VerifingGatway HTTP/1.1” 200 4750 user-0c8hdkf.cable.mindspring.com – – [08/Mar/2004:19:10:06 -0800] “GET /twiki/bin/view/Main/Relay_Domains HTTP/1.1” 200 4583 lj1053.inktomisearch.com – – [08/Mar/2004:19:24:42 -0800] “GET /twiki/bin/oops/Main/SpamAssassinTaggingOnly HTTP/1.0” 200 209 64.246.94.152 – – [08/Mar/2004:20:09:57 -0800] “HEAD /twiki/bin/view/Main/SpamAssassinDeleting HTTP/1.1” 200 0 ip68-228-43-49.tc.ph.cox.net – – [08/Mar/2004:20:48:18 -0800] “GET / HTTP/1.0” 200 3169 ip68-228-43-49.tc.ph.cox.net – – [08/Mar/2004:20:48:18 -0800] “GET /favicon.ico HTTP/1.0” 200 1078 ip68-228-43-49.tc.ph.cox.net – – [08/Mar/2004:20:48:25 -0800] “GET /dccstats/index.html HTTP/1.0” 200 2955 ip68-228-43-49.tc.ph.cox.net – – [08/Mar/2004:20:48:26 -0800] “GET /dccstats/stats-spam.1day.png HTTP/1.0” 200 3049 ip68-228-43-49.tc.ph.cox.net – – [08/Mar/2004:20:48:26 -0800] “GET /dccstats/stats-spam-ratio.1day.png HTTP/1.0” 200 2160 ip68-228-43-49.tc.ph.cox.net – – [08/Mar/2004:20:48:26 -0800] “GET /dccstats/stats-spam-ratio.1week.png HTTP/1.0” 200 2386 ip68-228-43-49.tc.ph.cox.net – – [08/Mar/2004:20:48:26 -0800] “GET /dccstats/stats-spam.1week.png HTTP/1.0” 200 3271 ip68-228-43-49.tc.ph.cox.net – – [08/Mar/2004:20:48:26 -0800] “GET /dccstats/stats-hashes.1week.png HTTP/1.0” 200 1687 ip68-228-43-49.tc.ph.cox.net – – [08/Mar/2004:20:48:26 -0800] “GET /dccstats/stats-spam.1month.png HTTP/1.0” 200 2482 ip68-228-43-49.tc.ph.cox.net – – [08/Mar/2004:20:48:27 -0800] “GET /dccstats/stats-spam-ratio.1month.png HTTP/1.0” 200 1914 ip68-228-43-49.tc.ph.cox.net – – [08/Mar/2004:20:48:27 -0800] “GET /dccstats/stats-hashes.1month.png HTTP/1.0” 200 1536 ip68-228-43-49.tc.ph.cox.net – – [08/Mar/2004:20:48:27 -0800] “GET /dccstats/stats-spam.1year.png HTTP/1.0” 200 2250 ip68-228-43-49.tc.ph.cox.net – – [08/Mar/2004:20:48:27 -0800] “GET /dccstats/stats-spam-ratio.1year.png HTTP/1.0” 200 1883 ip68-228-43-49.tc.ph.cox.net – – [08/Mar/2004:20:48:27 -0800] “GET /dccstats/stats-hashes.1year.png HTTP/1.0” 200 1493 ip68-228-43-49.tc.ph.cox.net – – [08/Mar/2004:20:48:48 -0800] “GET /twiki/bin/view/Main/WebHome HTTP/1.0” 200 10392 ip68-228-43-49.tc.ph.cox.net – – [08/Mar/2004:20:48:49 -0800] “GET /twiki/pub/TWiki/TWikiLogos/twikiRobot46x50.gif HTTP/1.0” 200 2877 ip68-228-43-49.tc.ph.cox.net – – [08/Mar/2004:20:48:49 -0800] “GET /favicon.ico HTTP/1.0” 200 1078 ip68-228-43-49.tc.ph.cox.net – – [08/Mar/2004:20:48:53 -0800] “GET /twiki/bin/view/Main/DCCAndPostFix HTTP/1.0” 200 5234 ip68-228-43-49.tc.ph.cox.net – – [08/Mar/2004:20:50:59 -0800] “GET /twiki/bin/view/Main/SpamAssassinAndPostFix HTTP/1.0” 200 4022 ip68-228-43-49.tc.ph.cox.net – – [08/Mar/2004:20:51:01 -0800] “GET /twiki/bin/view/Main/SpamAssassinTaggingOnly HTTP/1.0” 200 5672 ip68-228-43-49.tc.ph.cox.net – – [08/Mar/2004:20:51:51 -0800] “GET /twiki/bin/view/Main/SpamAssassin HTTP/1.0” 200 4062 ip68-228-43-49.tc.ph.cox.net – – [08/Mar/2004:20:52:01 -0800] “GET /twiki/bin/view/Main/SpamAssassin HTTP/1.0” 200 4062 proxy0.haifa.ac.il – – [08/Mar/2004:22:03:04 -0800] “GET / HTTP/1.0” 200 3169 proxy0.haifa.ac.il – – [08/Mar/2004:22:03:28 -0800] “GET /dccstats/index.html HTTP/1.0” 200 2955 proxy0.haifa.ac.il – – [08/Mar/2004:22:03:29 -0800] “GET /dccstats/stats-spam.1week.png HTTP/1.0” 200 3238 proxy0.haifa.ac.il – – [08/Mar/2004:22:03:29 -0800] “GET /dccstats/stats-spam.1day.png HTTP/1.0” 200 3032 proxy0.haifa.ac.il – – [08/Mar/2004:22:03:29 -0800] “GET /dccstats/stats-spam-ratio.1day.png HTTP/1.0” 200 2160 proxy0.haifa.ac.il – – [08/Mar/2004:22:03:29 -0800] “GET /dccstats/stats-spam-ratio.1week.png HTTP/1.0” 200 2369 proxy0.haifa.ac.il – – [08/Mar/2004:22:03:29 -0800] “GET /dccstats/stats-hashes.1week.png HTTP/1.0” 200 1671 proxy0.haifa.ac.il – – [08/Mar/2004:22:03:29 -0800] “GET /dccstats/stats-spam.1month.png HTTP/1.0” 200 2485 proxy0.haifa.ac.il – – [08/Mar/2004:22:03:29 -0800] “GET /dccstats/stats-hashes.1month.png HTTP/1.0” 200 1533 proxy0.haifa.ac.il – – [08/Mar/2004:22:03:29 -0800] “GET /dccstats/stats-spam-ratio.1month.png HTTP/1.0” 200 1906 proxy0.haifa.ac.il – – [08/Mar/2004:22:03:29 -0800] “GET /dccstats/stats-spam.1year.png HTTP/1.0” 200 2251 proxy0.haifa.ac.il – – [08/Mar/2004:22:03:29 -0800] “GET /dccstats/stats-spam-ratio.1year.png HTTP/1.0” 200 1875 proxy0.haifa.ac.il – – [08/Mar/2004:22:03:29 -0800] “GET /dccstats/stats-hashes.1year.png HTTP/1.0” 200 1483 proxy0.haifa.ac.il – – [08/Mar/2004:22:03:44 -0800] “GET /SpamAssassin.html HTTP/1.0” 200 7368 proxy0.haifa.ac.il – – [08/Mar/2004:22:03:52 -0800] “GET /razor.html HTTP/1.0” 200 2869 proxy0.haifa.ac.il – – [08/Mar/2004:22:04:09 -0800] “GET /twiki/bin/view/Main/WebHome HTTP/1.0” 200 10392 proxy0.haifa.ac.il – – [08/Mar/2004:22:04:10 -0800] “GET /twiki/pub/TWiki/TWikiLogos/twikiRobot46x50.gif HTTP/1.0” 200 2877 proxy0.haifa.ac.il – – [08/Mar/2004:22:04:24 -0800] “GET /twiki/bin/view/Main/LinksOfUse HTTP/1.0” 200 4515 proxy0.haifa.ac.il – – [08/Mar/2004:22:04:35 -0800] “GET /twiki/bin/view/Main/PostfixCommands HTTP/1.0” 200 4004 alille-251-1-2-197.w82-124.abo.wanadoo.fr – – [08/Mar/2004:22:30:01 -0800] “GET /razor.html HTTP/1.1” 200 2869 a213-84-36-192.adsl.xs4all.nl – – [08/Mar/2004:23:42:55 -0800] “GET / HTTP/1.1” 200 3169 195.246.13.119 – – [09/Mar/2004:01:48:27 -0800] “GET /twiki/bin/view/Main/WebHome HTTP/1.1” 200 10419 195.246.13.119 – – [09/Mar/2004:01:48:28 -0800] “GET /twiki/pub/TWiki/TWikiLogos/twikiRobot46x50.gif HTTP/1.1” 200 2877 195.246.13.119 – – [09/Mar/2004:01:48:28 -0800] “GET /favicon.ico HTTP/1.1” 200 1078 195.246.13.119 – – [09/Mar/2004:01:49:53 -0800] “GET /twiki/bin/view/Main/SpamAssassinAndPostFix HTTP/1.1” 200 4034 195.246.13.119 – – [09/Mar/2004:01:49:57 -0800] “GET /twiki/bin/view/Main/KevinWGagel HTTP/1.1” 200 4901 195.246.13.119 – – [09/Mar/2004:01:50:35 -0800] “GET /twiki/bin/view/Main/SpamAssassinTaggingOnly HTTP/1.1” 200 5691 195.246.13.119 – – [09/Mar/2004:01:50:54 -0800] “GET /twiki/bin/view/Main/SpamAssassinDeleting HTTP/1.1” 200 5543 195.246.13.119 – – [09/Mar/2004:01:51:17 -0800] “GET /twiki/bin/view/Main/DCCAndPostFix HTTP/1.1” 200 5253 195.246.13.119 – – [09/Mar/2004:01:51:41 -0800] “GET /twiki/bin/edit/Main/RazorAndPostFix?topicparent=Main.WebHome HTTP/1.1” 401 12851 195.246.13.119 – – [09/Mar/2004:01:51:45 -0800] “GET /twiki/pub/TWiki/TWikiDocGraphics/help.gif HTTP/1.1” 200 130 195.246.13.119 – – [09/Mar/2004:01:51:54 -0800] “GET /twiki/bin/view/Main/RelayGateway HTTP/1.1” 200 4232 195.246.13.119 – – [09/Mar/2004:01:52:12 -0800] “GET /twiki/bin/view/Main/LinksOfUse HTTP/1.1” 200 4534 200-55-104-193.dsl.prima.net.ar – – [09/Mar/2004:02:33:10 -0800] “GET /dccstats/index.html HTTP/1.1” 200 2955 200-55-104-193.dsl.prima.net.ar – – [09/Mar/2004:02:33:17 -0800] “GET /dccstats/stats-spam.1day.png HTTP/1.1” 200 3068 200-55-104-193.dsl.prima.net.ar – – [09/Mar/2004:02:33:17 -0800] “GET /dccstats/stats-spam-ratio.1day.png HTTP/1.1” 200 2187 200-55-104-193.dsl.prima.net.ar – – [09/Mar/2004:02:33:17 -0800] “GET /dccstats/stats-spam.1week.png HTTP/1.1” 200 3277 200-55-104-193.dsl.prima.net.ar – – [09/Mar/2004:02:33:17 -0800] “GET /dccstats/stats-spam-ratio.1week.png HTTP/1.1” 200 2379 200-55-104-193.dsl.prima.net.ar – – [09/Mar/2004:02:33:18 -0800] “GET /dccstats/stats-hashes.1week.png HTTP/1.1” 200 1687 200-55-104-193.dsl.prima.net.ar – – [09/Mar/2004:02:33:18 -0800] “GET /dccstats/stats-spam.1month.png HTTP/1.1” 200 2592 200-55-104-193.dsl.prima.net.ar – – [09/Mar/2004:02:33:18 -0800] “GET /dccstats/stats-spam-ratio.1month.png HTTP/1.1” 200 1983 200-55-104-193.dsl.prima.net.ar – – [09/Mar/2004:02:33:18 -0800] “GET /dccstats/stats-hashes.1month.png HTTP/1.1” 200 1545 200-55-104-193.dsl.prima.net.ar – – [09/Mar/2004:02:33:18 -0800] “GET /dccstats/stats-spam.1year.png HTTP/1.1” 200 2222 200-55-104-193.dsl.prima.net.ar – – [09/Mar/2004:02:33:18 -0800] “GET /dccstats/stats-spam-ratio.1year.png HTTP/1.1” 200 1866 200-55-104-193.dsl.prima.net.ar – – [09/Mar/2004:02:33:18 -0800] “GET /dccstats/stats-hashes.1year.png HTTP/1.1” 200 1494 200-55-104-193.dsl.prima.net.ar – – [09/Mar/2004:02:33:18 -0800] “GET /favicon.ico HTTP/1.1” 200 1078 lj1052.inktomisearch.com – – [09/Mar/2004:02:39:17 -0800] “GET /robots.txt HTTP/1.0” 200 68 lj1162.inktomisearch.com – – [09/Mar/2004:02:39:18 -0800] “GET /twiki/bin/view/Main/SanJoseOffice HTTP/1.0” 200 3884 lj1162.inktomisearch.com – – [09/Mar/2004:03:10:39 -0800] “GET /twiki/bin/view/Main/SanJoseOffice HTTP/1.0” 200 3884 mail.geovariances.fr – – [09/Mar/2004:05:01:53 -0800] “GET /twiki/bin/view/Main/WebHome HTTP/1.1” 200 10419 mail.geovariances.fr – – [09/Mar/2004:05:01:53 -0800] “GET /twiki/pub/TWiki/TWikiLogos/twikiRobot46x50.gif HTTP/1.1” 200 2877 mail.geovariances.fr – – [09/Mar/2004:05:02:11 -0800] “GET /twiki/bin/view/Main/SpamAssassin HTTP/1.1” 200 4081 mail.geovariances.fr – – [09/Mar/2004:05:02:11 -0800] “GET /twiki/pub/TWiki/TWikiLogos/twikiRobot46x50.gif HTTP/1.1” 304 – mail.geovariances.fr – – [09/Mar/2004:05:02:14 -0800] “GET /twiki/bin/view/Main/SpamAssassinAndPostFix HTTP/1.1” 200 4034 mail.geovariances.fr – – [09/Mar/2004:05:02:14 -0800] “GET /twiki/pub/TWiki/TWikiLogos/twikiRobot46x50.gif HTTP/1.1” 304 – mail.geovariances.fr – – [09/Mar/2004:05:02:19 -0800] “GET /twiki/bin/view/Main/SpamAssassinTaggingOnly HTTP/1.1” 200 5691 mail.geovariances.fr – – [09/Mar/2004:05:02:19 -0800] “GET /twiki/pub/TWiki/TWikiLogos/twikiRobot46x50.gif HTTP/1.1” 304 – mail.geovariances.fr – – [09/Mar/2004:05:02:27 -0800] “GET /twiki/bin/view/Main/SpamAssassinDeleting HTTP/1.1” 200 5543 mail.geovariances.fr – – [09/Mar/2004:05:02:28 -0800] “GET /twiki/pub/TWiki/TWikiLogos/twikiRobot46x50.gif HTTP/1.1” 304 – mail.geovariances.fr – – [09/Mar/2004:05:04:09 -0800] “GET /twiki/bin/view/Main/DCCAndPostFix HTTP/1.1” 200 5253 mail.geovariances.fr – – [09/Mar/2004:05:04:09 -0800] “GET /twiki/pub/TWiki/TWikiLogos/twikiRobot46x50.gif HTTP/1.1” 304 – mail.geovariances.fr – – [09/Mar/2004:05:09:30 -0800] “GET /twiki/bin/view/Main/SpamAssassinUsingRazorAndDCC HTTP/1.1” 200 7435 mail.geovariances.fr – – [09/Mar/2004:05:09:31 -0800] “GET /twiki/pub/TWiki/TWikiLogos/twikiRobot46x50.gif HTTP/1.1” 304 – mail.geovariances.fr – – [09/Mar/2004:05:12:45 -0800] “GET /twiki/pub/TWiki/TWikiLogos/twikiRobot46x50.gif HTTP/1.1” 304 – mail.geovariances.fr – – [09/Mar/2004:05:12:45 -0800] “GET /twiki/bin/view/Main/ConfigurationVariables HTTP/1.1” 200 58292 mail.geovariances.fr – – [09/Mar/2004:05:13:40 -0800] “GET /twiki/bin/view/TWiki/WebHome HTTP/1.1” 200 15182 mail.geovariances.fr – – [09/Mar/2004:05:13:40 -0800] “GET /twiki/pub/TWiki/TWikiLogos/twikiRobot46x50.gif HTTP/1.1” 304 – mail.geovariances.fr – – [09/Mar/2004:05:13:40 -0800] “GET /twiki/pub/TWiki/TWikiLogos/twikiRobot131x64.gif HTTP/1.1” 200 7218 mail.geovariances.fr – – [09/Mar/2004:05:13:40 -0800] “GET /twiki/pub/TWiki/TWikiDocGraphics/tip.gif HTTP/1.1” 200 123 mail.geovariances.fr – – [09/Mar/2004:05:13:40 -0800] “GET /twiki/pub/TWiki/TWikiLogos/twikiRobot88x31.gif HTTP/1.1” 200 3501 mail.geovariances.fr – – [09/Mar/2004:05:14:13 -0800] “GET /twiki/bin/view/Sandbox/WebHome HTTP/1.1” 200 8632 mail.geovariances.fr – – [09/Mar/2004:05:14:14 -0800] “GET /twiki/pub/TWiki/TWikiLogos/twikiRobot46x50.gif HTTP/1.1” 304 – 66-194-6-70.gen.twtelecom.net – – [09/Mar/2004:05:20:20 -0800] “GET / HTTP/1.1” 200 3169 195.230.181.122 – – [09/Mar/2004:06:29:03 -0800] “GET /AmavisNew.html HTTP/1.0” 200 2300 ts04-ip92.hevanet.com – – [09/Mar/2004:06:33:21 -0800] “GET / HTTP/1.1” 200 3169 ts04-ip92.hevanet.com – – [09/Mar/2004:06:34:51 -0800] “GET /dccstats/index.html HTTP/1.1” 200 2955 ts04-ip92.hevanet.com – – [09/Mar/2004:06:34:53 -0800] “GET /dccstats/stats-spam.1day.png HTTP/1.1” 200 3027 ts04-ip92.hevanet.com – – [09/Mar/2004:06:34:53 -0800] “GET /dccstats/stats-spam-ratio.1day.png HTTP/1.1” 200 2148 ts04-ip92.hevanet.com – – [09/Mar/2004:06:34:54 -0800] “GET /dccstats/stats-spam.1week.png HTTP/1.1” 200 3200 ts04-ip92.hevanet.com – – [09/Mar/2004:06:34:54 -0800] “GET /dccstats/stats-spam-ratio.1week.png HTTP/1.1” 200 2341 ts04-ip92.hevanet.com – – [09/Mar/2004:06:34:55 -0800] “GET /dccstats/stats-hashes.1week.png HTTP/1.1” 200 1686 ts04-ip92.hevanet.com – – [09/Mar/2004:06:34:55 -0800] “GET /dccstats/stats-spam.1month.png HTTP/1.1” 200 2534 ts04-ip92.hevanet.com – – [09/Mar/2004:06:34:56 -0800] “GET /dccstats/stats-spam-ratio.1month.png HTTP/1.1” 200 1948 ts04-ip92.hevanet.com – – [09/Mar/2004:06:34:56 -0800] “GET /dccstats/stats-hashes.1month.png HTTP/1.1” 200 1549 ts04-ip92.hevanet.com – – [09/Mar/2004:06:34:57 -0800] “GET /dccstats/stats-spam.1year.png HTTP/1.1” 200 2214 ts04-ip92.hevanet.com – – [09/Mar/2004:06:34:57 -0800] “GET /dccstats/stats-spam-ratio.1year.png HTTP/1.1” 200 1873 ts04-ip92.hevanet.com – – [09/Mar/2004:06:34:58 -0800] “GET /dccstats/stats-hashes.1year.png HTTP/1.1” 200 1500 ts04-ip92.hevanet.com – – [09/Mar/2004:06:35:04 -0800] “GET /cgi-bin/mailgraph2.cgi HTTP/1.1” 200 2987 ts04-ip92.hevanet.com – – [09/Mar/2004:06:35:06 -0800] “GET /cgi-bin/mailgraph.cgi/mailgraph_0_err.png HTTP/1.1” 200 6708 ts04-ip92.hevanet.com – – [09/Mar/2004:06:35:06 -0800] “GET /cgi-bin/mailgraph.cgi/mailgraph_0.png HTTP/1.1” 200 8232 ts04-ip92.hevanet.com – – [09/Mar/2004:06:35:09 -0800] “GET /cgi-bin/mailgraph.cgi/mailgraph_1.png HTTP/1.1” 200 8857 ts04-ip92.hevanet.com – – [09/Mar/2004:06:35:10 -0800] “GET /cgi-bin/mailgraph.cgi/mailgraph_1_err.png HTTP/1.1” 200 7175 ts04-ip92.hevanet.com – – [09/Mar/2004:06:35:13 -0800] “GET /cgi-bin/mailgraph.cgi/mailgraph_2.png HTTP/1.1” 200 9391 ts04-ip92.hevanet.com – – [09/Mar/2004:06:35:13 -0800] “GET /cgi-bin/mailgraph.cgi/mailgraph_2_err.png HTTP/1.1” 200 6922 ts04-ip92.hevanet.com – – …
Collepals.com Plagiarism Free Papers
Are you looking for custom essay writing service or even dissertation writing services? Just request for our write my paper service, and we'll match you with the best essay writer in your subject! With an exceptional team of professional academic experts in a wide range of subjects, we can guarantee you an unrivaled quality of custom-written papers.
Get ZERO PLAGIARISM, HUMAN WRITTEN ESSAYS
Why Hire Collepals.com writers to do your paper?
Quality- We are experienced and have access to ample research materials.
We write plagiarism Free Content
Confidential- We never share or sell your personal information to third parties.
Support-Chat with us today! We are always waiting to answer all your questions.