<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Hunting Packets</title>
	<atom:link href="http://huntingpackets.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://huntingpackets.wordpress.com</link>
	<description>A cheat sheet for security analysts</description>
	<lastBuildDate>Thu, 28 Oct 2010 05:17:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='huntingpackets.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Hunting Packets</title>
		<link>http://huntingpackets.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://huntingpackets.wordpress.com/osd.xml" title="Hunting Packets" />
	<atom:link rel='hub' href='http://huntingpackets.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Security has the best map in IT</title>
		<link>http://huntingpackets.wordpress.com/2010/10/28/security-has-the-best-map-in-it/</link>
		<comments>http://huntingpackets.wordpress.com/2010/10/28/security-has-the-best-map-in-it/#comments</comments>
		<pubDate>Thu, 28 Oct 2010 04:27:31 +0000</pubDate>
		<dc:creator>huntingpackets</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://huntingpackets.wordpress.com/?p=44</guid>
		<description><![CDATA[This one is mostly for the internal security guys as there is nothing stealth about this, sorry pentesters but you have enough of the cool toys.  As I have noticed in the past at medium to bigger shops security usually has the best network/asset map.  This is due to the basics of our jobs in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=huntingpackets.wordpress.com&amp;blog=3841604&amp;post=44&amp;subd=huntingpackets&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This one is mostly for the internal security guys as there is nothing stealth about this, sorry pentesters but you have enough of the cool toys.  As I have noticed in the past at medium to bigger shops security usually has the best network/asset map.  This is due to the basics of our jobs in looking at fine details, most other IT teams move from one project to another keeping the plates spinning.  To aid in getting a basic map of systems I created this simple shell script that will create a csv that will include IP, ping status, NETBIOS name and DNS entries.</p>
<p>First create your IP list in excel.  These steps assume that we are listing out /24 networks.<br />
-  A1 will be the first three octets of the IP.  Copy that down to cover the subnet.<br />
-  192.168.6.<br />
-  B1 will be 1.  Do a &#8220;fill series&#8221; so that it goes by 1 all the way down to 254.<br />
-  C1 will be &#8220;=A1&amp;B1&#8243;.  This will give you each IP.<br />
-  Repeat this for each subnet in your list.<br />
-  Copy all cells from column C into a simple text editor.<br />
-  I find it good to create 3 lists as they will have different scan times and sources.<br />
-  inside_infra.txt<br />
-  inside_users.txt<br />
-  outside.txt<br />
-  Below is a sample of what you will see in the text file.  With this list we can create a script to scan each item.<br />
192.168.6.1<br />
192.168.6.2<br />
192.168.6.3<br />
192.168.6.4</p>
<p>Create the following 3 folders next to each other so calls in script will line up.<br />
-  scripts<br />
-  results<br />
-  ip_lists</p>
<p>Copy the script below into the &#8220;scripts&#8221; folder and the ip lists you created into the &#8220;ip_lists&#8221; folder.</p>
<p>######################################################################<br />
#! /bin/sh</p>
<p># read text file and run all below for each entry<br />
for ip_addr in $(cat ../ip_lists/inside_infra_ip_list.txt);do</p>
<p># ping sweep<br />
ping_answer=$(ping -c 1 $ip_addr | grep &#8220;bytes from&#8221; | cut -d&#8221; &#8221; -f 2)<br />
if [ "$ping_answer" = 'bytes' ]<br />
then<br />
system_up=$(echo up)<br />
else<br />
system_up=$(echo down)<br />
fi</p>
<p># netbios sweep<br />
netbios_name=$(nbtscan -s , $ip_addr | cut -d&#8221;,&#8221; -f 2 | sed s/\ //g)</p>
<p># nslookup sweep<br />
dns_name=$(nslookup $ip_addr | grep &#8220;name =&#8221; | cut -d&#8221; &#8221; -f 3 | sed s/.$//)<br />
clean_dns=$(echo $dns_name | sed s/\ /\|/g)</p>
<p># write to csv file<br />
echo $ip_addr,$system_up,$netbios_name,$clean_dns &gt;&gt; ../results/ip_ping_netbios_dns_list.csv</p>
<p>done<br />
######################################################################</p>
<p>As you can see there is a bunch of details to clean up the output so the csv is nice (no leading or trailing spaces).</p>
<p>Also, there can be many DNS entries for some hosts.  I have divided them by a &#8220;|&#8221; so you can parse out with excel if you like.  If we used something like comma or tab then it could cause issues during the first load.</p>
<p>You will need to install nbtscan if your linux OS of choice does not have this by default.  For Ubuntu is is &#8220;sudo apt-get install nbtscan&#8221;.</p>
<p>Change the input and output file names in the script to your needs.</p>
<p>Change into the scripts folder and run it.<br />
-  sh ./iplist_full_scan.sh</p>
<p>After it is done look in the results folder for your output.</p>
<p>Here is what you will see in excel.  Columns are IP &#8211; Ping result &#8211; Netbios Name &#8211; DNS Name (could be many)</p>
<p>192.168.6.1    up    WINDOWS_SERVER    windows_server.example.local<br />
192.168.6.2    down            ips.example.local<br />
192.168.6.3    up            linux_server.example.local<br />
192.168.6.4    up</p>
<p>You will notice patterns like those above.  Not all servers respond to ping.  Not all server have Netbios names and not lots of non server equipment might not have either but will respond to ping.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/huntingpackets.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/huntingpackets.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/huntingpackets.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/huntingpackets.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/huntingpackets.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/huntingpackets.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/huntingpackets.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/huntingpackets.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/huntingpackets.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/huntingpackets.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/huntingpackets.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/huntingpackets.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/huntingpackets.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/huntingpackets.wordpress.com/44/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=huntingpackets.wordpress.com&amp;blog=3841604&amp;post=44&amp;subd=huntingpackets&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://huntingpackets.wordpress.com/2010/10/28/security-has-the-best-map-in-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/acd2199c52e3e918ac50923cfed5b298?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">huntingpackets</media:title>
		</media:content>
	</item>
		<item>
		<title>Does your IDS CPU go spike in the night?</title>
		<link>http://huntingpackets.wordpress.com/2010/10/14/does-your-ids-cpu-go-spike-in-the-night/</link>
		<comments>http://huntingpackets.wordpress.com/2010/10/14/does-your-ids-cpu-go-spike-in-the-night/#comments</comments>
		<pubDate>Thu, 14 Oct 2010 05:00:35 +0000</pubDate>
		<dc:creator>huntingpackets</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://huntingpackets.wordpress.com/?p=37</guid>
		<description><![CDATA[Those single threads killing your IDS?  Do you have a single core at 100% and the rest under 10%?  Sometimes the issue is not a bad rule or strange traffic.  Rule profiling does not always help.  The issue could be a new backup or DR sync that the sysadmins started and did not tell you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=huntingpackets.wordpress.com&amp;blog=3841604&amp;post=37&amp;subd=huntingpackets&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Those single threads killing your IDS?  Do you have a single core at 100% and the rest under 10%?  Sometimes the issue is not a bad rule or strange traffic.  Rule profiling does not always help.  The issue could be a new backup or DR sync that the sysadmins started and did not tell you about.  Here is a simple way I have found to find the &#8220;top talkers&#8221; in view of your IDS.</p>
<p>1.  Capture the SRC IP/Port and DST IP/Port data.  This is a small part of what you would get with &#8220;flow&#8221; data.</p>
<blockquote><p>sudo tcpdump -i fp2 -nn &gt; /tmp/top_talkers.txt</p></blockquote>
<ul>
<li>notice we don&#8217;t use &#8220;-s 0&#8243; or &#8220;-vv&#8221; as we only need the basics of each packet (src ip/port and dst ip/port)</li>
<li>notice we are not writing the packets (-w &lt;file&gt;) only the output of the screen to file</li>
<li>the data we are collecting is smaller than a pcap would be but depending on the amount of data in view of the IDS your disk may fill up quickly.  If your CPU is at 100% you only need to capture for about 5 minutes to find your top talkers.</li>
</ul>
<p>2.  Now we need to grab the fields we want (src ip/port and dst ip/port), sort them, and order them based on counts of unique combos.</p>
<blockquote><p>cat /tmp/top_talkers.txt | sort | uniq -c | sort</p></blockquote>
<ul>
<li>The end of your list will look something like this.  The syntax is &lt;count&gt; &lt;src_ip&gt;.&lt;src_port&gt; &lt;dst_ip&gt;.&lt;dst_port&gt;</li>
</ul>
<blockquote><p>34903 192.168.1.3.2051 192.168.1.2.42062:<br />
67945 192.168.1.2.42062 192.168.1.3.2051:</p></blockquote>
<p>3.  Work with your sysadmin team on what each system is and what type of  traffic is running on those ports.  If it happens each night and it is  single host to single host we can add a filter so the traffic is spit out before the long list of rules.  Remember unless your budget is unlimited your IDS environment is a game of filtering what you don&#8217;t think is a risk so you can monitor more traffic that you think might before your max your hardware out.</p>
<p>&nbsp;</p>
<p>Please comment if you have another way of doing the same.  It is good to share as the vendor does not always have a way to troubleshoot it all.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/huntingpackets.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/huntingpackets.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/huntingpackets.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/huntingpackets.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/huntingpackets.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/huntingpackets.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/huntingpackets.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/huntingpackets.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/huntingpackets.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/huntingpackets.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/huntingpackets.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/huntingpackets.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/huntingpackets.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/huntingpackets.wordpress.com/37/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=huntingpackets.wordpress.com&amp;blog=3841604&amp;post=37&amp;subd=huntingpackets&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://huntingpackets.wordpress.com/2010/10/14/does-your-ids-cpu-go-spike-in-the-night/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/acd2199c52e3e918ac50923cfed5b298?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">huntingpackets</media:title>
		</media:content>
	</item>
		<item>
		<title>back to life</title>
		<link>http://huntingpackets.wordpress.com/2010/10/14/back-to-life/</link>
		<comments>http://huntingpackets.wordpress.com/2010/10/14/back-to-life/#comments</comments>
		<pubDate>Thu, 14 Oct 2010 04:16:28 +0000</pubDate>
		<dc:creator>huntingpackets</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://huntingpackets.wordpress.com/?p=35</guid>
		<description><![CDATA[After 2 years without adding anything I think it is time to start again.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=huntingpackets.wordpress.com&amp;blog=3841604&amp;post=35&amp;subd=huntingpackets&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>After 2 years without adding anything I think it is time to start again.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/huntingpackets.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/huntingpackets.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/huntingpackets.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/huntingpackets.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/huntingpackets.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/huntingpackets.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/huntingpackets.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/huntingpackets.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/huntingpackets.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/huntingpackets.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/huntingpackets.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/huntingpackets.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/huntingpackets.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/huntingpackets.wordpress.com/35/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=huntingpackets.wordpress.com&amp;blog=3841604&amp;post=35&amp;subd=huntingpackets&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://huntingpackets.wordpress.com/2010/10/14/back-to-life/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/acd2199c52e3e918ac50923cfed5b298?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">huntingpackets</media:title>
		</media:content>
	</item>
		<item>
		<title>ms08-067 &#8211; it starts</title>
		<link>http://huntingpackets.wordpress.com/2008/10/26/ms08-067-it-starts/</link>
		<comments>http://huntingpackets.wordpress.com/2008/10/26/ms08-067-it-starts/#comments</comments>
		<pubDate>Sun, 26 Oct 2008 02:31:48 +0000</pubDate>
		<dc:creator>huntingpackets</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://huntingpackets.wordpress.com/?p=31</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=huntingpackets.wordpress.com&amp;blog=3841604&amp;post=31&amp;subd=huntingpackets&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://huntingpackets.files.wordpress.com/2008/10/ms08-067.jpg"><img class="alignnone size-full wp-image-32" title="ms08-067 - here we go!" src="http://huntingpackets.files.wordpress.com/2008/10/ms08-067.jpg?w=497" alt=""   /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/huntingpackets.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/huntingpackets.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/huntingpackets.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/huntingpackets.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/huntingpackets.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/huntingpackets.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/huntingpackets.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/huntingpackets.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/huntingpackets.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/huntingpackets.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/huntingpackets.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/huntingpackets.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/huntingpackets.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/huntingpackets.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=huntingpackets.wordpress.com&amp;blog=3841604&amp;post=31&amp;subd=huntingpackets&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://huntingpackets.wordpress.com/2008/10/26/ms08-067-it-starts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/acd2199c52e3e918ac50923cfed5b298?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">huntingpackets</media:title>
		</media:content>

		<media:content url="http://huntingpackets.files.wordpress.com/2008/10/ms08-067.jpg" medium="image">
			<media:title type="html">ms08-067 - here we go!</media:title>
		</media:content>
	</item>
		<item>
		<title>new project</title>
		<link>http://huntingpackets.wordpress.com/2008/08/28/new-project/</link>
		<comments>http://huntingpackets.wordpress.com/2008/08/28/new-project/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 00:20:27 +0000</pubDate>
		<dc:creator>huntingpackets</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://huntingpackets.wordpress.com/?p=28</guid>
		<description><![CDATA[New project for the home network &#8211; &#8220;network black box&#8221;.  More details and a build doc later.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=huntingpackets.wordpress.com&amp;blog=3841604&amp;post=28&amp;subd=huntingpackets&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>New project for the home network &#8211; &#8220;network black box&#8221;.  More details and a build doc later.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/huntingpackets.wordpress.com/28/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/huntingpackets.wordpress.com/28/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/huntingpackets.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/huntingpackets.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/huntingpackets.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/huntingpackets.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/huntingpackets.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/huntingpackets.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/huntingpackets.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/huntingpackets.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/huntingpackets.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/huntingpackets.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/huntingpackets.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/huntingpackets.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/huntingpackets.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/huntingpackets.wordpress.com/28/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=huntingpackets.wordpress.com&amp;blog=3841604&amp;post=28&amp;subd=huntingpackets&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://huntingpackets.wordpress.com/2008/08/28/new-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/acd2199c52e3e918ac50923cfed5b298?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">huntingpackets</media:title>
		</media:content>
	</item>
		<item>
		<title>dns fun</title>
		<link>http://huntingpackets.wordpress.com/2008/07/25/dns-fun/</link>
		<comments>http://huntingpackets.wordpress.com/2008/07/25/dns-fun/#comments</comments>
		<pubDate>Fri, 25 Jul 2008 08:44:07 +0000</pubDate>
		<dc:creator>huntingpackets</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://huntingpackets.wordpress.com/2008/07/25/dns-fun/</guid>
		<description><![CDATA[My ISP has patched their DNS and my firewall dns process (pfsense) does not need patch so I should be good. Now I just need to ride the storm of infected systems at work over the next few weeks as people bring them in from home. The bots shall come marching!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=huntingpackets.wordpress.com&amp;blog=3841604&amp;post=27&amp;subd=huntingpackets&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>My ISP has patched their DNS and my firewall dns process (pfsense) does not need patch so I should be good.  Now I just need to ride the storm of infected systems at work over the next few weeks as people bring them in from home.  The bots shall come marching!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/huntingpackets.wordpress.com/27/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/huntingpackets.wordpress.com/27/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/huntingpackets.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/huntingpackets.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/huntingpackets.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/huntingpackets.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/huntingpackets.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/huntingpackets.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/huntingpackets.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/huntingpackets.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/huntingpackets.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/huntingpackets.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/huntingpackets.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/huntingpackets.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/huntingpackets.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/huntingpackets.wordpress.com/27/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=huntingpackets.wordpress.com&amp;blog=3841604&amp;post=27&amp;subd=huntingpackets&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://huntingpackets.wordpress.com/2008/07/25/dns-fun/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/acd2199c52e3e918ac50923cfed5b298?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">huntingpackets</media:title>
		</media:content>
	</item>
		<item>
		<title>another good podcast</title>
		<link>http://huntingpackets.wordpress.com/2008/07/17/another-good-podcast/</link>
		<comments>http://huntingpackets.wordpress.com/2008/07/17/another-good-podcast/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 18:05:51 +0000</pubDate>
		<dc:creator>huntingpackets</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://huntingpackets.wordpress.com/?p=24</guid>
		<description><![CDATA[This time from WatchGuard.  Usually the podcasts by a company are no good.  WatchGuard has done something great.  They split the &#8220;company propoganda&#8221; and the good stuff.  If you own a WatchGuard device then you will like the ones that start with &#8220;firebox special&#8221;, if you don&#8217;t just skip them and listen to the others.  [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=huntingpackets.wordpress.com&amp;blog=3841604&amp;post=24&amp;subd=huntingpackets&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This time from WatchGuard.  Usually the podcasts by a company are no good.  WatchGuard has done something great.  They split the &#8220;company propoganda&#8221; and the good stuff.  If you own a WatchGuard device then you will like the ones that start with &#8220;firebox special&#8221;, if you don&#8217;t just skip them and listen to the others.  The hosts, Scott and Corey do a great job and running you through an exploit or vulnerability instead of just listing off news items like some of the other security podcasts do.</p>
<p>http://www.watchguard.com/education/radiofreesecurity.asp</p>
<p>(also in ITunes catalog)</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/huntingpackets.wordpress.com/24/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/huntingpackets.wordpress.com/24/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/huntingpackets.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/huntingpackets.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/huntingpackets.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/huntingpackets.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/huntingpackets.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/huntingpackets.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/huntingpackets.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/huntingpackets.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/huntingpackets.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/huntingpackets.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/huntingpackets.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/huntingpackets.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/huntingpackets.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/huntingpackets.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=huntingpackets.wordpress.com&amp;blog=3841604&amp;post=24&amp;subd=huntingpackets&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://huntingpackets.wordpress.com/2008/07/17/another-good-podcast/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/acd2199c52e3e918ac50923cfed5b298?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">huntingpackets</media:title>
		</media:content>
	</item>
		<item>
		<title>podcast recomendation</title>
		<link>http://huntingpackets.wordpress.com/2008/07/09/podcast-recomendation/</link>
		<comments>http://huntingpackets.wordpress.com/2008/07/09/podcast-recomendation/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 17:27:21 +0000</pubDate>
		<dc:creator>huntingpackets</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://huntingpackets.wordpress.com/?p=23</guid>
		<description><![CDATA[I am always in search of a good podcast.  Lately i have found Ricky Business.  It is from Australia and meets all of my &#8220;likes&#8221; below. http://itradio.com.au/security/ 1.  Good audio &#8211; there are many that start but don&#8217;t invest in good equipment.  There is nothing harder than trying to listen to a podcast that has [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=huntingpackets.wordpress.com&amp;blog=3841604&amp;post=23&amp;subd=huntingpackets&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am always in search of a good podcast.  Lately i have found Ricky Business.  It is from Australia and meets all of my &#8220;likes&#8221; below.</p>
<p>http://itradio.com.au/security/</p>
<p>1.  Good audio &#8211; there are many that start but don&#8217;t invest in good equipment.  There is nothing harder than trying to listen to a podcast that has horrible audio.</p>
<p>2.  Boring content.  I don&#8217;t want to listen to something that sounds like someone is reading the newspaper.  I can do that.  I like podcasts that sound like I am eavesdropping on a group of gurus at a security conference.</p>
<p>3.  Keep it to the subject matter.  There are a few out there that get too childish.  I am all for jokes but when it is more than your subject matter that is too much.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/huntingpackets.wordpress.com/23/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/huntingpackets.wordpress.com/23/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/huntingpackets.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/huntingpackets.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/huntingpackets.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/huntingpackets.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/huntingpackets.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/huntingpackets.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/huntingpackets.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/huntingpackets.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/huntingpackets.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/huntingpackets.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/huntingpackets.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/huntingpackets.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/huntingpackets.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/huntingpackets.wordpress.com/23/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=huntingpackets.wordpress.com&amp;blog=3841604&amp;post=23&amp;subd=huntingpackets&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://huntingpackets.wordpress.com/2008/07/09/podcast-recomendation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/acd2199c52e3e918ac50923cfed5b298?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">huntingpackets</media:title>
		</media:content>
	</item>
		<item>
		<title>side effects of this job</title>
		<link>http://huntingpackets.wordpress.com/2008/06/14/side-effects-of-this-job/</link>
		<comments>http://huntingpackets.wordpress.com/2008/06/14/side-effects-of-this-job/#comments</comments>
		<pubDate>Sat, 14 Jun 2008 04:07:52 +0000</pubDate>
		<dc:creator>huntingpackets</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://huntingpackets.wordpress.com/?p=22</guid>
		<description><![CDATA[Thanks to looking at url obfuscation all day I know write 50% as %50.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=huntingpackets.wordpress.com&amp;blog=3841604&amp;post=22&amp;subd=huntingpackets&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class="entrytext">
<div class="snap_preview">
<p>Thanks to looking at url obfuscation all day I know write 50% as %50.</p></div>
</div>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/huntingpackets.wordpress.com/22/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/huntingpackets.wordpress.com/22/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/huntingpackets.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/huntingpackets.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/huntingpackets.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/huntingpackets.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/huntingpackets.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/huntingpackets.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/huntingpackets.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/huntingpackets.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/huntingpackets.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/huntingpackets.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/huntingpackets.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/huntingpackets.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/huntingpackets.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/huntingpackets.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=huntingpackets.wordpress.com&amp;blog=3841604&amp;post=22&amp;subd=huntingpackets&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://huntingpackets.wordpress.com/2008/06/14/side-effects-of-this-job/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/acd2199c52e3e918ac50923cfed5b298?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">huntingpackets</media:title>
		</media:content>
	</item>
		<item>
		<title>sslexplorer on ubuntu server 8.04 &#8211; all cli</title>
		<link>http://huntingpackets.wordpress.com/2008/05/30/sslexplorer-on-ubuntu-server-804-all-cli/</link>
		<comments>http://huntingpackets.wordpress.com/2008/05/30/sslexplorer-on-ubuntu-server-804-all-cli/#comments</comments>
		<pubDate>Fri, 30 May 2008 23:41:32 +0000</pubDate>
		<dc:creator>huntingpackets</dc:creator>
				<category><![CDATA[howto]]></category>

		<guid isPermaLink="false">http://huntingpackets.wordpress.com/?p=18</guid>
		<description><![CDATA[The new sslexplorer gui installer works great but what if you want it to run on a server without the desktop Note &#8211; before you start - Many of the commands below will run from cli as non root but will give you an error until later, to avoid this during this installation run &#8220;sudo [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=huntingpackets.wordpress.com&amp;blog=3841604&amp;post=18&amp;subd=huntingpackets&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The new sslexplorer gui installer works great but what if you want it to run on a server without the desktop</p>
<p><strong> Note &#8211; before you start</strong><br />
-  Many of the commands below will run from cli as non root but will give you an error until later, to avoid this during this installation run &#8220;sudo -i&#8221; each time you start a session with the server during install.  Issue of this are, write errors, cant start web server on port lower than 1024,  &#8230;<br />
-  All terminal commands below are in boxes</p>
<p><strong>Default 8.04 ubuntu server</strong><br />
-  add sshd</p>
<p><strong>Install java and unzip</strong></p>
<blockquote><p>apt-get install sun-java5-jdk unzip</p></blockquote>
<p><strong>Patch server and reboot for clean start</strong></p>
<blockquote><p>apt-get update<br />
apt-get upgrade<br />
reboot</p></blockquote>
<p><strong>Download sslexplorer (not the gui one)</strong></p>
<blockquote><p>wget http://download.3sp.com/appstore/files/sslexplorer_unix.zip</p></blockquote>
<p>-  if link above is bad then make your own, view source on http://3sp.com/showSslExplorer.do<br />
-  grab a coffee, 42mb from a slow server</p>
<p><strong>Unzip and untar download file</strong></p>
<blockquote><p>unzip sslexplorer_unix.zip</p></blockquote>
<p>-  zip file has tar file of sslexplorer and pdf of unix installer</p>
<blockquote><p>tar -zxvf sslexplorer_unix.tar.gz</p></blockquote>
<p><strong>Install the service</strong></p>
<blockquote><p>cd sslexplorer/install/platforms/linux/<br />
./install-service -j /usr/lib/jvm/java-1.5.0-sun</p></blockquote>
<p>-  you can also ditch the -j option and set JAVA_HOME for this app to run<br />
-  if it works you should get something like this&#8230;.</p>
<blockquote><p><em>Detecting Java<br />
Using /usr/lib/jvm/java-1.5.0-sun<br />
Detected OS debian (x86)<br />
Adding system startup for /etc/init.d/sslexplorer &#8230;<br />
/etc/rc0.d/K20sslexplorer -&gt; ../init.d/sslexplorer<br />
/etc/rc1.d/K20sslexplorer -&gt; ../init.d/sslexplorer<br />
/etc/rc6.d/K20sslexplorer -&gt; ../init.d/sslexplorer<br />
/etc/rc2.d/S20sslexplorer -&gt; ../init.d/sslexplorer<br />
/etc/rc3.d/S20sslexplorer -&gt; ../init.d/sslexplorer<br />
/etc/rc4.d/S20sslexplorer -&gt; ../init.d/sslexplorer<br />
/etc/rc5.d/S20sslexplorer -&gt; ../init.d/sslexplorer<br />
Service installed</em></p></blockquote>
<p><strong>Go back to the root of the sslexplorer folder and start installer</strong></p>
<blockquote><p>./install-sslexplorer</p></blockquote>
<p>-  it will fire up the temp page on http://server_ip:28080<br />
-  go there in your browser and run the wizard<br />
-  if you need help on wizard check the pdf that came with installer</p>
<p><strong>Go back to shell and check service status</strong></p>
<blockquote><p>/etc/init.d/sslexplorer status</p></blockquote>
<p>-  it will probably not be started so start it up</p>
<blockquote><p>/etc/init.d/sslexplorer start</p></blockquote>
<p>-  give it a sec and go to the page &#8211;  https://your_ip , if you have a login prompt you are good to go.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/huntingpackets.wordpress.com/18/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/huntingpackets.wordpress.com/18/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/huntingpackets.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/huntingpackets.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/huntingpackets.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/huntingpackets.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/huntingpackets.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/huntingpackets.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/huntingpackets.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/huntingpackets.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/huntingpackets.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/huntingpackets.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/huntingpackets.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/huntingpackets.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/huntingpackets.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/huntingpackets.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=huntingpackets.wordpress.com&amp;blog=3841604&amp;post=18&amp;subd=huntingpackets&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://huntingpackets.wordpress.com/2008/05/30/sslexplorer-on-ubuntu-server-804-all-cli/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/acd2199c52e3e918ac50923cfed5b298?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">huntingpackets</media:title>
		</media:content>
	</item>
	</channel>
</rss>
