<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Pcapline.py and the Ann&#039;s Aurora network forensics challenge</title>
	<atom:link href="http://www.mcgrewsecurity.com/2010/07/09/pcapline-py-and-the-anns-aurora-network-forensics-challenge/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mcgrewsecurity.com/2010/07/09/pcapline-py-and-the-anns-aurora-network-forensics-challenge/</link>
	<description></description>
	<lastBuildDate>Thu, 05 Jan 2012 11:44:23 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Wesley McGrew</title>
		<link>http://www.mcgrewsecurity.com/2010/07/09/pcapline-py-and-the-anns-aurora-network-forensics-challenge/#comment-952</link>
		<dc:creator>Wesley McGrew</dc:creator>
		<pubDate>Tue, 28 Jun 2011 14:52:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.mcgrewsecurity.com/?p=768#comment-952</guid>
		<description>Haven&#039;t tried it out in Ubuntu 11.04, but I will soon to see if I can figure out what&#039;s going on with that.</description>
		<content:encoded><![CDATA[<p>Haven&#8217;t tried it out in Ubuntu 11.04, but I will soon to see if I can figure out what&#8217;s going on with that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cameron</title>
		<link>http://www.mcgrewsecurity.com/2010/07/09/pcapline-py-and-the-anns-aurora-network-forensics-challenge/#comment-951</link>
		<dc:creator>Cameron</dc:creator>
		<pubDate>Fri, 17 Jun 2011 14:25:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.mcgrewsecurity.com/?p=768#comment-951</guid>
		<description>Love the tool however when running it on my Ubuntu 11.04 box I&#039;m having an issue where the html doc inside the seperate packet folders show up blank.. I&#039;m using it to parse though the evidence file from that forensic challenge to ensure that it was working correctly.</description>
		<content:encoded><![CDATA[<p>Love the tool however when running it on my Ubuntu 11.04 box I&#8217;m having an issue where the html doc inside the seperate packet folders show up blank.. I&#8217;m using it to parse though the evidence file from that forensic challenge to ensure that it was working correctly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: &#187; Thoughts and Comments</title>
		<link>http://www.mcgrewsecurity.com/2010/07/09/pcapline-py-and-the-anns-aurora-network-forensics-challenge/#comment-950</link>
		<dc:creator>&#187; Thoughts and Comments</dc:creator>
		<pubDate>Sat, 25 Sep 2010 23:06:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.mcgrewsecurity.com/?p=768#comment-950</guid>
		<description>[...] part of a recent forensic challenge, Wesley McGrew created pcapline.py to help answer the questions of the challenge. Rather than focusing on the tool itself, what I [...]</description>
		<content:encoded><![CDATA[<p>[...] part of a recent forensic challenge, Wesley McGrew created pcapline.py to help answer the questions of the challenge. Rather than focusing on the tool itself, what I [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim</title>
		<link>http://www.mcgrewsecurity.com/2010/07/09/pcapline-py-and-the-anns-aurora-network-forensics-challenge/#comment-949</link>
		<dc:creator>Jim</dc:creator>
		<pubDate>Thu, 29 Jul 2010 18:59:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.mcgrewsecurity.com/?p=768#comment-949</guid>
		<description>Very interesting talk today. Thanks for coming by.</description>
		<content:encoded><![CDATA[<p>Very interesting talk today. Thanks for coming by.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wesley McGrew</title>
		<link>http://www.mcgrewsecurity.com/2010/07/09/pcapline-py-and-the-anns-aurora-network-forensics-challenge/#comment-948</link>
		<dc:creator>Wesley McGrew</dc:creator>
		<pubDate>Mon, 19 Jul 2010 12:43:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.mcgrewsecurity.com/?p=768#comment-948</guid>
		<description>Thanks for the patch.  The lack of testing of pcapline shows ;)

As for terms-of-use and licensing, let&#039;s call it BSD.  Essentially: do as you please with it, all I want is attribution.</description>
		<content:encoded><![CDATA[<p>Thanks for the patch.  The lack of testing of pcapline shows <img src='http://www.mcgrewsecurity.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>As for terms-of-use and licensing, let&#8217;s call it BSD.  Essentially: do as you please with it, all I want is attribution.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marty Sells</title>
		<link>http://www.mcgrewsecurity.com/2010/07/09/pcapline-py-and-the-anns-aurora-network-forensics-challenge/#comment-947</link>
		<dc:creator>Marty Sells</dc:creator>
		<pubDate>Mon, 19 Jul 2010 03:10:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.mcgrewsecurity.com/?p=768#comment-947</guid>
		<description>Very nice tool. I did notice that some HTTP responses cause crashes due to missing Content-type headers. Fixed with a simple &quot;if m:&quot; around line 160.

I also made mods to add some additional fields:

                        # added by marty
                        m = re.search(r&#039;^HTTP/1.1 (.+)\n&#039;,data)
                        if m:
                                s += &#039;  HTTP result: %s\n&#039; % m.group(1)

What&#039;s the terms of use for pcapline?</description>
		<content:encoded><![CDATA[<p>Very nice tool. I did notice that some HTTP responses cause crashes due to missing Content-type headers. Fixed with a simple &#8220;if m:&#8221; around line 160.</p>
<p>I also made mods to add some additional fields:</p>
<p>                        # added by marty<br />
                        m = re.search(r&#8217;^HTTP/1.1 (.+)\n&#8217;,data)<br />
                        if m:<br />
                                s += &#8216;  HTTP result: %s\n&#8217; % m.group(1)</p>
<p>What&#8217;s the terms of use for pcapline?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: M450K1S</title>
		<link>http://www.mcgrewsecurity.com/2010/07/09/pcapline-py-and-the-anns-aurora-network-forensics-challenge/#comment-946</link>
		<dc:creator>M450K1S</dc:creator>
		<pubDate>Thu, 15 Jul 2010 10:18:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.mcgrewsecurity.com/?p=768#comment-946</guid>
		<description>That was nice. Congratulations! because you win the 1st price.</description>
		<content:encoded><![CDATA[<p>That was nice. Congratulations! because you win the 1st price.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wesley McGrew</title>
		<link>http://www.mcgrewsecurity.com/2010/07/09/pcapline-py-and-the-anns-aurora-network-forensics-challenge/#comment-945</link>
		<dc:creator>Wesley McGrew</dc:creator>
		<pubDate>Sun, 11 Jul 2010 19:16:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.mcgrewsecurity.com/?p=768#comment-945</guid>
		<description>Thanks Sherri!  Glad to see that the judges like the tool.  I&#039;m putting together some network forensics course material together for law enforcement training here at the NFTC, so I may be adding features to pcapline as I go to make it something the students in the class can use.</description>
		<content:encoded><![CDATA[<p>Thanks Sherri!  Glad to see that the judges like the tool.  I&#8217;m putting together some network forensics course material together for law enforcement training here at the NFTC, so I may be adding features to pcapline as I go to make it something the students in the class can use.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sherri</title>
		<link>http://www.mcgrewsecurity.com/2010/07/09/pcapline-py-and-the-anns-aurora-network-forensics-challenge/#comment-944</link>
		<dc:creator>Sherri</dc:creator>
		<pubDate>Sun, 11 Jul 2010 19:07:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.mcgrewsecurity.com/?p=768#comment-944</guid>
		<description>Hi Wesley! Awesome tool. I updated forensicscontest.com so that it has the latest version of pcapline.py now.  We&#039;ll just put a link to your site in our &quot;Tools&quot; section, so that it&#039;s always be the most up to date.

Congratulations!

Sherri</description>
		<content:encoded><![CDATA[<p>Hi Wesley! Awesome tool. I updated forensicscontest.com so that it has the latest version of pcapline.py now.  We&#8217;ll just put a link to your site in our &#8220;Tools&#8221; section, so that it&#8217;s always be the most up to date.</p>
<p>Congratulations!</p>
<p>Sherri</p>
]]></content:encoded>
	</item>
</channel>
</rss>

