[2005-10-18T23:29:20+0000] GET from 61.9.136.168 I:['fsdfs'] R:[dsf] [2005-10-19T09:52:34+0000] GET from 80.66.6.99 I:['12343ffffgf'] R:[[0-9A-z]] [2005-10-19T09:52:43+0000] GET from 80.66.6.99 I:['12343ffffgf'] R:[[0-9A-z]+] [2005-10-19T09:55:18+0000] GET from 80.66.6.99 I:['\xa7>12343<\xa7'] R:[$>.*<$] [2005-10-19T09:56:06+0000] GET from 80.66.6.99 I:['\xa7>12343<\xa7'] R:[$>.*<$] [2005-10-26T16:07:14+0000] GET from 67.99.46.192 I:['snf labs may have some --bugs-- but who can say'] R:[--(.*)--] [2005-11-03T17:25:09+0000] GET from 67.99.46.192 I:['After working on chompy.net, it\'s clear that dealing with syndicated feeds (especially RSS) feeds is a pain in the ass.\r\n\r\nThe following are adapted from two emails I sent to Scott about chompy.net. Hope he doesn\'t mind.\r\n\r\n### timestamps ###\r\n\r\nScott wrote:\r\n\r\n> Since I\'m a neurotic internet fiddler (as it appears you also are) I \r\n> thought I should point out that the time stamp on blog entries seems to \r\n> be out of whack. Maybe it\'s applying an unneccesary offset? I can only \r\n> speak for my own entries, but their stamps appear on Chompy as having \r\n> been posted 5 hours before they were posted on Junklab. Bizarre.\r\n\r\nThere is, of course, more to this story. Ready? Really? Okay.\r\n\r\nYour B2 [RSS 2.0](http://blogs.law.harvard.edu/tech/rss) feed reports dates using the optional [Dublin Core](http://dublincore.org/documents/dces/#date) (ISO 15836-2003) `` field. According to the Dublin Core specification, the `` field should use dates formatted according to ISO 8601, or [W3CDTF] (http://www.w3.org/TR/NOTE-datetime). W3CDTF allows a given date\'s time zone to be expressed in one of two ways:\r\n\r\n1. With times expressed as UTC/GMT, and with the time zone identifier "Z," indicating UTC.\r\n2. With times expressed in local time, and with the time zone designated using an offset ("+hh:mm") indicating the time\'s relation to UTC.\r\n\r\nTo give an example, the date October 8, 2005, 4:36:14 PM (CDT) could be expressed as either of the following, when formatted according to the W3CDTF specification:\r\n\r\n1. 2005-10-08T16:36:14-06:00\r\n2. 2005-10-08T22:36:14Z\r\n\r\nNow, that date happens to be the same date as the last entry in your blog, which appears in your RSS 2.0 feed like so:\r\n\r\n 2005-10-08T16:36:14\r\n\r\nIt should actually look like this:\r\n\r\n 2005-10-08T16:36:14-06:00\r\n\r\nI don\'t know how B2 works but fixing this could be as simple as opening up a template file and cramming the string "-06:00" in somewhere.\r\n\r\n(And this could actually be even more complicated. RSS 2.0 also allows dates to be specified in a `` field ([RSS 2.0 pubDates](http://blogs.law.harvard.edu/tech/rss#ltpubdategtSubelementOfLtitemgt)), which uses a *different* date format, [RFC 822](http://asg.web.cmu.edu/rfc/rfc822.html#sec-5). An RSS 2.0 feed, then, could conceivably include both a `` field and a `` field just to piss off people that write RSS aggregators.)\r\n\r\nEven if you were to fix your feed, though, there would still be a few other date-related problems that I need to fix myself, so I took the easy way out and removed the timestamps from the page. The ordering of items on the front page may be slightly off, however, and god knows what might be going on in the chompy RSS and Atom feeds.\r\n\r\nIsn\'t this fascinating?\r\n\r\n### IDs/GUIDs ###\r\n\r\n_(Regarding duplicate entries appearing in the Thunderbird client)_\r\n\r\nLooks like this is a known issue:\r\n\r\n[http://bugzilla.mozilla.org/show_bug.cgi?id=258465](http://bugzilla.mozilla.org/show_bug.cgi?id=258465)\r\n\r\nIt was opened about a year ago, and the lead developer (Scott MacGregor) closed it after determining the likely cause and checking in a fix, but the problem is still occurring for a lot of users.\r\n\r\nThe issue, as Scott understands it, works like this: Thunderbird tracks an entry\'s uniqueness by looking at the value of the entry\'s `` (RSS) or `` (Atom) tag. (This ID value should always be unique and should **never** change -- this is important.) The problem begins when an entry\'s ID contains a character that should be a reserved character in XML, like `<`, `>`, or `&`. A properly formatted feed will encode such a character; for example, `&` will become `&` and `<` will become `<`. When Thunderbird\'s XML parser processes that ID, it assumes that such characters aren\'t encoded already and double-encodes them, so `&` becomes `&`. So when Thunderbird finds an ID like `blah&blah&etc`, it stores it as `blah&blah&etc`. That\'s wrong, but it would be fine, except that when Thunderbird checks the same feed again, it sees an entry with an ID of `blah&blah&etc` and finds that it doesn\'t match anything it has stored already, because what it has stored isn\'t `blah&blah&etc`, it\'s `blah&blah&etc`. And that\'s the bug.\r\n\r\nAnyway, that\'s supposedly fixed (though maybe not in any of the current stable releases). So why is the bug still open, and why are people still reporting the problem? I don\'t actually know, but it\'s likely that this bug has multiple causes, so fixing the cause described above isn\'t enough. My candidate for the most likely cause is the fact that most software that generates RSS or Atom feeds doesn\'t ensure that entry IDs are actually unique and unchanging. An example would be RSS 2.0 feeds that stick the entry\'s permalink in the `` field, something that the RSS 2.0 spec encourages. This isn\'t very well thought out, because permalinks can and do change. And since Thunderbird trusts that the entry IDs in the feeds that it receives will be unique and unchanging, it will create duplicate entries any time that turns out not to be the case. Thunderbird doesn\'t really have a better option, because A) that\'s what the ID is **for**, and B) the other information available to it -- the title, permalink, date, and content of each element -- definitely isn\'t guaranteed to be either unique or unchanging, assuming that those elements are even present.\r\n\r\nOr take chompy\'s feeds. I recently tweaked the ID-generation algorithm so that each entry ID has a much greater chance of uniqueness, and in so doing, changed every single ID. That, of course, caused Thunderbird to think that every entry in the feed was brand new. To make it worse, I\'m probably going to end up tweaking that algorithm again, because I made the same mistake that I just mentioned above -- I generate IDs based on the entry permalinks.'] R:[/(<(del)>|<(/del)>|<(ins)>|<(/ins)>|<(pre)>|<(/pre)>|<(code)>|<(/code)>|<(br /)>)/\<$1\>/] [2005-11-08T19:58:18+0000] GET from 38.221.208.2 I:['http://10.3.4.168/departmental/hr/401k.php'] R:["\S*\.php"] [2005-11-17T14:31:45+0000] GET from 67.151.169.250 I:['this is a test of the emergency broadcast system'] R:[test] [2005-11-17T14:32:30+0000] GET from 67.151.169.250 I:['this is a test of the emergency broadcast system'] R:[is] [2005-11-17T14:32:39+0000] GET from 67.151.169.250 I:['this is a test of the emergency broadcast system'] R:[is*] [2005-11-17T14:32:56+0000] GET from 67.151.169.250 I:['this is a test of the emergency broadcast system'] R:[is.*] [2005-11-17T14:33:10+0000] GET from 67.151.169.250 I:['this is a test of the emergency broadcast system'] R:[test] [2005-12-03T13:33:49+0000] GET from 80.42.113.162 I:['\r\n\r\n\r\nCrossRocks: CrossRocks.co.uk / JonoWatkins.co.uk\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
\r\n\t\r\n\t\r\n\t\r\n\t
\r\n\t

CrossRocks.co.uk / JonoWatkins.co.uk

\r\n\r\n\t

Welcome to my website. It is going through a period of change at the moment, I hope you like the new design. Im not entirely sure exactly what I\'m going to put up here, but you\'ll have to wait and see.

\r\n

Jono

\r\n\t
\r\n\t\r\n
\r\n'] R:[index.php\?pk=([a-z0-9_-]+)+] [2005-12-06T04:34:06+0000] GET from 61.9.136.168 I:['abc'] R:[c] [2005-12-20T06:00:34+0000] GET from 61.9.136.168 I:['dasdsad'] R:[\w] [2005-12-20T06:00:41+0000] GET from 61.9.136.168 I:['dasdsad'] R:[\w] [2005-12-20T06:02:08+0000] GET from 61.9.136.168 I:['bksadba'] R:[dqw] [2006-01-11T17:45:49+0000] GET from 80.66.6.99 I:['C:\\temp\\test1.mk'] R:[c\:\\temp\\test1\.mk] [2006-01-11T17:46:03+0000] GET from 80.66.6.99 I:['C:\\temp\\test1.mk'] R:[c:\\temp\\test1\.mk] [2006-01-11T17:46:24+0000] GET from 80.66.6.99 I:['C:\\temp\\test1.mk'] R:[c:\\\temp\\\test1\.mk] [2006-01-11T17:46:43+0000] GET from 80.66.6.99 I:['c:\\temp\\test1.mk'] R:[c:] [2006-01-11T17:46:53+0000] GET from 80.66.6.99 I:['c:\\temp\\test1.mk'] R:[c:\\temp] [2006-01-11T17:47:07+0000] GET from 80.66.6.99 I:['c:\\temp\\test1.mk'] R:[c:\\temp\\test1.mk] [2006-01-11T17:48:23+0000] GET from 80.66.6.99 I:['c:\\temp\\test1.mk'] R:[c:\\temp\\test1\.mk] [2006-01-20T14:21:39+0000] GET from 85.86.225.133 I:['N50 X 50.0 T4\r\nN60 X 50.0 D5\r\nN90 X 422 2 323'] R:[('\bT[1-9]\b')] [2006-01-20T14:22:12+0000] GET from 85.86.225.133 I:['N50 X 50.0 T4\r\nN60 X 50.0 D5\r\nN90 X 422 2 323'] R:[('\bT[1-9]')] [2006-01-20T14:22:26+0000] GET from 85.86.225.133 I:['N50 X 50.0 T4\r\nN60 X 50.0 D5\r\nN90 X 422 2 323'] R:[('T[1-9]')] [2006-01-24T04:13:07+0000] GET from 61.9.136.168 I:['12'] R:[\d+] [2006-01-25T10:07:32+0000] GET from 80.66.6.99 I:['c:\\banane\\'] R:[([[:alpha:]]:|\\\\)[\\.|-|\\w]+] [2006-01-25T10:07:32+0000] GET from 80.66.6.99 I:['c:\\banane\\'] R:[([[:alpha:]]:|\\\\)[\\.|-|\\w]+] [2006-01-25T10:07:58+0000] GET from 80.66.6.99 I:['c:\\banane\\'] R:[([[:alpha:]]:|\\)[\.|-|\w]+] [2006-01-25T10:08:18+0000] GET from 80.66.6.99 I:['c:\\banane\\'] R:[(\w:|\\)[\.|-|\w]+] [2006-01-25T10:08:59+0000] GET from 80.66.6.99 I:['c:\\banane\\'] R:[(\w:|\\)] [2006-01-25T10:09:15+0000] GET from 80.66.6.99 I:['c:\\banane\\'] R:[(\w:|\\)[\\.|-|\\w]+] [2006-01-25T10:09:40+0000] GET from 80.66.6.99 I:['c:\\banane\\'] R:[(\w:|\\)([\\.|-|\\w]+)?] [2006-01-25T10:10:40+0000] GET from 80.66.6.99 I:['c:\\banane\\'] R:[(\w:|\\)([\\.|-|\\w]+)?(\\[\.|-|\w])*] [2006-01-25T10:20:14+0000] GET from 80.66.6.99 I:['c:\\banane\\'] R:[\w:(\\(\w|\$\(\w+\)))*] [2006-01-25T10:20:30+0000] GET from 80.66.6.99 I:['c:\\banane\\'] R:[\w:(\\(\w+|\$\(\w+\)))*] [2006-01-25T10:20:38+0000] GET from 80.66.6.99 I:['c:\\ban$(Macro)ane\\'] R:[\w:(\\(\w+|\$\(\w+\)))*] [2006-01-25T10:21:41+0000] GET from 80.66.6.99 I:['c:\\ban$(Macro)ane\\'] R:[\w:(\\(\w|\$\(\w+\))+)*] [2006-01-25T10:21:50+0000] GET from 80.66.6.99 I:['c:\\ban$(Macroane\\'] R:[\w:(\\(\w|\$\(\w+\))+)*] [2006-01-30T13:56:26+0000] GET from 80.66.6.99 I:['c:\\foo1\\foo2'] R:[\w] [2006-01-30T13:56:54+0000] GET from 80.66.6.99 I:['c:\\foo1\\foo2'] R:[\\] [2006-02-12T23:13:27+0000] GET from 24.108.199.122 I:['g'] R:[/g/] [2006-02-15T03:02:57+0000] GET from 60.234.232.219 I:['mono-1.1.13.2.tar.gz'] R:[[a-zA-Z]*-(\d+[.])+] [2006-02-15T03:03:37+0000] GET from 60.234.232.219 I:['mono-1.1.13.2.tar.gz'] R:[[a-zA-Z]*-(\d+[.])+[.]tar[.]gz] [2006-02-15T03:03:58+0000] GET from 60.234.232.219 I:['mono-1.1.13.2.tar.gz'] R:[[a-zA-Z]*-(\d+[.])+] [2006-02-15T03:04:39+0000] GET from 60.234.232.219 I:['mono-1.1.13.2.tar.gz'] R:[-(\d+[.])+] [2006-02-15T03:05:07+0000] GET from 60.234.232.219 I:['mono-1.1.13.2.tar.gz'] R:[-(\d+[.])+\d] [2006-02-15T03:06:08+0000] GET from 60.234.232.219 I:['mono-1.1.1.2.tar.gz'] R:[-(\d+[.])+] [2006-02-15T03:06:48+0000] GET from 60.234.232.219 I:['mono-1.1.1.2.tar.gz libgdiplus-1.1.13.2.tar.gz\r\ngtk-sharp-1.0.10.tar.gz\r\nmonodoc-1.1.13.tar.gz\r\nmono-tools-1.1.11.tar.gz\r\ngecko-sharp-0.6.tar.gz\r\ngecko-sharp-2.0-0.11.tar.gz\r\ngtksourceview-sharp-2.0-0.10.tar.gz\r\n'] R:[-(\d+[.])+] [2006-02-15T03:08:28+0000] GET from 60.234.232.219 I:['mono-1.1.1.2.tar.gz libgdiplus-1.1.13.2.tar.gz\r\ngtk-sharp-1.0.10.tar.gz\r\nmonodoc-1.1.13.tar.gz\r\nmono-tools-1.1.11.tar.gz\r\ngecko-sharp-0.6.tar.gz\r\ngecko-sharp-2.0-0.11.tar.gz\r\ngtksourceview-sharp-2.0-0.10.tar.gz\r\n'] R:[-(\d+[.])+tar[.]gz] [2006-02-15T03:08:36+0000] GET from 60.234.232.219 I:['mono-1.1.1.2.tar.gz'] R:[-(\d+[.])+tar[.]gz] [2006-02-15T03:09:10+0000] GET from 60.234.232.219 I:['mono-1.1.1.2.tar.gz'] R:[-(\d+[.])+tar[.]gz$] [2006-02-15T03:09:23+0000] GET from 60.234.232.219 I:['mono-1.1.1.2.tar.gz'] R:[-(\d+[.])+tar[.]gz$5] [2006-02-15T03:09:36+0000] GET from 60.234.232.219 I:['mono-1.1.1.2.tar.gz5'] R:[-(\d+[.])+tar[.]gz$] [2006-02-15T03:09:43+0000] GET from 60.234.232.219 I:['mono-1.1.1.2.tar.gz5'] R:[-(\d+[.])+tar[.]gz] [2006-02-15T03:10:34+0000] GET from 60.234.232.219 I:['mono-1.1.1.2.tar.gz'] R:[-(\d+[.])+tar[.]gz$] [2006-02-15T03:10:52+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[-(\d+[.])+tar[.]gz$] [2006-02-15T03:16:23+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[(\w)(-(\d+[.])+tar[.]gz$)] [2006-02-15T03:17:09+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[(\w)(-(\d+[.])+tar[.]gz$)] [2006-02-15T03:17:28+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[(\w)((-(\d+[.])+)tar[.]gz$)] [2006-02-15T03:17:52+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[(\w)-(\d+[.])+tar[.]gz$] [2006-02-15T03:18:42+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[(\w)-(?:\d+[.])+tar[.]gz$] [2006-02-15T03:19:00+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[(^\w+)-(?:\d+[.])+tar[.]gz$] [2006-02-15T03:19:13+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[(^\w+)-(\d+[.])+tar[.]gz$] [2006-02-15T03:19:31+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[(^[a-zA-Z-]+)-(\d+[.])+tar[.]gz$] [2006-02-15T03:19:39+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[^([a-zA-Z-]+)-(\d+[.])+tar[.]gz$] [2006-02-15T03:19:49+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[-(\d+[.])+tar[.]gz$] [2006-02-15T03:20:37+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[(^\w+)-(\d+[.])+tar[.]gz$] [2006-02-15T03:20:50+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[^\w+-(\d+[.])+tar[.]gz$] [2006-02-15T03:21:11+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[^[a-zA-Z-]+-(\d+[.])+tar[.]gz$] [2006-02-15T03:21:27+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[-(\d+[.])+tar[.]gz$] [2006-02-15T03:21:42+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[(-(\d+[.])+tar[.]gz$)] [2006-02-15T03:22:05+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[(-(?:\d+[.])+tar[.]gz$)] [2006-02-15T03:22:36+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[(-(?:\d+[.])+(tar[.]gz$))] [2006-02-15T03:23:26+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[-(?:\d+[.])+tar[.]gz$] [2006-02-15T03:23:54+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[(^lib)-(?:\d+[.])+tar[.]gz$] [2006-02-15T03:24:50+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[(^lib).*-(?:\d+[.])+tar[.]gz$] [2006-02-15T03:27:26+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[(^[a-zA-Z]+)-(?:\d+[.])+tar[.]gz$] [2006-02-15T03:27:43+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[^([a-zA-Z]+)-(?:\d+[.])+tar[.]gz$] [2006-02-15T03:28:04+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[(^[a-zA-Z]+)-(?:\d+[.])+tar[.]gz$] [2006-02-15T03:49:38+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[(^[a-zA-Z]+)-(?:\d+[.])+tar[.]gz$] [2006-02-15T03:50:25+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[-(?:\d+[.])+tar[.]gz$] [2006-02-15T03:52:35+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[-(?:\d+[.])] [2006-02-15T03:52:57+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[-(?:\d+[.])+] [2006-02-15T03:52:58+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[-(?:\d+[.])+] [2006-02-15T03:53:30+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[-(\d+[.])+] [2006-02-15T03:54:02+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[(?:-)(\d+[.])+] [2006-02-15T03:54:28+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[-(?:\d+[.])+] [2006-02-15T03:54:41+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[-?:(\d+[.])+] [2006-02-15T03:54:52+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[-(\d+[.])+] [2006-02-15T03:55:15+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[-(?:\d+[.])+] [2006-02-15T04:31:12+0000] GET from 70.24.61.3 I:['/home/dave/test/data\r\n/home/dave/test/data_process'] R:[/home/dave/[^/]/data] [2006-02-15T04:31:47+0000] GET from 70.24.61.3 I:['/home/dave/test/data'] R:[/home/dave/[^/]/data] [2006-02-15T04:32:00+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[^([a-zA-z]-)] [2006-02-15T04:32:17+0000] GET from 70.24.61.3 I:['/home/dave/test/data'] R:[/home/dave/[^/]+?/data] [2006-02-15T04:32:22+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[^[a-zA-z]+-] [2006-02-15T04:32:29+0000] GET from 70.24.61.3 I:['/home/dave/test/data_process'] R:[/home/dave/[^/]+?/data] [2006-02-15T04:32:33+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[^([a-zA-z]+)-] [2006-02-15T04:32:43+0000] GET from 70.24.61.3 I:['/home/dave/test/data_process'] R:[/home/dave/[^/]+?/data$] [2006-02-15T04:33:40+0000] GET from 60.234.232.219 I:['libgdiplus-1.1.13.2.tar.gz'] R:[^([a-zA-z]+)] [2006-02-15T04:34:00+0000] GET from 60.234.232.219 I:['gecko-sharp-2.0-0.11.tar.gz\r\n'] R:[^([a-zA-z]+)] [2006-02-15T04:34:21+0000] GET from 60.234.232.219 I:['gecko-sharp-2.0-0.11.tar.gz\r\n'] R:[^((?:[a-zA-z]-)+)] [2006-02-15T04:34:41+0000] GET from 60.234.232.219 I:['gecko-sharp-2.0-0.11.tar.gz\r\n'] R:[^([a-zA-z]-)+] [2006-02-15T04:34:54+0000] GET from 60.234.232.219 I:['gecko-sharp-2.0-0.11.tar.gz\r\n'] R:[^([a-zA-z]-+)] [2006-02-15T04:36:07+0000] GET from 60.234.232.219 I:['gecko-sharp-2.0-0.11.tar.gz\r\n'] R:[^[a-zA-z]] [2006-02-15T04:36:15+0000] GET from 60.234.232.219 I:['gecko-sharp-2.0-0.11.tar.gz\r\n'] R:[^[a-zA-z]+] [2006-02-15T04:36:32+0000] GET from 60.234.232.219 I:['gecko-sharp-2.0-0.11.tar.gz\r\n'] R:[^([a-zA-z]-)+] [2006-02-15T04:37:24+0000] GET from 70.24.61.3 I:['/home/dave/test/data_process\r\n/home/dave/test/data'] R:[/home/dave/[^/]+?/data$] [2006-02-15T04:37:48+0000] GET from 60.234.232.219 I:['gecko-sharp-2.0-0.11.tar.gz\r\n'] R:[^([a-zA-z]\-)+] [2006-02-15T04:38:13+0000] GET from 60.234.232.219 I:['gecko-sharp-2.0-0.11.tar.gz\r\n'] R:[^[a-zA-z\-]\-] [2006-02-15T04:38:21+0000] GET from 60.234.232.219 I:['gecko-sharp-2.0-0.11.tar.gz\r\n'] R:[^[a-zA-z\-]+] [2006-02-15T04:38:41+0000] GET from 60.234.232.219 I:['gecko-sharp-2.0-0.11.tar.gz\r\n'] R:[^[a-zA-z\-]+[^\-]] [2006-02-15T04:39:10+0000] GET from 60.234.232.219 I:['gecko-sharp-2.0-0.11.tar.gz\r\n'] R:[^([a-zA-z\-])+] [2006-02-15T04:41:22+0000] GET from 60.234.232.219 I:['gecko-sharp-2.0-0.11.tar.gz\r\n'] R:[^([a-zA-z\-])+-] [2006-02-15T04:42:52+0000] GET from 60.234.232.219 I:['gecko-sharp-2.0-0.11.tar.gz\r\n'] R:[^[a-zA-z\-]+[a-zA-z]+] [2006-02-15T04:43:14+0000] GET from 60.234.232.219 I:['gecko-sharp-2.0-0.11.tar.gz\r\n'] R:[^[a-zA-z\-]*[a-zA-z]+] [2006-02-15T04:46:04+0000] GET from 60.234.232.219 I:['gtksourceview-sharp-2.0-0.10.tar.gz\r\n'] R:[^[a-zA-z\-]*[a-zA-z]+] [2006-02-15T04:48:47+0000] GET from 60.234.232.219 I:['gtksourceview-sharp-2.0-0.10.tar.gz\r\n'] R:[[\d\-]*[\d]+] [2006-02-15T04:48:58+0000] GET from 60.234.232.219 I:['gtksourceview-sharp-2.0-0.10.tar.gz\r\n'] R:[[\d\-.]*[\d]+] [2006-02-15T04:49:20+0000] GET from 60.234.232.219 I:['gtksourceview-sharp-2.0-0.10.tar.gz\r\n'] R:[[\d]+[\d\-.]*[\d]+] [2006-02-15T04:49:54+0000] GET from 60.234.232.219 I:['gtksourceview-sharp-2.0-0.10.tar.gz\r\n'] R:[[\d]+[\d\-.]*[\d]+] [2006-02-15T04:50:36+0000] GET from 60.234.232.219 I:['gtksourceview-sharp-2.0-0.10.tar.gz\r\n'] R:[[\W]+&] [2006-02-15T04:50:43+0000] GET from 60.234.232.219 I:['gtksourceview-sharp-2.0-0.10.tar.gz\r\n'] R:[[\W]+$] [2006-02-15T04:51:08+0000] GET from 60.234.232.219 I:['gtksourceview-sharp-2.0-0.10.tar.gz\r\n'] R:[[\w]+$] [2006-02-15T04:52:00+0000] GET from 60.234.232.219 I:['gtksourceview-sharp-2.0-0.10.tar.gz\r\n'] R:[[\w]$] [2006-02-15T04:52:19+0000] GET from 60.234.232.219 I:['gtksourceview-sharp-2.0-0.10.tar.gz\r\n'] R:[[\w]$] [2006-02-15T04:52:43+0000] GET from 60.234.232.219 I:['gtksourceview-sharp-2.0-0.10.tar.gz\r\n'] R:[[\w]+$] [2006-02-15T04:52:56+0000] GET from 60.234.232.219 I:['gtksourceview-sharp-2.0-0.10.tar.gz\r\n'] R:[.tar.gz$] [2006-02-15T04:53:12+0000] GET from 60.234.232.219 I:['gtksourceview-sharp-2.0-0.10.tar.gz\r\n'] R:[.tar.gz] [2006-02-15T04:54:47+0000] GET from 60.234.232.219 I:['gtksourceview-sharp-2.0-0.10.tar.gz\r\n'] R:[^[a-zA-z\-]*[a-zA-z]] [2006-02-15T05:10:31+0000] GET from 60.234.232.219 I:['gtksourceview-sharp-2.0-0.10.tar.gz\r\n'] R:[[\d]+[\d\-.]*[\d]+] [2006-02-15T06:36:41+0000] GET from 60.234.232.219 I:['http://www.go-mono.com/sources/monodoc/monodoc-1.1.13.tar.gz'] R:[\\[\w\-.]+] [2006-02-15T06:36:56+0000] GET from 60.234.232.219 I:['http://www.go-mono.com/sources/monodoc/monodoc-1.1.13.tar.gz'] R:[\[\w\-.]+] [2006-02-15T06:37:03+0000] GET from 60.234.232.219 I:['http://www.go-mono.com/sources/monodoc/monodoc-1.1.13.tar.gz'] R:[[\w\-]+] [2006-02-15T06:37:15+0000] GET from 60.234.232.219 I:['http://www.go-mono.com/sources/monodoc/monodoc-1.1.13.tar.gz'] R:[[\w\-]+] [2006-02-15T06:37:59+0000] GET from 60.234.232.219 I:['http://www.go-mono.com/sources/monodoc/monodoc-1.1.13.tar.gz'] R:[/[\w\-]+] [2006-02-15T06:38:21+0000] GET from 60.234.232.219 I:['http://www.go-mono.com/sources/monodoc/monodoc-1.1.13.tar.gz'] R:[/[\w\-.]+] [2006-02-15T06:38:31+0000] GET from 60.234.232.219 I:['http://www.go-mono.com/sources/monodoc/monodoc-1.1.13.tar.gz'] R:[[\w\-.]+] [2006-02-15T06:40:42+0000] GET from 60.234.232.219 I:['http://www.go-mono.com/sources/monodoc/monodoc-1.1.13.tar.gz'] R:[[\w\-.]+] [2006-02-21T17:00:57+0000] GET from 82.123.48.186 I:['abcdef'] R:[[a-z]] [2006-02-24T19:51:03+0000] GET from 66.171.240.87 I:['Send Invitation'] R:[Send Invitation] [2006-02-28T14:45:19+0000] GET from 62.129.121.63 I:['http://b2evolution.drkw.net/b2evolution/blogs/users_kaliay1/2005/03/22/nokia_s_lifeblog'] R:[http://b2personal\.drkw\.net/b2evolution/blogs/.+/20[0-9][0-9]/[0-9]{2}/[0-9]{2}/.+] [2006-03-01T02:56:08+0000] GET from 221.143.162.18 I:['blah'] R:[\d] [2006-03-02T04:36:48+0000] GET from 221.143.162.18 I:['fsdfds\r\nfsdfds\r\napi-python.txt\r\nfsfds\r\nhttp://frdfgd\r\ngfdgfdg\r\nfdgfdg\r\n'] R:[^http] [2006-03-02T04:37:03+0000] GET from 221.143.162.18 I:['fsdfds\r\nfsdfds\r\napi-python.txt\r\nfsfds\r\nhttp://frdfgd\r\ngfdgfdg\r\nfdgfdg\r\n'] R:[http] [2006-03-02T09:21:01+0000] GET from 134.76.124.38 I:['\r\n
\r\n\r\n
\r\nModulevaluation M1.1 Stellungnahme SS2005
\r\n36,216 KB / Letzte \xc4nderung: 15.02.2006\r\n
\r\n
'] R:[(href="/(\w*/)*)(\w*\.pdf)] [2006-03-02T09:43:20+0000] GET from 134.76.124.38 I:['\r\n
\r\n\r\n
\r\nModulevaluation M1.1 Stellungnahme SS2005
\r\n36,216 KB / Letzte \xc4nderung: 15.02.2006\r\n
\r\n
'] R:[href="/(\w*/)*(\w*\.pdf)] [2006-03-02T09:46:04+0000] GET from 134.76.124.38 I:['xxxa href="/evaluation/modulevaluation_m11_stellungnahme_ss2005.pdf" target="_blank"xxx Modulevaluation M1.1 Stellungnahme SS2005'] R:[href="/(\w*/)*(\w*\.pdf)] [2006-03-02T09:46:24+0000] GET from 134.76.124.38 I:['xxxa href="/evaluation/modulevaluation_m11_stellungnahme_ss2005.pdf" \r\ntarget="_blank"xxx Modulevaluation M1.1 Stellungnahme SS2005'] R:[href="/(\w*/)*(\w*\.pdf)] [2006-03-02T09:49:05+0000] GET from 134.76.124.38 I:['xxxa href="/evaluation/modulevaluation_m11_stellungnahme_ss2005.pdf" \r\ntarget="_blank"xxx Modulevaluation M1.1 Stellungnahme SS2005\r\n\r\nxxxa href="/evaluation/modulevaluation_m11_stellungnahme_ss2005.pdf" \r\ntarget="_blank"xxx Modulevaluation M1.1 Stellungnahme SS2005\r\n\r\nxxxa href="/evaluation/modulevaluation_m11_stellungnahme_ss2005.pdf" \r\ntarget="_blank"xxx Modulevaluation M1.1 Stellungnahme SS2005'] R:[href="/(\w*/)*(\w*\.pdf)] [2006-03-03T13:48:44+0000] GET from 192.158.61.142 I:['%ADD_ct_offFaultClearThreshold_c, units are (CNTS)\r\nADD_ct_offFaultClearThreshold_c = 50;\r\n%ADD_ct_offFaultSetThreshold_c, units are (CNTS)\r\nADD_ct_offFaultSetThreshold_c = 50;\r\n%ADD_ct_offNoFault_c, units are (CNTS)\r\nADD_ct_offNoFault_c = 2;\r\n'] R:[^%([a-zA-Z0-9]+), units are \(([a-zA-Z0-9])\)$] [2006-03-05T14:14:29+0000] GET from 85.210.18.34 I:["moofsdfdsgfdboo"] R:[href='([-_./a-zA-Z0-9!&%#?,'=:~]+)'\"] [2006-03-05T14:14:29+0000] GET from 85.210.18.34 I:["moofsdfdsgfdboo"] R:[href='([-_./a-zA-Z0-9!&%#?,'=:~]+)'\"] [2006-03-05T14:14:59+0000] GET from 85.210.18.34 I:["moofsdfdsgfdboo"] R:["href='([-_./a-zA-Z0-9!&%#?,'=:~]+)'"] [2006-03-07T22:30:54+0000] GET from 150.101.188.97 I:['Want to see what happens\r\nThis is a test\r\nTesting Again\r\nThis is the next test'] R:[^?]*[^>]*>([a-zA-Z0-9 =\"'.:;>?]*[^<]*<)\s*/a\s*>$] [2006-03-07T22:49:36+0000] GET from 80.203.22.144 I:['sdAFSDA\\N\\N\\ASSAGSA\\Nfsafdsaf\\n\\nasgsdgsda\\n\\nasdgasgas\r\n'] R:[#.+?(\r\n|\r|\n){2,}#s] [2006-03-07T22:50:17+0000] GET from 80.203.22.144 I:['sdgsda\\n\\nasdgasgas\r\n'] R:[#.+?(\r\n|\r|\n){2,}#s] [2006-03-09T14:53:45+0000] GET from 204.253.249.195 I:['Change 49421 by knights@knights on 2006/03/09 12:40:29'] R:[Change \d* by .*?@.*? on \d{4,}/\d{2,}/\d{2,} \d{2,}:\d{2,}:\d{2,}\n] [2006-03-09T14:54:02+0000] GET from 204.253.249.195 I:['Change 49421 by knights@knights on 2006/03/09 12:40:29'] R:[Change \d* by .*?@.*? on \d{4,}/\d{2,}/\d{2,} \d{2,}:\d{2,}:\d{2,}] [2006-03-09T14:54:25+0000] GET from 204.253.249.195 I:['Change 49421 by knights@knights on 2006/03/09 12:40:29'] R:[Change (\d*) by .*?@.*? on \d{4,}/\d{2,}/\d{2,} \d{2,}:\d{2,}:\d{2,}] [2006-03-09T14:54:59+0000] GET from 204.253.249.195 I:['Change 49421 by knights@knights on 2006/03/09 12:40:29'] R:[Change (\d*) by (.*?)@.*? on (\d{4,}/\d{2,}/\d{2,} \d{2,}:\d{2,}:\d{2,})] [2006-03-09T14:56:46+0000] GET from 204.253.249.195 I:['Change 49421 by knights@knights on 2006/03/09 12:40:29'] R:[Change (\d*) by (.*?)@.*? on (\d{4,}/\d{2,}/\d{2,} \d{2,}:\d{2,}:\d{2,})] [2006-03-09T15:06:35+0000] GET from 204.253.249.195 I:[' \r\n\tAdd HTML capability\r\n\r\nAffected files ...\r\n\r\n... //fotech/Insight/lib/head/python2.4/focam/focam.py#44 edit\r\n\r\n'] R:[Affected files \.\.\.\n] [2006-03-09T15:07:06+0000] GET from 204.253.249.195 I:[' \r\n\tAdd HTML capability\r\n\r\nAffected files ...\r\n\r\n... //fotech/Insight/lib/head/python2.4/focam/focam.py#44 edit\r\n\r\n'] R:[Affected files \.\.\.] [2006-03-09T15:08:09+0000] GET from 204.253.249.195 I:[' \r\n\tAdd HTML capability\r\n\r\nAffected files ...\r\n\r\n... //fotech/Insight/lib/head/python2.4/focam/focam.py#44 edit\r\n\r\n'] R:[Affected files \.\.\.\n] [2006-03-09T16:23:42+0000] GET from 204.253.249.195 I:['** Change 49412 by eggebr@dvdev4.eggebr on 2006/03/08 22:06:23\r\n** \r\n\tAdd HTML capability\r\n\r\nAffected files ...\r\n\r\n... //fotech/Insight/lib/head/python2.4/focam/focam.py#44 edit\r\n\r\n** Change 49415 by knights@knights on 2006/03/08 22:34:16\r\n** \r\n\tSet 128 hosts correctly\r\n\r\nAffected files ...\r\n\r\n... //fotech/Insight/etc/head/wls-london.cfg#70 edit\r\n\r\n\r\n'] R:[\.\.\. (//.*)#(\d+) (\w*)] [2006-03-09T16:24:52+0000] GET from 204.253.249.195 I:['** Change 49412 by eggebr@dvdev4.eggebr on 2006/03/08 22:06:23\r\n** \r\n\tAdd HTML capability\r\n\r\nAffected files ...\r\n\r\n... //fotech/Insight/lib/head/python2.4/focam/focam.py#44 edit\r\n\r\n** Change 49415 by knights@knights on 2006/03/08 22:34:16\r\n** \r\n\tSet 128 hosts correctly\r\n\r\nAffected files ...\r\n\r\n... //fotech/Insight/etc/head/wls-london.cfg#70 edit\r\n\r\n\r\n'] R:[\.\.\. //.*#\d+ \w*] [2006-03-09T16:25:03+0000] GET from 204.253.249.195 I:['** Change 49412 by eggebr@dvdev4.eggebr on 2006/03/08 22:06:23\r\n** \r\n\tAdd HTML capability\r\n\r\nAffected files ...\r\n\r\n... //fotech/Insight/lib/head/python2.4/focam/focam.py#44 edit\r\n\r\n** Change 49415 by knights@knights on 2006/03/08 22:34:16\r\n** \r\n\tSet 128 hosts correctly\r\n\r\nAffected files ...\r\n\r\n... //fotech/Insight/etc/head/wls-london.cfg#70 edit\r\n\r\n\r\n'] R:[(\.\.\. //.*#\d+ \w*)] [2006-03-09T16:25:35+0000] GET from 204.253.249.195 I:['** Change 49412 by eggebr@dvdev4.eggebr on 2006/03/08 22:06:23\r\n** \r\n\tAdd HTML capability\r\n\r\nAffected files ...\r\n\r\n... //fotech/Insight/lib/head/python2.4/focam/focam.py#44 edit\r\n\r\n** Change 49415 by knights@knights on 2006/03/08 22:34:16\r\n** \r\n\tSet 128 hosts correctly\r\n\r\nAffected files ...\r\n\r\n... //fotech/Insight/etc/head/wls-london.cfg#70 edit\r\n\r\n\r\n'] R:[\.\.\. (//.*)#(\d+) \w*] [2006-03-09T16:26:00+0000] GET from 204.253.249.195 I:['** Change 49412 by eggebr@dvdev4.eggebr on 2006/03/08 22:06:23\r\n** \r\n\tAdd HTML capability\r\n\r\nAffected files ...\r\n\r\n... //fotech/Insight/lib/head/python2.4/focam/focam.py#44 edit\r\n\r\n** Change 49415 by knights@knights on 2006/03/08 22:34:16\r\n** \r\n\tSet 128 hosts correctly\r\n\r\nAffected files ...\r\n\r\n... //fotech/Insight/etc/head/wls-london.cfg#70 edit\r\n\r\n\r\n'] R:[\.\.\. (//.*)#(\d+) (\w*)] [2006-03-10T16:58:35+0000] GET from 67.108.223.66 I:['tlkjhasg astha sashdf hh'] R:[(\g)] [2006-03-14T10:30:40+0000] GET from 84.177.105.146 I:['ich teste mein B\xfcro.'] R:[]*onclick=.showSuggestions\(.*?>(.*?)] [2006-03-14T15:15:08+0000] GET from 80.66.6.99 I:['\r\n \r\n \r\n \r\n '] R:[\r\n \r\n \r\n \r\n '] R:[\r\n \r\n \r\n \r\n '] R:[\\r\n \r\n \r\n \r\n '] R:[test-case] [2006-03-14T15:16:06+0000] GET from 80.66.6.99 I:['\r\n \r\n \r\n \r\n '] R:[\r\n \r\n \r\n \r\n '] R:[\\r\n \r\n \r\n \r\n '] R:[test-case.*test-case] [2006-03-14T15:17:47+0000] GET from 80.66.6.99 I:['\r\n \r\n \r\n \r\n '] R:[.test-case.*test-case] [2006-03-14T15:17:58+0000] GET from 80.66.6.99 I:['\r\n \r\n \r\n \r\n '] R:[test-case] [2006-03-14T15:18:13+0000] GET from 80.66.6.99 I:['\r\n \r\n \r\n \r\n '] R:[test-case] [2006-03-14T15:18:27+0000] GET from 80.66.6.99 I:['\r\n \r\n \r\n \r\n '] R:[test-case.*] [2006-03-14T15:18:47+0000] GET from 80.66.6.99 I:['\r\n \r\n \r\n \r\n '] R:[test-case.*|\\n*] [2006-03-14T15:18:56+0000] GET from 80.66.6.99 I:['\r\n \r\n \r\n \r\n '] R:[test-case(.*|\\n*)] [2006-03-14T15:19:08+0000] GET from 80.66.6.99 I:['\r\n \r\n \r\n \r\n '] R:[test-case(.*|\n*)] [2006-03-14T15:19:33+0000] GET from 80.66.6.99 I:['\r\n \r\n \r\n \r\n '] R:[test-case(.*|\s*)] [2006-03-14T15:19:38+0000] GET from 80.66.6.99 I:['\r\n \r\n \r\n \r\n '] R:[test-case(.*|\\s*)] [2006-03-14T15:20:22+0000] GET from 80.66.6.99 I:[' '] R:[test-case(.*|\\s*)] [2006-03-14T15:20:57+0000] GET from 80.66.6.99 I:[' \r\n '] R:[test-case(.*|\\s*)] [2006-03-14T15:21:08+0000] GET from 80.66.6.99 I:[' \r\n '] R:[test-case(.*|\\s*)test-case] [2006-03-14T15:21:28+0000] GET from 80.66.6.99 I:[' \r\n '] R:[test-case.*test-case] [2006-03-14T15:21:41+0000] GET from 80.66.6.99 I:[' \r\n '] R:[test-case(1).*test-case(1)] [2006-03-14T15:21:53+0000] GET from 80.66.6.99 I:[' \r\n '] R:[test-case.*test-case(1)] [2006-03-14T15:24:13+0000] GET from 80.66.6.99 I:[' aaaa'] R:[test-case.*test-case] [2006-03-14T15:24:20+0000] GET from 80.66.6.99 I:[' aaaa'] R:[ aaaa'] R:[\ aaaa'] R:[\\aaaa'] R:[\\aaaa'] R:[test-case] [2006-03-14T15:25:18+0000] GET from 80.66.6.99 I:['aaaa'] R:[test-case.*/t] [2006-03-14T15:25:32+0000] GET from 80.66.6.99 I:['aaaa'] R:[<.*>] [2006-03-14T15:26:17+0000] GET from 80.66.6.99 I:['aaaa'] R:[<([^<].)*>] [2006-03-14T15:26:36+0000] GET from 80.66.6.99 I:['aaaa'] R:[<([^<]|.)*>] [2006-03-14T15:26:48+0000] GET from 80.66.6.99 I:[' aaaa'] R:[<([^<]|.)*>] [2006-03-14T15:27:05+0000] GET from 80.66.6.99 I:[' aaaa'] R:[<([^<].)*>] [2006-03-14T15:27:15+0000] GET from 80.66.6.99 I:[' aaaa'] R:[<([^<].)*>] [2006-03-14T15:27:51+0000] GET from 80.66.6.99 I:[' aaaa'] R:[<.*>] [2006-03-14T15:29:34+0000] GET from 80.66.6.99 I:[' aaaa'] R:[<.*?M>] [2006-03-14T15:33:28+0000] GET from 80.66.6.99 I:[' aaaa'] R:[ aaaa'] R:[( aaaa'] R:[] [2006-03-14T15:34:10+0000] GET from 80.66.6.99 I:[' aaaa'] R:[] [2006-03-14T15:34:17+0000] GET from 80.66.6.99 I:[' aaaa'] R:[ aaaa'] R:[ aaaa'] R:[\A aaaa'] R:[ aaaa'] R:[test-case] [2006-03-14T15:35:47+0000] GET from 80.66.6.99 I:[' aaaa'] R:[\Stest-case] [2006-03-14T15:36:12+0000] GET from 80.66.6.99 I:[' aaaa'] R:[test-case.*] [2006-03-14T15:36:23+0000] GET from 80.66.6.99 I:[' aaaa test-case name="Test"> '] R:[test-case.*] [2006-03-14T15:36:32+0000] GET from 80.66.6.99 I:[' aaaa test-case name="Test"> '] R:[test-case.*] [2006-03-14T15:37:08+0000] GET from 80.66.6.99 I:[' aaaa '] R:[test-case.*] [2006-03-14T15:47:29+0000] GET from 80.66.6.99 I:[' aaaa '] R:[(test-case.*test-case)] [2006-03-14T15:48:02+0000] GET from 80.66.6.99 I:[' aaaa '] R:[(test-case.*test-case){1}] [2006-03-14T15:48:28+0000] GET from 80.66.6.99 I:[' aaaa '] R:[( test-case .* test-case )+?] [2006-03-14T15:49:03+0000] GET from 80.66.6.99 I:[' aaaa '] R:[(test-case.*test-case)+?] [2006-03-14T15:49:16+0000] GET from 80.66.6.99 I:[' aaaa '] R:[(test-case.*test-case)+?] [2006-03-14T15:49:31+0000] GET from 80.66.6.99 I:[' aaaa '] R:[(test-case .* test-case)+?] [2006-03-14T15:50:35+0000] GET from 80.66.6.99 I:[' aaaa '] R:[(test-case\w*test-case)+?] [2006-03-14T15:50:41+0000] GET from 80.66.6.99 I:[' aaaa '] R:[test-case\w*] [2006-03-14T15:51:11+0000] GET from 80.66.6.99 I:[' aaaa '] R:[test-case(\w|\s)*] [2006-03-14T15:51:27+0000] GET from 80.66.6.99 I:[' aaaa '] R:[test-case.*] [2006-03-14T19:19:51+0000] GET from 64.128.24.2 I:['X08 "this sucks"\r\nX12344 "but not this"'] R:[X\d+ "this] [2006-03-15T20:29:28+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v126/Crontab/Misc/prod/nyc.kbcfp.com#13 - updating /proj/cbtech/build/Insight-126/Crontab/Misc/prod/nyc.kbcfp.com'] R:[(.*) - (.*) (.*)] [2006-03-15T20:30:23+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v126/Crontab/Misc/prod/nyc.kbcfp.com#13 - updating /proj/cbtech/build/Insight-126/Crontab/Misc/prod/nyc.kbcfp.com'] R:[(.*)#(\d*) - (.*) (.*)] [2006-03-15T21:10:20+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v126/Crontab/Misc/prod/nyc.kbcfp.com#12 - /proj/cbtech/build/Insight-126/Crontab/Misc/prod/nyc.kbcfp.com'] R:[(.*)#(\d*) - (.*)] [2006-03-15T21:50:27+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v126/Crontab/Misc/prod/nyc.kbcfp.com\r\n... #13 change 49536 integrate on 2006/03/14 by huachanh@huachanh (ktext)\r\n\r\n added reuters registration for rolled futures.\r\n\r\n... ... edit from //fotech/Insight/Insight/head/Crontab/Misc/prod/nyc.kbcfp.com#230\r\n'] R:[^\.\.\. \.\.\. edit from (.*)$] [2006-03-15T21:50:35+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v126/Crontab/Misc/prod/nyc.kbcfp.com\r\n... #13 change 49536 integrate on 2006/03/14 by huachanh@huachanh (ktext)\r\n\r\n added reuters registration for rolled futures.\r\n\r\n... ... edit from //fotech/Insight/Insight/head/Crontab/Misc/prod/nyc.kbcfp.com#230\r\n'] R:[\.\.\. \.\.\. edit from (.*)] [2006-03-15T21:51:12+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v126/Crontab/Misc/prod/nyc.kbcfp.com\r\n... #13 change 49536 integrate on 2006/03/14 by huachanh@huachanh (ktext)\r\n\r\n added reuters registration for rolled futures.\r\n\r\n... ... edit from //fotech/Insight/Insight/head/Crontab/Misc/prod/nyc.kbcfp.com#230\r\n'] R:[\.\.\. \.\.\. edit from (.*)\n] [2006-03-15T21:51:36+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v126/Crontab/Misc/prod/nyc.kbcfp.com\r\n... #13 change 49536 integrate on 2006/03/14 by huachanh@huachanh (ktext)\r\n\r\n added reuters registration for rolled futures.\r\n\r\n... ... edit from //fotech/Insight/Insight/head/Crontab/Misc/prod/nyc.kbcfp.com#230\r\n'] R:[\.\.\. \.\.\. edit from (.*)$] [2006-03-15T21:52:06+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v126/Crontab/Misc/prod/nyc.kbcfp.com\r\n... #13 change 49536 integrate on 2006/03/14 by huachanh@huachanh (ktext)\r\n\r\n added reuters registration for rolled futures.\r\n\r\n... ... edit from //fotech/Insight/Insight/head/Crontab/Misc/prod/nyc.kbcfp.com#230\r\n'] R:[\.\.\. \.\.\. edit from (.*#\d*)] [2006-03-15T22:10:34+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v126/Crontab/Misc/prod/nyc.kbcfp.com\r\n... #13 change 49536 integrate on 2006/03/14 by huachanh@huachanh (ktext)\r\n\r\n\tadded reuters registration for rolled futures.\r\n\r\n... ... edit from //fotech/Insight/Insight/head/Crontab/Misc/prod/nyc.kbcfp.com#230\r\n'] R:[\t(.*)] [2006-03-15T22:17:14+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v126/Crontab/Misc/prod/nyc.kbcfp.com\r\n... #13 change 49536 integrate on 2006/03/14 by huachanh@huachanh (ktext)\r\n\r\n\tadded reuters registration for rolled futures.\r\n\r\n... ... edit from //fotech/Insight/Insight/head/Crontab/Misc/prod/nyc.kbcfp.com#230\r\n'] R:[change (\d*) by (.*?)@.*? on (\d{4,}/\d{2,}/\d{2,} \d{2,}:\d{2,}:\d{2,})] [2006-03-15T22:19:20+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v126/Crontab/Misc/prod/nyc.kbcfp.com\r\n... #13 change 49536 integrate on 2006/03/14 by huachanh@huachanh (ktext)\r\n\r\n\tadded reuters registration for rolled futures.\r\n\r\n... ... edit from //fotech/Insight/Insight/head/Crontab/Misc/prod/nyc.kbcfp.com#230\r\n'] R:[\.\.\. #\d* change (\d*) \w* on \d{4,}/\d{2,}/\d{2,} by (.*?)@.*? ] [2006-03-15T22:19:27+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v126/Crontab/Misc/prod/nyc.kbcfp.com\r\n... #13 change 49536 integrate on 2006/03/14 by huachanh@huachanh (ktext)\r\n\r\n\tadded reuters registration for rolled futures.\r\n\r\n... ... edit from //fotech/Insight/Insight/head/Crontab/Misc/prod/nyc.kbcfp.com#230\r\n'] R:[\.\.\. #\d* change ] [2006-03-15T22:19:34+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v126/Crontab/Misc/prod/nyc.kbcfp.com\r\n... #13 change 49536 integrate on 2006/03/14 by huachanh@huachanh (ktext)\r\n\r\n\tadded reuters registration for rolled futures.\r\n\r\n... ... edit from //fotech/Insight/Insight/head/Crontab/Misc/prod/nyc.kbcfp.com#230\r\n'] R:[\.\.\. #\d* change (\d*) \w* ] [2006-03-15T22:19:42+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v126/Crontab/Misc/prod/nyc.kbcfp.com\r\n... #13 change 49536 integrate on 2006/03/14 by huachanh@huachanh (ktext)\r\n\r\n\tadded reuters registration for rolled futures.\r\n\r\n... ... edit from //fotech/Insight/Insight/head/Crontab/Misc/prod/nyc.kbcfp.com#230\r\n'] R:[\.\.\. #\d* change (\d*) \w* on \d{4,}/\d{2,}/\d{2,} ] [2006-03-15T22:19:51+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v126/Crontab/Misc/prod/nyc.kbcfp.com\r\n... #13 change 49536 integrate on 2006/03/14 by huachanh@huachanh (ktext)\r\n\r\n\tadded reuters registration for rolled futures.\r\n\r\n... ... edit from //fotech/Insight/Insight/head/Crontab/Misc/prod/nyc.kbcfp.com#230\r\n'] R:[\.\.\. #\d* change (\d*) \w* on \d{4,}/\d{2,}/\d{2,} by (.*?)@.*? ] [2006-03-15T22:20:05+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v126/Crontab/Misc/prod/nyc.kbcfp.com\r\n... #13 change 49536 integrate on 2006/03/14 by huachanh@huachanh (ktext)\r\n\r\n\tadded reuters registration for rolled futures.\r\n\r\n... ... edit from //fotech/Insight/Insight/head/Crontab/Misc/prod/nyc.kbcfp.com#230\r\n'] R:[\.\.\. #\d* change (\d*) \w* on \d{4,}/\d{2,}/\d{2,} by (.*?)@.*? ] [2006-03-15T22:21:54+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v126/Crontab/Misc/prod/nyc.kbcfp.com\r\n... #13 change 49536 integrate on 2006/03/14 by huachanh@huachanh (ktext)\r\n\r\n\tadded reuters registration for rolled futures.\r\n\r\n... ... edit from //fotech/Insight/Insight/head/Crontab/Misc/prod/nyc.kbcfp.com#230\r\n'] R:[\.\.\. #\d* change (\d*) \w* on \d{4,}/\d{2,}/\d{2,} by (.*?)@.*? ] [2006-03-16T17:43:45+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/head/Java/com/kbcfp/idt/objectstore/ObjectStoreCache.java#46,#48'] R:[(//.*)#(\d+)] [2006-03-16T17:44:00+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/head/Java/com/kbcfp/idt/objectstore/ObjectStoreCache.java#46,#48'] R:[(//.*)#(\d+),(\d+)] [2006-03-16T17:44:13+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/head/Java/com/kbcfp/idt/objectstore/ObjectStoreCache.java#46,#48'] R:[(//.*)#(\d+)\,(\d+)] [2006-03-16T17:44:33+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/head/Java/com/kbcfp/idt/objectstore/ObjectStoreCache.java#46,#48'] R:[(//.*)#(\d+)\,#(\d+)] [2006-03-16T17:49:45+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/head/Java/com/kbcfp/idt/objectstore/ObjectStoreCache.java#46,#48'] R:[(//.*)#(\d+)\,#(\d+)] [2006-03-17T03:47:41+0000] GET from 203.28.159.170 I:['http://www.cancer.gov/cancertopics/wyntk/moles-and-dysplastic-nevi/page2/print'] R:[(.*?)(?:\/print)(.*)] [2006-03-19T03:38:20+0000] GET from 70.32.0.69 I:['
M3g4d37h\x92s Place..'] R:[/href..(.*)" .*/] [2006-03-19T03:38:36+0000] GET from 70.32.0.69 I:['
M3g4d37h\x92s Place..'] R:[/href..(.*)"/] [2006-03-19T03:38:42+0000] GET from 70.32.0.69 I:['
M3g4d37h\x92s Place..'] R:[/href..(.*)\"/] [2006-03-19T03:39:04+0000] GET from 70.32.0.69 I:['
M3g4d37h\x92s Place..'] R:[/(href)?(.*)/] [2006-03-19T03:39:23+0000] GET from 70.32.0.69 I:['
M3g4d37h\x92s Place..'] R:[/(href)?(.*)/] [2006-03-19T03:39:33+0000] GET from 70.32.0.69 I:['
M3g4d37h\x92s Place..'] R:[/(href)?..(.*)/] [2006-03-19T03:39:37+0000] GET from 70.32.0.69 I:['
M3g4d37h\x92s Place..'] R:[/(href)?..(.*)/] [2006-03-19T03:40:22+0000] GET from 70.32.0.69 I:['
M3g4d37h\x92s Place..'] R:[/(href)?..(.*)...*/] [2006-03-19T03:40:37+0000] GET from 70.32.0.69 I:['
M3g4d37h\x92s Place..'] R:[/(href)?..(.*)".*/] [2006-03-19T03:40:44+0000] GET from 70.32.0.69 I:['
M3g4d37h\x92s Place..'] R:[/(href)?..(.*)".*/] [2006-03-20T22:49:17+0000] GET from 204.253.248.247 I:['{backoffice_format NEW} {YTW 0.08017653} {ontherunSpreadToWorst 0.03382367} {book 76} {trace_repting Y} {BOAction CANCEL}'] R:[\{(\S+) (\S+)\}] [2006-03-22T03:08:12+0000] GET from 222.153.104.229 I:['\r\n\r\n\r\n\r\n\r\n
Open2View.com
'] R:[/]*>\s*((.*)\s*)+?\s*<\/tr>/] [2006-03-29T15:26:21+0000] GET from 86.39.81.155 I:['zerzer'] R:[a] [2006-04-01T01:20:11+0000] GET from 66.224.119.5 I:['sda\r\nsdb'] R:[^(sd|sr|scd|nst|osst|sg)([a-z]{1,2}|[0-9]{1,2})$] [2006-04-01T01:20:26+0000] GET from 66.224.119.5 I:['sda'] R:[^(sd|sr|scd|nst|osst|sg)([a-z]{1,2}|[0-9]{1,2})$] [2006-04-01T01:20:37+0000] GET from 66.224.119.5 I:['sda0'] R:[^(sd|sr|scd|nst|osst|sg)([a-z]{1,2}|[0-9]{1,2})$] [2006-04-01T01:20:50+0000] GET from 66.224.119.5 I:['nsta0'] R:[^(sd|sr|scd|nst|osst|sg)([a-z]{1,2}|[0-9]{1,2})$] [2006-04-05T20:08:18+0000] GET from 129.186.185.2 I:['4 1 1997 2 8.3 -2.2 -99 14.6 000 2.3\r\n00.25 0.00\r\n23.75 4.318\r\n5 1 1997 0 -3.3 -12.2 -99 22.2 000 -11.7\r\n6 1 1997 0 -3.9 -13.3 -99 11.7 000 -15.9'] R:[(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)] [2006-04-09T00:27:29+0000] GET from 72.60.155.192 I:['

'] R:[

] [2006-04-09T00:28:31+0000] GET from 72.60.155.192 I:['

'] R:[

] [2006-04-09T00:28:40+0000] GET from 72.60.155.192 I:['

'] R:[

] [2006-04-09T00:29:05+0000] GET from 72.60.155.192 I:['

'] R:[

] [2006-04-09T00:30:20+0000] GET from 72.60.155.192 I:['

'] R:[

] [2006-04-09T02:41:50+0000] GET from 72.60.155.192 I:['F-14 fighters and the AV-8B Harrier, have been disappointing. They'] R:[\W] [2006-04-09T02:46:03+0000] GET from 72.60.155.192 I:['F-14 fighters and the AV-8B Harrier, have been disappointing. They'] R:[[^\w\s]] [2006-04-09T02:47:54+0000] GET from 72.60.155.192 I:['F-14 fighters and the AV-8B Harrier, have been disappointing. They'] R:[[^\w\s\d]] [2006-04-09T02:48:11+0000] GET from 72.60.155.192 I:['F-14 fighters and the AV-8B Harrier, have been disappointing. They'] R:[[^\w\s\D]] [2006-04-09T02:49:02+0000] GET from 72.60.155.192 I:['F-14 fighters and the AV-8B Harrier, have been disappointing. They'] R:[[^\d]] [2006-04-09T02:49:17+0000] GET from 72.60.155.192 I:['F-14 fighters and the AV-8B Harrier, have been disappointing. They'] R:[[\d]] [2006-04-09T17:41:22+0000] GET from 72.60.155.192 I:['F-14 fighters and the AV-8B Harrier, have been disappointing. They'] R:[[^\w\s]] [2006-04-09T22:39:56+0000] GET from 72.60.155.192 I:['F-14 fighters and the AV-8B Harrier, have been disappointing. They'] R:[[^\w\s]] [2006-04-10T02:31:00+0000] GET from 66.171.241.179 I:['\r\n\r\nSend Invitation\r\n

\r\n \r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n
Name:Brian Albanese
School:Maryland
Status:Undergrad
Year:2006
House:Montgomery ...
Field:Communication
Send Invitation
\r\n\r\n
\r\n'] R:[Send Invitation] [2006-04-10T02:31:09+0000] GET from 66.171.241.179 I:['\r\n\r\nSend Invitation\r\n
\r\n \r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n
Name:Brian Albanese
School:Maryland
Status:Undergrad
Year:2006
House:Montgomery ...
Field:Communication
Send Invitation
\r\n\r\n
\r\n'] R:[Send Invitation] [2006-04-10T02:31:47+0000] GET from 66.171.241.179 I:['\r\n\r\nSend Invitation\r\n
\r\n \r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n
Name:Brian Albanese
School:Maryland
Status:Undergrad
Year:2006
House:Montgomery ...
Field:Communication
Send Invitation
\r\n\r\n
\r\n'] R:[Send Invitation] [2006-04-10T02:31:53+0000] GET from 66.171.241.179 I:['\r\n\r\nSend Invitation\r\n
\r\n \r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n
Name:Brian Albanese
School:Maryland
Status:Undergrad
Year:2006
House:Montgomery ...
Field:Communication
Send Invitation
\r\n\r\n
\r\n'] R:[Send Invitation] [2006-04-12T21:08:42+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v128/Java/properties/Windows XP.properties#2 - updating /proj/cbtech/build/Insight-128/Java/properties/Windows XP.properties'] R:[^(.*)#(\d*) - (.*) (.*)] [2006-04-12T21:08:56+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v128/Java/properties/Windows XP.properties#2 - updating /proj/cbtech/build/Insight-128/Java/properties/Windows XP.properties'] R:[(.*)#(\d*) - (.*) (.*)] [2006-04-12T21:10:00+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v128/Java/properties/Windows XP.properties#2 - updating /proj/cbtech/build/Insight-128/Java/properties/Windows XP.properties'] R:[^(.*)#(\d*) - (.*) (.*)$] [2006-04-12T21:15:36+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v128/Java/properties/Windows XP.properties#2 - updating /proj/cbtech/build/Insight-128/Java/properties/Windows XP.properties'] R:[^(.*)#(\d*) - (.*) (.*)$] [2006-04-12T21:16:49+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v128/Java/properties/Windows XP.properties#2 - updating /proj/cbtech/build/Insight-128/Java/properties/Windows XP.properties'] R:[^(.*)#(\d*) - (.{4-8}) (.*)$] [2006-04-12T21:17:05+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v128/Java/properties/Windows_XP.properties#2 - updating /proj/cbtech/build/Insight-128/Java/properties/Windows_XP.properties'] R:[^(.*)#(\d*) - (.{4-8}) (.*)$] [2006-04-12T21:17:16+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v128/Java/properties/Windows_XP.properties#2 - updating /proj/cbtech/build/Insight-128/Java/properties/Windows_XP.properties'] R:[^(.*)#(\d*) - (.{4,8}) (.*)$] [2006-04-12T21:17:26+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v128/Java/properties/Windows XP.properties#2 - updating /proj/cbtech/build/Insight-128/Java/properties/Windows XP.properties'] R:[^(.*)#(\d*) - (.{4,8}) (.*)$] [2006-04-12T21:22:03+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v128/Java/properties/Windows XP.properties#1 - /proj/cbtech/build/Insight-128/Java/properties/Windows XP.properties'] R:[^(.*)#(\d*) - (.*)$] [2006-04-12T21:37:31+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v128/Java/properties/Windows XP.properties //nyc.cbbin/Insight-128/Java/properties/Windows XP.properties /proj/cbtech/build/Insight-128/Java/properties/Windows XP.properties\r\n'] R:[^(//.*) (//.*)$] [2006-04-12T21:38:48+0000] GET from 204.253.248.247 I:['//fotech/Insight/Insight/v128/Java/properties/Windows XP.properties //nyc.cbbin/Insight-128/Java/properties/Windows XP.properties /proj/cbtech/build/Insight-128/Java/properties/Windows XP.properties\r\n'] R:[^(//.*) (//.*)$] [2006-04-16T14:37:59+0000] GET from 212.159.21.170 I:['source'] R:[m/^s*$/] [2006-04-20T22:05:11+0000] GET from 204.253.249.195 I:['//fotech/Insight/Insight/v128/Apps/core-services.cfg#2 - updating /proj/cbtech/build/Insight-128/Apps/core-services.cfg'] R:[^(.*)#(\d*) - (.{4,8}) (.*)$] [2006-04-20T22:10:01+0000] GET from 204.253.249.195 I:['//fotech/Insight/Insight/v128/Apps/core-services.cfg#2 - updating /proj/cbtech/build/Insight-128/Apps/core-services.cfg'] R:[^(.*)#(\d*) - (updating) (.*)$] [2006-04-20T22:10:23+0000] GET from 204.253.249.195 I:['//fotech/Insight/Insight/v128/Apps/core-services.cfg#2 - updating /proj/cbtech/build/Insight-128/Apps/core-services.cfg\r\n//fotech/Insight/Insight/v128/Apps/auxsvc-nyc-primary.cfg#1 - deleted as /proj/cbtech/build/Insight-128/Apps/auxsvc-nyc-primary.cfg'] R:[^(.*)#(\d*) - (updating) (.*)$] [2006-04-20T22:11:04+0000] GET from 204.253.249.195 I:['//fotech/Insight/Insight/v128/Apps/auxsvc-nyc-primary.cfg#1 - deleted as /proj/cbtech/build/Insight-128/Apps/auxsvc-nyc-primary.cfg'] R:[^(.*)#(\d*) - (updating) (.*)$] [2006-04-20T22:11:13+0000] GET from 204.253.249.195 I:['//fotech/Insight/Insight/v128/Apps/auxsvc-nyc-primary.cfg#1 - deleted as /proj/cbtech/build/Insight-128/Apps/auxsvc-nyc-primary.cfg'] R:[^(.*)#(\d*) - (updating|deleted as) (.*)$] [2006-04-20T22:11:26+0000] GET from 204.253.249.195 I:['//fotech/Insight/Insight/v128/Apps/auxsvc-nyc-primary.cfg#1 - deleted as /proj/cbtech/build/Insight-128/Apps/auxsvc-nyc-primary.cfg'] R:[^(.*)#(\d*) - (updating|deleted as|added as) (.*)$] [2006-04-25T05:07:15+0000] GET from 12.226.33.28 I:[' TOTAL
SKY COVER \r\n3/1/2006\r\n64\r\n\r\n31\r\n49.7\r\n33\r\n0\r\n15\r\n89\r\n19\r\n48\r\n184\r\n003\r\n3.8\r\n 210\r\n18\r\n2143\r\n   \r\n\r\n   \r\n   \r\n25\r\n18\r\n0\r\n0.08\r\n\r\n3/2/2006\r\n67\r\n32\r\n50.5\r\n35\r\n0\r\n\r\n15\r\n82\r\n15\r\n46\r\n202\r\n006\r\n6.2\r\n 210\r\n25\r\n1501\r\n   \r\n   \r\n\r\n   \r\n25\r\n18\r\n0\r\n0.11\r\n\r\n3/3/2006\r\n57\r\n42\r\n48.4\r\n15\r\n0\r\n17\r\n82\r\n24\r\n\r\n53\r\n206\r\n012\r\n13.8\r\n 210\r\n36\r\n1400\r\n   \r\n   \r\n   \r\n\r\n25\r\n18\r\n0'] R:[.*?(?:.*?){16}([0-9.])] [2006-04-25T05:08:34+0000] GET from 12.226.33.28 I:[' TOTAL
SKY COVER \r\n3/1/2006\r\n64\r\n\r\n31\r\n49.7\r\n33\r\n0\r\n15\r\n89\r\n19\r\n48\r\n184\r\n003\r\n3.8\r\n 210\r\n18\r\n2143\r\n   \r\n\r\n   \r\n   \r\n25\r\n18\r\n0\r\n0.08\r\n\r\n3/2/2006\r\n67\r\n32\r\n50.5\r\n35\r\n0\r\n\r\n15\r\n82\r\n15\r\n46\r\n202\r\n006\r\n6.2\r\n 210\r\n25\r\n1501\r\n   \r\n   \r\n\r\n   \r\n25\r\n18\r\n0\r\n0.11\r\n\r\n3/3/2006\r\n57\r\n42\r\n48.4\r\n15\r\n0\r\n17\r\n82\r\n24\r\n\r\n53\r\n206\r\n012\r\n13.8\r\n 210\r\n36\r\n1400\r\n   \r\n   \r\n   \r\n\r\n25\r\n18\r\n0'] R:[.*?(?:.*?){16}([0-9.]*)] [2006-04-25T05:09:06+0000] GET from 12.226.33.28 I:[' TOTAL
SKY COVER \r\n3/1/2006\r\n64\r\n\r\n31\r\n49.7\r\n33\r\n0\r\n15\r\n89\r\n19\r\n48\r\n184\r\n003\r\n3.8\r\n 210\r\n18\r\n2143\r\n   \r\n\r\n   \r\n   \r\n25\r\n18\r\n0\r\n0.08\r\n\r\n3/2/2006\r\n67\r\n32\r\n50.5\r\n35\r\n0\r\n\r\n15\r\n82\r\n15\r\n46\r\n202\r\n006\r\n6.2\r\n 210\r\n25\r\n1501\r\n   \r\n   \r\n\r\n   \r\n25\r\n18\r\n0\r\n0.11\r\n\r\n3/3/2006\r\n57\r\n42\r\n48.4\r\n15\r\n0\r\n17\r\n82\r\n24\r\n\r\n53\r\n206\r\n012\r\n13.8\r\n 210\r\n36\r\n1400\r\n   \r\n   \r\n   \r\n\r\n25\r\n18\r\n0'] R:[.*?] [2006-04-25T05:09:42+0000] GET from 12.226.33.28 I:[' TOTAL
SKY COVER \r\n3/1/2006\r\n64\r\n\r\n31\r\n49.7\r\n33\r\n0\r\n15\r\n89\r\n19\r\n48\r\n184\r\n003\r\n3.8\r\n 210\r\n18\r\n2143\r\n   \r\n\r\n   \r\n   \r\n25\r\n18\r\n0\r\n0.08\r\n\r\n3/2/2006\r\n67\r\n32\r\n50.5\r\n35\r\n0\r\n\r\n15\r\n82\r\n15\r\n46\r\n202\r\n006\r\n6.2\r\n 210\r\n25\r\n1501\r\n   \r\n   \r\n\r\n   \r\n25\r\n18\r\n0\r\n0.11\r\n\r\n3/3/2006\r\n57\r\n42\r\n48.4\r\n15\r\n0\r\n17\r\n82\r\n24\r\n\r\n53\r\n206\r\n012\r\n13.8\r\n 210\r\n36\r\n1400\r\n   \r\n   \r\n   \r\n\r\n25\r\n18\r\n0'] R:[(.*?)] [2006-04-25T05:11:14+0000] GET from 12.226.33.28 I:[' TOTAL
SKY COVER \r\n3/1/2006\r\n64\r\n\r\n31\r\n49.7\r\n33\r\n0\r\n15\r\n89\r\n19\r\n48\r\n184\r\n003\r\n3.8\r\n 210\r\n18\r\n2143\r\n   \r\n\r\n   \r\n   \r\n25\r\n18\r\n0\r\n0.08\r\n\r\n3/2/2006\r\n67\r\n32\r\n50.5\r\n35\r\n0\r\n\r\n15\r\n82\r\n15\r\n46\r\n202\r\n006\r\n6.2\r\n 210\r\n25\r\n1501\r\n   \r\n   \r\n\r\n   \r\n25\r\n18\r\n0\r\n0.11\r\n\r\n3/3/2006\r\n57\r\n42\r\n48.4\r\n15\r\n0\r\n17\r\n82\r\n24\r\n\r\n53\r\n206\r\n012\r\n13.8\r\n 210\r\n36\r\n1400\r\n   \r\n   \r\n   \r\n\r\n25\r\n18\r\n0'] R:[(.*?)(?=)] [2006-04-27T17:07:18+0000] GET from 85.147.75.183 I:['im just testing [img|center]javascript://www.xfire.be/x=news[/img] jaja'] R:[\[img[^\]]*\]((javascript|vbscript){1}|[^\?]*[\?]{1})[^\[]+\[\/img\]] [2006-05-05T20:42:45+0000] GET from 64.81.246.226 I:['asdfad.asdfadsfa.quotes'] R:[(?])\\"\\s*>'] R:[foo] [2006-05-12T15:28:12+0000] GET from 204.253.249.195 I:['])\\"\\s*>'] R:[] [2006-05-12T15:28:45+0000] GET from 204.253.249.195 I:['(.*)@(.*).com'] R:[foo@bar.com] [2006-05-12T15:28:55+0000] GET from 204.253.249.195 I:['(.*)@(.*)\\.com'] R:[foo@bar.com] [2006-05-12T15:29:01+0000] GET from 204.253.249.195 I:['(.*)@(.*)'] R:[foo@bar.com] [2006-05-12T15:30:36+0000] GET from 204.253.249.195 I:[''] R:[])\"\s*>] [2006-05-12T15:31:31+0000] GET from 204.253.249.195 I:['\r\n'] R:[])\"\s*>] [2006-05-12T15:31:55+0000] GET from 204.253.249.195 I:[''] R:[])(\.png)\"\s*>] [2006-05-12T16:02:18+0000] GET from 204.253.249.198 I:[''] R:[])\"\s*>] [2006-05-12T16:02:33+0000] GET from 204.253.249.198 I:[''] R:[])\"\s*>] [2006-05-12T16:03:52+0000] GET from 204.253.249.198 I:[''] R:[])\"\s*>] [2006-05-12T16:04:07+0000] GET from 204.253.249.198 I:[''] R:[] [2006-05-12T16:04:18+0000] GET from 204.253.249.198 I:[''] R:[] [2006-05-12T16:04:28+0000] GET from 204.253.249.198 I:[''] R:[] [2006-05-12T16:05:11+0000] GET from 204.253.249.198 I:[''] R:[] [2006-05-12T16:07:19+0000] GET from 204.253.249.198 I:[''] R:[] [2006-05-12T16:07:43+0000] GET from 204.253.249.198 I:[''] R:[] [2006-05-12T16:07:53+0000] GET from 204.253.249.198 I:[''] R:[] [2006-05-12T16:08:06+0000] GET from 204.253.249.198 I:[''] R:[])\s*>] [2006-05-12T16:08:34+0000] GET from 204.253.249.198 I:[''] R:[])\s*>] [2006-05-12T16:11:34+0000] GET from 204.253.249.198 I:[''] R:[])\s*>] [2006-05-12T16:11:56+0000] GET from 204.253.249.198 I:[''] R:[])\s*>] [2006-05-12T16:12:02+0000] GET from 204.253.249.198 I:[''] R:[])\s*>] [2006-05-12T16:12:22+0000] GET from 204.253.249.198 I:[''] R:[])\s*>] [2006-05-12T16:12:30+0000] GET from 204.253.249.198 I:[''] R:[])\s*>] [2006-05-12T16:13:39+0000] GET from 204.253.249.198 I:[''] R:[])\"\s*>] [2006-05-12T16:13:48+0000] GET from 204.253.249.198 I:[''] R:[])\"\s*>] [2006-05-12T16:13:59+0000] GET from 204.253.249.198 I:[''] R:[])\"\s*>] [2006-05-12T16:14:10+0000] GET from 204.253.249.198 I:[''] R:[])\"\s*>] [2006-05-12T16:14:23+0000] GET from 204.253.249.198 I:[''] R:[] [2006-05-12T17:29:21+0000] GET from 204.253.249.198 I:['\r\n'] R:[] [2006-05-12T17:29:53+0000] GET from 204.253.249.198 I:['\r\n'] R:[])\"\s*>] [2006-05-12T17:30:48+0000] GET from 204.253.249.198 I:['\r\n'] R:[])\s*>] [2006-05-12T17:31:03+0000] GET from 204.253.249.198 I:['\r\n'] R:[])\s*>] [2006-05-12T17:31:19+0000] GET from 204.253.249.198 I:['\r\n'] R:[])\s*>] [2006-05-12T17:31:36+0000] GET from 204.253.249.198 I:['\r\n'] R:[])\s*>] [2006-05-12T17:53:21+0000] GET from 204.253.249.198 I:['\r\n'] R:[])\s*>] [2006-05-12T17:53:49+0000] GET from 204.253.249.198 I:['>'] R:[])\s*>] [2006-05-12T17:54:19+0000] GET from 204.253.249.198 I:[''] R:[])\s*>] [2006-05-12T17:54:29+0000] GET from 204.253.249.198 I:[''] R:[])\s*>] [2006-05-16T05:18:15+0000] GET from 24.131.64.129 I:['\t+ \');\';\r\n document.write(productInstallOETags); // embed the Flash Product Installation SWF\r\n} else if (hasReqestedVersion) { // if we\'ve detected an acceptable version\r\n var oeTags = \'\';\r\n document.write(oeTags); // embed the Flash Content SWF when all tests are passed\r\n } else { // flash is too old or we can\'t detect the plugin\r\n var alternateContent = \'Alternate HTML content should be placed here.\'\r\n \t+ \'This content requires the Macromedia Flash Player.\'\r\n \t+ \'Get Flash\';\r\n document.write(alternateContent); // insert non-flash content\r\n }\r\n// -->\r\n\r\n\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\r\n
\r\n\t\r\n\t\t\r\n\t\t
\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t'] R:[/\r\n\r\n'] R:[r"(?<=\\d+?)\&answer\=(?P\d+?)\"\>(?P.*?)(?=\)"] [2006-06-07T16:15:54+0000] GET from 213.214.223.91 I:['\r\n\r\n'] R:[ re.compile(r"(?<=\\d+?)\&answer\=(?P\d+?)\"\>(?P.*?)(?=\)")] [2006-06-15T08:52:20+0000] GET from 125.131.161.40 I:['something.jpg'] R:[.jpg^] [2006-06-15T08:52:20+0000] GET from 125.131.161.40 I:['something.jpg'] R:[.jpg^] [2006-06-15T08:53:34+0000] GET from 125.131.161.40 I:['something.jpg'] R:[.jpg^] [2006-06-28T15:47:07+0000] GET from 213.58.135.126 I:['[[Include(templates:/whatever)]]'] R:[\[\[Include\([\S]\)\]\]] [2006-06-28T15:53:57+0000] GET from 213.58.135.126 I:['[[Include(templates:/whatever)]]'] R:[\[\[Include\((.*)\)\]\]] [2006-06-28T15:55:02+0000] GET from 213.58.135.126 I:['[[Include(templates:/whatever)]]'] R:[\[\[Include(\(.*\))\]\]] [2006-06-28T15:55:14+0000] GET from 213.58.135.126 I:['[[Include(templates:/whatever)]]'] R:[\[\[Include(\(.*\))\]\]] [2006-06-28T15:56:08+0000] GET from 213.58.135.126 I:['[[Include(templates:/whatever)]]'] R:[\[\[Include\((.*)\)\]\]] [2006-06-29T20:23:51+0000] GET from 66.208.44.5 I:['abcdefgh'] R:[a(?=b)] [2006-06-29T20:24:10+0000] GET from 66.208.44.5 I:['abcdefgh'] R:[a(?=g)] [2006-06-29T20:24:17+0000] GET from 66.208.44.5 I:['abcdefgh'] R:[a(?!g)] [2006-06-29T20:24:30+0000] GET from 66.208.44.5 I:['abcdefgh'] R:[a(?!b)] [2006-06-29T20:26:02+0000] GET from 66.208.44.5 I:['line 1\r\n x\r\nline 2\r\n y\r\n!'] R:[line \d(?!line)] [2006-06-29T20:27:29+0000] GET from 66.208.44.5 I:['line 1\r\n x\r\nline 2\r\n y\r\n!'] R:[line \d [\s\S]*?(?=!)] [2006-06-29T20:27:41+0000] GET from 66.208.44.5 I:['line 1\r\n x\r\nline 2\r\n y\r\n!'] R:[line \d[\s\S]*?(?=!)] [2006-06-29T20:28:12+0000] GET from 66.208.44.5 I:['line 1\r\n x\r\nline 2\r\n y\r\n!'] R:[line \d[\s\S]*?(?!line)(?=!)] [2006-06-29T20:29:35+0000] GET from 66.208.44.5 I:['line 1\r\n x\r\nline 2\r\n y\r\n!'] R:[line \d[\s\S]*?(?!line)] [2006-06-29T20:30:08+0000] GET from 66.208.44.5 I:['line 1\r\n x\r\nline 2\r\n y\r\n!'] R:[line \d[\s\S]+?(?!line)] [2006-06-29T20:33:46+0000] GET from 66.208.44.5 I:['line 1\r\n x\r\nline 2\r\n y\r\n!'] R:[line \d[\s\S]*(?!line)] [2006-06-29T20:34:05+0000] GET from 66.208.44.5 I:['line 1\r\n x\r\nline 2\r\n y\r\n!'] R:[line \d[\s\S]*(?!line)] [2006-06-29T20:34:48+0000] GET from 66.208.44.5 I:['line 1\r\n x\r\nline 2\r\n y\r\n!'] R:[line \d[\s\S]*?\n(?=!)] [2006-06-29T20:35:20+0000] GET from 66.208.44.5 I:['line 1\r\n x\r\nline 2\r\n y\r\n!'] R:[line \d[\s\S]*?\n(?!line)(?=!)] [2006-06-29T20:36:14+0000] GET from 66.208.44.5 I:['line 1\r\n x\r\nline 2\r\n y\r\n!'] R:[(?\r\n\r\n

Welcome to my Homepage

\r\n\r\nContent is divided into two sections:
\r\n\r\n

ColdFusion

\r\n\r\nInformation about Macromedia ColdFusion.\r\n\r\n

Wireless

\r\n\r\nInformation about Bluetooth, 802.11, and more.\r\n\r\n

This is not valid HTML

\r\n\r\n\r\n\r\n\r\n'] R:[<[hH]([1-6])>.*?] [2006-07-18T06:22:37+0000] GET from 218.107.55.251 I:['\r\n\r\n

Welcome to my Homepage

\r\n\r\nContent is divided into two sections:
\r\n\r\n

ColdFusion

\r\n\r\nInformation about Macromedia ColdFusion.\r\n\r\n

Wireless

\r\n\r\nInformation about Bluetooth, 802.11, and more.\r\n\r\n

This is not valid HTML

\r\n\r\n\r\n\r\n\r\n'] R:[<[hH]([1-6])>.*?] [2006-07-18T06:25:28+0000] GET from 218.107.55.251 I:['\r\n\r\n

Welcome to my Homepage

\r\n\r\nContent is divided into two sections:
\r\n\r\n

ColdFusion

\r\n\r\nInformation about Macromedia ColdFusion.\r\n\r\n

Wireless

\r\n\r\nInformation about Bluetooth, 802.11, and more.\r\n\r\n

This is not valid HTML

\r\n\r\n\r\n\r\n\r\n'] R:[<[hH]([1-6])>.*?] [2006-07-18T06:47:27+0000] GET from 218.107.55.251 I:['ABC01: $23.45\r\n'] R:[(?<=\$)[0-9.]+] [2006-07-18T07:32:41+0000] GET from 218.107.55.251 I:['Please enter the nine-digit id as it\r\n\r\nappears on your color - coded pass-key.\r\n'] R:[\b-\b] [2006-08-01T02:33:27+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkdsjf_klf\r\n823u8923'] R:[\w+([-+.]\w+)*] [2006-08-01T02:34:01+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkdsjf_klf\r\n823u8923'] R:[\w+([-+.]\w+)*$] [2006-08-01T02:35:52+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkdsjf_klf\r\n823u8923'] R:[\w+([-+.]\w+)*$] [2006-08-01T02:36:06+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkdsjf_klf\r\n823u8923'] R:[\w+([-+.]\w+)*] [2006-08-01T02:40:45+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkd+sjf_klf\r\n823u-8923'] R:[\w+([-+.]\w+)*] [2006-08-01T02:49:08+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkd+sjf_klf\r\n823u-8923'] R:[\w+[-.\w]*\w*] [2006-08-01T02:49:36+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkd+sjf_klf\r\n823u-8923'] R:[\w+[-.\w]*\w*$] [2006-08-01T02:50:47+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkd+sjf_klf\r\n823u-8923'] R:[\w+[-.\w]*] [2006-08-01T02:51:15+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkd+sjf_klf\r\n823u-8923_'] R:[\w+[-.\w]*] [2006-08-01T02:53:04+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkd+sjf_klf\r\n823u-8923_'] R:[\w+[-.\w]+] [2006-08-01T02:53:32+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkd+sjf_klf\r\n823u-8923_'] R:[\w+[-.\w]+\w] [2006-08-01T02:57:45+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkd+sjf_klf\r\n823u-8923_'] R:[^\w[-.\w]*\w$] [2006-08-01T02:59:07+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkd+sjf_klf\r\n823u-8923_'] R:[^\w] [2006-08-01T03:03:26+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkd+sjf_klf\r\n823u-8923_'] R:[^\w+] [2006-08-01T03:03:49+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkd+sjf_klf\r\n823u-8923_'] R:[^\w[-.\w]*\w$] [2006-08-01T03:03:58+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkd+sjf_klf\r\n823u-8923_'] R:[\w[-.\w]*\w] [2006-08-01T03:04:24+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkd+sjf_klf\r\n_823u-8923_'] R:[\w[-.\w]*\w] [2006-08-01T03:05:51+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkd+sjf_klf\r\n_823u-8923_'] R:[[0-9a-zA-Z][-.\w]*\w] [2006-08-01T03:06:15+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkd+sjf_klf\r\n_823u-8923_'] R:[[0-9a-zA-Z]] [2006-08-01T03:07:12+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkd+sjf_klf\r\n_823u-8923_'] R:[[0-9a-zA-Z]+] [2006-08-01T03:07:28+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkd+sjf_klf\r\n_823u-8923_'] R:[^[0-9a-zA-Z]+] [2006-08-01T03:07:48+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkd+sjf_klf\r\n_823u-8923_'] R:[^[0-9a-zA-Z]] [2006-08-01T03:10:45+0000] GET from 210.21.7.171 I:['dlfls\r\ndlfds%\r\nlkd+sjf_klf\r\n_823u-8923_'] R:[^[0-9a-zA-Z]+] [2006-08-01T03:25:51+0000] GET from 210.21.7.171 I:['dsf829'] R:[[0-9a-zA-Z]$] [2006-08-01T03:26:26+0000] GET from 210.21.7.171 I:['dsf829'] R:[^[0-9a-zA-Z][0-9a-zA-Z]$] [2006-08-01T03:26:59+0000] GET from 210.21.7.171 I:['dsf829'] R:[^[0-9a-zA-Z]\w*[0-9a-zA-Z]$] [2006-08-01T03:27:20+0000] GET from 210.21.7.171 I:['dsf829'] R:[^[0-9a-zA-Z][\w.-]*[0-9a-zA-Z]$] [2006-08-01T03:27:48+0000] GET from 210.21.7.171 I:['dsf829-'] R:[^[0-9a-zA-Z][\w.-]*[0-9a-zA-Z]$] [2006-08-01T03:28:00+0000] GET from 210.21.7.171 I:['dsf-829'] R:[^[0-9a-zA-Z][\w.-]*[0-9a-zA-Z]$] [2006-08-01T03:28:09+0000] GET from 210.21.7.171 I:['dsf%829'] R:[^[0-9a-zA-Z][\w.-]*[0-9a-zA-Z]$] [2006-08-01T03:28:25+0000] GET from 210.21.7.171 I:['dsf-82_9'] R:[^[0-9a-zA-Z][\w.-]*[0-9a-zA-Z]$] [2006-08-01T04:59:53+0000] GET from 210.21.7.171 I:['lsdjfl'] R:[^[0-9a-zA-Z][0-9a-zA-Z]$] [2006-08-01T05:00:14+0000] GET from 210.21.7.171 I:['lsdjfl'] R:[^[0-9a-zA-Z]\w*[0-9a-zA-Z]$] [2006-08-01T05:00:22+0000] GET from 210.21.7.171 I:['lsdjfl'] R:[^[0-9a-zA-Z][\w]*[0-9a-zA-Z]$] [2006-08-01T05:00:54+0000] GET from 210.21.7.171 I:['lsdjfl'] R:[^[0-9a-zA-Z][\w\-\.]*[0-9a-zA-Z]$] [2006-08-01T05:01:08+0000] GET from 210.21.7.171 I:['lsdjfl'] R:[^[0-9a-zA-Z][\w\-.]*[0-9a-zA-Z]$] [2006-08-01T05:01:13+0000] GET from 210.21.7.171 I:['lsdj.fl'] R:[^[0-9a-zA-Z][\w\-.]*[0-9a-zA-Z]$] [2006-08-01T05:01:20+0000] GET from 210.21.7.171 I:['lsdj.fl'] R:[^[0-9a-zA-Z][\w\-]*[0-9a-zA-Z]$] [2006-08-17T09:05:13+0000] GET from 66.35.253.193 I:['SLIDE_VERSION_NUMERIC(1,2,3)'] R:[SLIDE_VERSION_NUMERIC\s*\(\s*(\d )\s*,\s*(\d )\s*,\s*(\d )(?:\s*(\d )?)\s*\)] [2006-08-17T09:05:14+0000] GET from 194.36.240.11 I:['SLIDE_VERSION_NUMERIC(1,2,3)'] R:[SLIDE_VERSION_NUMERIC\s*\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)(?:\s*(\d+)?)\s*\)] [2006-08-17T09:06:06+0000] GET from 66.35.253.194 I:['VERSION_NUMERIC(1,15,3)'] R:[VERSION_NUMERIC\s*\(\s*(\d )\s*,\s*(\d )\s*,\s*(\d )(?:\s*(\d )?)\s*\)] [2006-08-17T09:06:06+0000] GET from 194.36.240.11 I:['VERSION_NUMERIC(1,15,3)'] R:[VERSION_NUMERIC\s*\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)(?:\s*(\d+)?)\s*\)] [2006-08-17T09:06:08+0000] GET from 66.35.253.193 I:['VERSION_NUMERIC(1,15,3)'] R:[VERSION_NUMERIC\s*\(\s*(\d )\s*,\s*(\d )\s*,\s*(\d )(?:\s*(\d )?)\s*\)] [2006-10-05T22:20:01+0000] GET from 70.244.200.192 I:['www.birdlist.org 70.244.200.192 - - [05/Oct/2006:17:14:06 -0500] "GET /spidertrap/ HTTP/1.1" 200 903 "-" "Mozilla/5.0 (X11;'] R:[ ^(?P\b) (?P\b) -.*"GET /spidertrap] [2006-10-05T22:20:27+0000] GET from 70.244.200.192 I:['www.birdlist.org 70.244.200.192 - - [05/Oct/2006:17:14:06 -0500] "GET /spidertrap/ HTTP/1.1" 200 903 "-" "Mozilla/5.0 (X11;'] R:[ ^(?P) (?P) -.*"GET /spidertrap] [2006-10-07T02:59:50+0000] GET from 70.244.200.192 I:['2006-10-06 20:57:34 H=(ibm3.ma.utexas.edu) [146.6.139.124] F= rejected RCPT : Unrouteable address'] R:[\[(?P)\] .*testuser] [2006-10-10T09:53:12+0000] GET from 222.153.88.20 I:['.OPER ches'] R:[\.OPER] [2006-10-10T09:53:34+0000] GET from 222.153.88.20 I:['.OPER ches'] R:[.OPER] [2006-10-10T09:56:39+0000] GET from 222.153.88.20 I:['AVL c>'] R:[AVL.*c>] [2006-10-10T09:56:45+0000] GET from 222.153.88.20 I:['AVL c>'] R:[AVL.*c>] [2006-10-10T09:56:53+0000] GET from 222.153.88.20 I:[' AVL c>'] R:[AVL.*c>] [2006-10-14T16:45:28+0000] GET from 200.93.62.191 I:['application/pdf'] R:[/^application\/((\w|\.|-)*(excel$|\.(sun.xml|opendocument)\.\w+)|pdf|msword)/] [2006-10-15T23:42:38+0000] GET from 154.20.93.119 I:['
'] R:[])*>]
[2006-10-15T23:43:55+0000] GET from 154.20.93.119 I:['
'] R:[])*>]
[2006-10-15T23:44:04+0000] GET from 154.20.93.119 I:['
'] R:[])*>]
[2006-10-15T23:44:42+0000] GET from 154.20.93.119 I:['
'] R:[]+)*>]
[2006-10-15T23:44:53+0000] GET from 154.20.93.119 I:['
'] R:[]+)*>]
[2006-10-15T23:45:18+0000] GET from 154.20.93.119 I:['
asdf'] R:[]+)*>]
[2006-10-15T23:46:33+0000] GET from 154.20.93.119 I:['
'] R:[]+)*>]
[2006-10-15T23:49:17+0000] GET from 154.20.93.119 I:['
'] R:[]*)*>]
[2006-10-16T00:38:43+0000] GET from 154.20.93.119 I:['
'] R:[])*>]
[2006-10-16T00:39:12+0000] GET from 154.20.93.119 I:['
'] R:[])*>]
[2006-10-16T00:39:26+0000] GET from 154.20.93.119 I:['
'] R:[]*)*>]
[2006-10-16T00:39:40+0000] GET from 154.20.93.119 I:['
'] R:[]*)*>]
[2006-10-16T00:39:58+0000] GET from 154.20.93.119 I:['
jhg'] R:[]*)*>]
[2006-10-20T13:31:35+0000] GET from 138.253.198.103 I:['Staphylococcus aureus isolates'] R:[aureus]
[2006-10-20T13:32:02+0000] GET from 138.253.198.103 I:['Staphylococcus aureus isolates'] R:['aureus']
[2006-10-24T05:35:49+0000] GET from 203.29.74.254 I:['SELECT * FROM foo'] R:[^ *SELECT]
[2006-10-24T05:36:22+0000] GET from 203.29.74.254 I:['  SELECT \r\n* FROM foo'] R:[^ *SELECT]
[2006-10-24T05:36:34+0000] GET from 203.29.74.254 I:['  \r\nSELECT \r\n* FROM foo'] R:[^ *SELECT]
[2006-10-24T05:37:07+0000] GET from 203.29.74.254 I:['  \r\nSELECT \r\n* FROM foo'] R:[^[ \n\r]*SELECT]
[2006-10-24T05:37:43+0000] GET from 203.29.74.254 I:['  \r\n    SELECT \r\n* FROM foo'] R:[^[ \n\r]*SELECT]
[2006-11-01T11:38:00+0000] GET from 66.27.126.96 I:['orz@ucsd.edu'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_-]+(\.[a-z0-9_-]+)+]
[2006-11-01T11:38:25+0000] GET from 66.27.126.96 I:['orz@ucsd'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_-]+(\.[a-z0-9_-]+)+]
[2006-11-01T11:38:34+0000] GET from 66.27.126.96 I:['orz dot ucsd'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_-]+(\.[a-z0-9_-]+)+]
[2006-11-01T11:40:57+0000] GET from 66.27.126.96 I:['orz@test.domain.com'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_-]+(\.[a-z0-9_-]+)+]
[2006-11-01T11:41:32+0000] GET from 66.27.126.96 I:['orz@-test.domain.com'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_-]+(\.[a-z0-9_-]+)+]
[2006-11-01T11:41:42+0000] GET from 66.27.126.96 I:['orz@-test.domain.com-'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_-]+(\.[a-z0-9_-]+)+]
[2006-11-01T11:42:48+0000] GET from 66.27.126.96 I:['orz@-test.domain.com-'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_]+(\.[a-z0-9_-]+)+]
[2006-11-01T11:43:22+0000] GET from 66.27.126.96 I:['orz@-test.domain.com-'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z0-9_]]
[2006-11-01T11:43:30+0000] GET from 66.27.126.96 I:['orz@test.domain.com-'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z0-9_]]
[2006-11-01T11:45:41+0000] GET from 66.27.126.96 I:['orz@test.domain.com-'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z0-9]]
[2006-11-01T11:46:50+0000] GET from 66.27.126.96 I:['orz@test.domain.com---'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z0-9]]
[2006-11-01T11:47:10+0000] GET from 66.27.126.96 I:['orz@test.domain.comM---'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z0-9]]
[2006-11-01T11:47:21+0000] GET from 66.27.126.96 I:['orz@-test.domain.com'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z0-9]]
[2006-11-01T11:47:33+0000] GET from 66.27.126.96 I:['orz@test.domain.com'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z0-9]+]
[2006-11-01T11:47:33+0000] GET from 66.27.126.96 I:['orz@test.domain.com'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z0-9]+]
[2006-11-01T11:47:42+0000] GET from 66.27.126.96 I:['orz@test.domain.com-'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z0-9]+]
[2006-11-01T11:51:03+0000] GET from 66.27.126.96 I:['orz@test.domain.com-'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]+]
[2006-11-01T11:51:20+0000] GET from 66.27.126.96 I:['orz@test.domain.com6'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]+]
[2006-11-01T11:59:26+0000] GET from 66.27.126.96 I:['orz@test.domain.com6'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]$]
[2006-11-01T11:59:34+0000] GET from 66.27.126.96 I:['orz@test.domain.com-'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]$]
[2006-11-01T11:59:40+0000] GET from 66.27.126.96 I:['orz@test.domain.com'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]$]
[2006-11-01T12:00:47+0000] GET from 66.27.126.96 I:['orz@test.domain.com'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z]{1}[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]$]
[2006-11-01T12:00:55+0000] GET from 66.27.126.96 I:['orz@4test.domain.com'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z]{1}[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]$]
[2006-11-01T12:01:00+0000] GET from 66.27.126.96 I:['orz@-test.domain.com'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@[a-z]{1}[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]$]
[2006-11-01T12:10:47+0000] GET from 66.27.126.96 I:['orz@test.domain.com'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@(([a-z]{1}[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]$)|(^[0-255](\.[0-255]{3})))]
[2006-11-01T12:11:02+0000] GET from 66.27.126.96 I:['orz@255.255.255.255'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@(([a-z]{1}[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]$)|(^[0-255](\.[0-255]{3})))]
[2006-11-01T12:13:24+0000] GET from 66.27.126.96 I:['orz@255.255.255.255'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@(([a-z]{1}[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]$)|(^([0-2][0-5][0-5])(\.([0-2][0-5][0-5]){3})))]
[2006-11-01T12:13:55+0000] GET from 66.27.126.96 I:['orz@ucsd.edu'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@(([a-z]{1}[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]$)|(^([0-2][0-5][0-5])(\.([0-2][0-5][0-5]){3})))]
[2006-11-01T12:14:09+0000] GET from 66.27.126.96 I:['orz@5df.com'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@(([a-z]{1}[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]$)|(^([0-2][0-5][0-5])(\.([0-2][0-5][0-5]){3})))]
[2006-11-01T12:14:28+0000] GET from 66.27.126.96 I:['orz@255.255.255.255'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@(([a-z]{1}[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]$)|(^([0-2][0-5][0-5])(\.([0-2][0-5][0-5]){3})))]
[2006-11-01T12:17:46+0000] GET from 66.27.126.96 I:['orz@255.255.255.255'] R:[(^([0-2][0-5][0-5])(\.([0-2][0-5][0-5]){3}))]
[2006-11-01T12:17:53+0000] GET from 66.27.126.96 I:['255.255.255.255'] R:[(^([0-2][0-5][0-5])(\.([0-2][0-5][0-5]){3}))]
[2006-11-01T12:18:10+0000] GET from 66.27.126.96 I:['255.255.255.255'] R:[(^([0-2][0-5][0-5])(\.([0-2][0-5][0-5])+))]
[2006-11-01T12:18:51+0000] GET from 66.27.126.96 I:['255.255.255.255'] R:[(^([0-2][0-5][0-5]){1}(\.([0-2][0-5][0-5])+))]
[2006-11-01T12:20:37+0000] GET from 66.27.126.96 I:['144'] R:[(^([0-2][0-5][0-5]))]
[2006-11-01T12:20:48+0000] GET from 66.27.126.96 I:['055'] R:[(^([0-2][0-5][0-5]))]
[2006-11-01T12:20:54+0000] GET from 66.27.126.96 I:['555'] R:[(^([0-2][0-5][0-5]))]
[2006-11-01T12:22:47+0000] GET from 66.27.126.96 I:['555'] R:[(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)]
[2006-11-01T12:22:58+0000] GET from 66.27.126.96 I:['255.255.255.255'] R:[(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)]
[2006-11-01T12:23:04+0000] GET from 66.27.126.96 I:['55.255.255.255'] R:[(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)]
[2006-11-01T12:24:28+0000] GET from 66.27.126.96 I:['55.255.255.255'] R:[(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)]
[2006-11-01T12:24:48+0000] GET from 66.27.126.96 I:['10.0.0.1'] R:[(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)]
[2006-11-01T12:24:54+0000] GET from 66.27.126.96 I:['10.0.1'] R:[(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)]
[2006-11-01T12:25:34+0000] GET from 66.27.126.96 I:['10.0.1'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@(([a-z]{1}[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]$)|((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)))]
[2006-11-01T12:25:40+0000] GET from 66.27.126.96 I:['dichan@ucsd.edu'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@(([a-z]{1}[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]$)|((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)))]
[2006-11-01T12:25:52+0000] GET from 66.27.126.96 I:['dichan@255.255.255.255'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@(([a-z]{1}[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]$)|((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)))]
[2006-11-01T12:25:59+0000] GET from 66.27.126.96 I:['dichan@10.0.0.1'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@(([a-z]{1}[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]$)|((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)))]
[2006-11-01T12:26:11+0000] GET from 66.27.126.96 I:['dichan@10.0.0.1-'] R:[[a-z0-9_-]+(\.[a-z0-9_-]+)*@(([a-z]{1}[a-z0-9_]+(\.[a-z0-9_-]+)+[a-z]$)|((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)))]
[20
Vem var hogwarts \xf6verinkvisitor i bok 5?
Draco MalfoyProf. McGonagall
Prof. DumbledoreProf. Umbridge
Vem var hogwarts \xf6verinkvisitor i bok 5?
Draco MalfoyProf. McGonagall
Prof. DumbledoreProf. Umbridge