<?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/"
	>

<channel>
	<title>Static in the Ether &#187; Security Tools</title>
	<atom:link href="http://lair.moria.org/blog/archives/tag/security-tools/feed" rel="self" type="application/rss+xml" />
	<link>http://lair.moria.org/blog</link>
	<description>Unix, Information Security &#38; Systems Administration</description>
	<lastBuildDate>Wed, 11 Nov 2009 09:14:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Converting Internet Barometer Data</title>
		<link>http://lair.moria.org/blog/archives/214</link>
		<comments>http://lair.moria.org/blog/archives/214#comments</comments>
		<pubDate>Tue, 30 Jun 2009 23:20:42 +0000</pubDate>
		<dc:creator>Barry Irwin</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Security Tools]]></category>

		<guid isPermaLink="false">http://lair.moria.org/blog/?p=214</guid>
		<description><![CDATA[My first foray into the tag soup that is  XSL and XSLT has been to turn the XML outputs from the InterNet Barometer System as discussed previously into plain text output which I can use more easily for comparing with some of my other data sources. While A cursory browse cannot find any Terms &#38; [...]]]></description>
			<content:encoded><![CDATA[<p>My first foray into the tag soup that is  XSL and XSLT  has been to turn the XML outputs from the InterNet Barometer System as <a href="http://lair.moria.org/blog/archives/205" target="_self">discussed previously</a> into plain text output which I can use more easily for comparing with some of my other data sources. While A cursory browse cannot find any Terms &amp; conditions for the use of this data, I think I&#8217;m on safe ground given that all I&#8217;m doing is processing the same xml that is consumed by the flash objects and its not for any kind of commercial use. After hunting around for tools, and wasting a pile of bandwidth on &#8220;enterprise editions&#8221; I ended up constructing this based on some tutorials at w3c.org  using good old <a href="http://vim.org/">vim</a>. I was very tempted to just revert back to sed &amp; awk, or even try my hand at python&#8217;s parsing, but decided that I may as well &#8216;do it right&#8217;. The result of a few hours work this evening while watching a filesystem rebuild is shown below:<br />
<code><br />
&lt;?xml version='1.0'?&gt;<br />
&lt;xsl:stylesheet version="1.0"xmlns:xsl="http://www.w3.org/1999/XSL/Transform"&gt;<br />
&lt;!-- Barry Irwin bvi@moria.org XSL format for translating XML from interoute Barometer output --&gt;<br />
&lt;xsl:output method="text"/&gt;<br />
&lt;xsl:strip-space elements="*"/&gt;<br />
&lt;xsl:template match="area"&gt;<br />
&lt;xsl:value-of select="../../allData/lastUpdated"/&gt;<br />
&lt;xsl:text&gt;,&lt;/xsl:text&gt;<br />
&lt;xsl:value-of select="@mc_name"/&gt;<br />
&lt;xsl:text&gt;,&lt;/xsl:text&gt;<br />
&lt;xsl:value-of select="@title"/&gt;<br />
&lt;xsl:text&gt;,&lt;/xsl:text&gt;<br />
&lt;xsl:value-of select="@value"/&gt;<br />
&lt;xsl:text&gt;,&lt;/xsl:text&gt;<br />
&lt;xsl:value-of select="@colour"/&gt;<br />
&lt;xsl:text&gt;<br />
&lt;/xsl:text&gt;    &lt;/xsl:template&gt;<br />
&lt;xsl:template match="allData"&gt;<br />
&lt;/xsl:template&gt;<br />
</code><br />
This through the magic of <a title="xsltproc command line processor form libxslt" href="http://xmlsoft.org/XSLT/xsltproc2.html">xsltproc</a> produces a nice plain text output:</p>
<p><code><tt>xsltproc map2.xsl asia.xml</tt></code></p>
<p>given the input from the <a href="http://barometer.interoute.com/barom_attacks_main.php#asia_title" target="_blank">Asia attack  graph</a> produces:</p>
<p><code>30-06-2009 05:00:17 GMT,RU,Russia,15387,green<br />
30-06-2009 05:00:17 GMT,TR,Turkey,7137,green<br />
30-06-2009 05:00:17 GMT,CN,China,2468,green<br />
30-06-2009 05:00:17 GMT,MY,Malaysia,4158,green<br />
30-06-2009 05:00:17 GMT,IN,India,2631,green<br />
30-06-2009 05:00:17 GMT,TH,Thailand,1823,green</code></p>
<p>While not the most elegant code, its gets done what I need, and is easily extensible enough to be able to  transform to other formats suitable for DB import. I&#8217;ll need to monitor data over the next couple of days to get an idea as to how the counters used are actually operating. Once that has been established I can star doing some meaningful comparisons.</p>
]]></content:encoded>
			<wfw:commentRss>http://lair.moria.org/blog/archives/214/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Internet Attack Barometer</title>
		<link>http://lair.moria.org/blog/archives/205</link>
		<comments>http://lair.moria.org/blog/archives/205#comments</comments>
		<pubDate>Tue, 30 Jun 2009 08:16:51 +0000</pubDate>
		<dc:creator>Barry Irwin</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Systems Administration]]></category>
		<category><![CDATA[Vizualization]]></category>
		<category><![CDATA[Network Telescope]]></category>
		<category><![CDATA[Security Tools]]></category>

		<guid isPermaLink="false">http://lair.moria.org/blog/?p=205</guid>
		<description><![CDATA[Interoute has launched a new online Internet Barometer detailing attacks as observed from their 22 monitoring stations across the European portion of the Internet. The site provides rich graph and chart interfaces, which are nicely interactive.  There are definatley some ideas I want to incorporate form this into my own Network Telescope management console.  It [...]]]></description>
			<content:encoded><![CDATA[<p>Interoute has launched a new online <a href="http://barometer.interoute.com/barom_main.php" target="_blank">Internet Barometer</a> detailing attacks as observed from their 22 monitoring stations across the European portion of the Internet.</p>
<p>The site provides rich graph and chart interfaces, which are nicely interactive.  There are definatley some ideas I want to incorporate form this into my own Network Telescope management console.  It is however worth bearing in mind that his is a Eurocentric view and is only based on their observed traffic. As such the &#8220;<a href="http://barometer.interoute.com/barom_attack_from.php">attacking countries</a>&#8221; view seems to be a bit skewed.</p>
<div id="attachment_206" class="wp-caption aligncenter" style="width: 310px"><a href="http://lair.moria.org/blog/wp-content/uploads/2009/06/map5.jpeg" rel="lightbox"><img class="size-medium wp-image-206" title="world_map" src="http://lair.moria.org/blog/wp-content/uploads/2009/06/map5-300x191.jpg" alt="Interoute World view 2009-06-30" width="300" height="191" /></a><p class="wp-caption-text">Interoute World view 2009-06-30</p></div>
<p>After digging around with squid and wireshark, its evident that a lot of the data is actually served up as XML files, and as such can potentially be postprocessed. The Adobe AIR <a href="http://barometer.interoute.com/widget">Barometer Widget</a> they provide also makes use of these. One issue I had getting this installed is you need Air 1.5.1, and the 1.0.8 version I had wouldn&#8217;t auto upgrade correctly.  A little disappointing in that I was expecting a map view, it provides the basics of a total count and cycles through various country stats.</p>
<div id="attachment_207" class="wp-caption aligncenter" style="width: 278px"><a href="http://lair.moria.org/blog/wp-content/uploads/2009/06/widget1.PNG"  rel="lightbox"><img class="size-full wp-image-207" title="Widget Sample" src="http://lair.moria.org/blog/wp-content/uploads/2009/06/widget1.PNG" alt="Interroute Barometer Widget" width="268" height="182" /></a><p class="wp-caption-text">Interoute Barometer Widget</p></div>
<p>Where the real value  comes form is having another independent source of reporting ( even at the highly granular level) that can be used to correlate observations with my own data sets, and those available form places like dShield and ISC. Maybe I should dust off my old Infocon alert plugin for Firefox and integrate some of this data.</p>
]]></content:encoded>
			<wfw:commentRss>http://lair.moria.org/blog/archives/205/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Security Tools update</title>
		<link>http://lair.moria.org/blog/archives/179</link>
		<comments>http://lair.moria.org/blog/archives/179#comments</comments>
		<pubDate>Fri, 06 Feb 2009 21:48:53 +0000</pubDate>
		<dc:creator>Barry Irwin</dc:creator>
				<category><![CDATA[tools]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Network Telescope]]></category>
		<category><![CDATA[Security Tools]]></category>

		<guid isPermaLink="false">http://lair.moria.org/blog/?p=179</guid>
		<description><![CDATA[Over the last week or so a number of new tools have been release either for the first time or as updated versions: tcpreplay is now at version 3.4.0 with a number of significant bugfixes. This staple of packet analysis allows for the replay of captured pcap file back over network interfaces.  Its a great [...]]]></description>
			<content:encoded><![CDATA[<p>Over the last week or so a number of new tools have been release either for the first time or as updated versions:</p>
<ul>
<li><a href="http://tcpreplay.synfin.net/trac/wiki/Download">tcpreplay</a> is now at version 3.4.0 with a number of significant bugfixes. This staple of packet analysis allows for the replay of captured pcap file back over network interfaces.  Its a great way of having a repeatable test framework, or for explosing yout NIDS system to collected bad traffic.</li>
<li><a href="http://www.wallinfire.net/picviz">picviz</a> 0.5 has been released. I blogged about this <a href="http://lair.moria.org/blog/archives/137">before</a> and the project seems to be comming on nicely. Formy own purposes its not much use with my network telescope data, but does produce some pretty pictures for some other work Ive been doing of late. The new version comes with a bumber of new log parsers. A slide deck <a href="http://www.wallinfire.net/files/picviz-usenix-wasl2008.pdf">discussing its use</a> as presented at USENIX 2008 is also available.</li>
<li><a href="http://www.pcapr.net/">pcapr</a> is the new tool out and describes itself as &#8220;<em>web 2.0 meets packets</em>&#8220;, and &#8220;<em>pcapr does to packets what flickr does to pictures&#8221;. </em>If it performs as promised it could make life a lot easier maintinaing libraries of packet captures. The fact its a hosted service does have some distinct disadvantages. Currently there seems to be quote a lot of little snippets. An <a href="http://www.pcapr.net/rss">RSS feed</a> of new content is also available.  Another similar repository s that of <a href="http://www.openpacket.org/">openpacket.org</a></li>
<li><a href="http://research.wand.net.nz/software/libtrace.php">libtrace</a> while not a new tool as such, is somethign I&#8217;ve started workign with recentlyafter comming across it in <a href="http://www.mcs.vuw.ac.nz/comp/graduates/archives/msc/Dean_Pemberton_MSC_Thesis.pdf">Dean Pemberton&#8217;s MSc Thesis</a>2007  on  Internet Background Radiation Arrival Density and Network Telescope Sampling Strategies. The api looks pretty clean and it comes with a couple of nice demo tools which are actually useful.  the URI syntax it uses for accessing files is a little strange but managable.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://lair.moria.org/blog/archives/179/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Applied Security Visualization released</title>
		<link>http://lair.moria.org/blog/archives/106</link>
		<comments>http://lair.moria.org/blog/archives/106#comments</comments>
		<pubDate>Thu, 21 Aug 2008 06:54:44 +0000</pubDate>
		<dc:creator>Barry Irwin</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Books]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Vizualization]]></category>
		<category><![CDATA[InetVis]]></category>
		<category><![CDATA[Security Tools]]></category>
		<category><![CDATA[VizSec]]></category>

		<guid isPermaLink="false">http://lair.moria.org/blog/?p=106</guid>
		<description><![CDATA[I probably should have posted this a while back but, its still worth noting that Raffael Marty&#8217;s Applied Security Visualization has been released, and includes a copy of the DAVIX CD as distributed at Defcon 16 (davix-1.0.1-defcon16.iso.gz &#8211; also obtainable from the homepage, includes a couple of packet traces as used in the Defcon workshop) [...]]]></description>
			<content:encoded><![CDATA[<p>I probably should have posted this a while back but, its still worth noting that Raffael Marty&#8217;s <a href="http://www.amazon.com/gp/product/0321510100?ie=UTF8&amp;tag=balinslairl-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0321510100"> Applied Security Visualization</a><a title="Applied Security Visualization" rel="lightbox" href="http://ecx.images-amazon.com/images/I/41nOfn0xjtL._LS500_.jpg"><img class="alignleft" style="float: left;" src="http://ecx.images-amazon.com/images/I/41nOfn0xjtL._SL160_.jpg" alt="Applied Security Vizualisation" width="121" height="160" /></a> has been released, and includes a copy of the <a href="http://davix.secviz.org/">DAVIX</a> CD as distributed at Defcon 16 (davix-1.0.1-defcon16.iso.gz &#8211; also obtainable from the homepage, includes a couple of packet traces as used in the Defcon workshop) , which includes a copy of <a title="InetVis - 3d security analysis" href="http://vizsec.org/applications/inetvis/">InetVis</a> as one of their four chosen visual  analysis tools on the live CD.</p>
<p>For the impatient some i<a href="http://82.197.185.121/davix/release/davix-manual-1.0.1.pdf">nstructions</a> are available for getting started. Now to work out what else to order form amazon so that the 40USD specail shipment fee hurts a little less ( thanks to our totally <a href="http://www.thetimes.co.za/Business/BusinessTimes/Article.aspx?id=786567">criminal and incompetent post office in South Africa</a>)</p>
<p>Failing that its time to wait till the local places get round to stocking it.</p>
]]></content:encoded>
			<wfw:commentRss>http://lair.moria.org/blog/archives/106/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Defcon16 Toolsets</title>
		<link>http://lair.moria.org/blog/archives/94</link>
		<comments>http://lair.moria.org/blog/archives/94#comments</comments>
		<pubDate>Wed, 20 Aug 2008 21:29:14 +0000</pubDate>
		<dc:creator>Barry Irwin</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[conferences]]></category>
		<category><![CDATA[defcon]]></category>
		<category><![CDATA[exploit]]></category>
		<category><![CDATA[Security Tools]]></category>

		<guid isPermaLink="false">http://lair.moria.org/blog/?p=94</guid>
		<description><![CDATA[With the 16th incarnation of Defcon having come and gone last week, a number of people have put together a nice list of the various tools released. The ZDnet&#8217;s Rob Fuller has done all the hard work of tracking down the various tools and their websites in his article -  entitled &#8220; DEFCON 16: List [...]]]></description>
			<content:encoded><![CDATA[<p>With the 16<sup>th</sup> incarnation of <a href="https://www.defcon.org/">Defcon</a> having come and gone last week, a number of people have  put together a nice list of the various tools released. The ZDnet&#8217;s Rob Fuller has done all the hard work of tracking down the various tools and their websites in his article -  entitled &#8220;<a title="Permanent Link to DEFCON 16: List of tools and stuff released" rel="bookmark" href="http://blogs.zdnet.com/security/?p=1735"> DEFCON 16: List of tools and stuff released</a><br />
&#8220;seems to be the most definitive.  Another <a href="http://www.room362.com/archives/217-DEFCON-16-The-Tools-not-the-Toools.html">(updated) list</a> is on Rob&#8217;s personal site in which he includes some other items like <strong>Packet-O-Matic, </strong><strong>PE-Scambler  </strong>and<strong>VMware Pen-Testing Framework</strong>, alng with a link to the ISO.</p>
<p> Of all the tools release its <a href="http://davix.secviz.org/">DAVIX</a>, that makes me happiest, other than it being a relaly slick Compilation of VizSec tools, it also features <a title="InetVis - 3d security analysis" href="http://vizsec.org/applications/inetvis/">InetVis</a>, which is a part of the postgraduate research by one of my students (Jean-Pierre van Riel), which I <a href="http://lair.moria.org/blog/archives/55">previously posted </a>about.</p>
<p><a href="http://ikat.ha.cked.net/"><strong>iKat</strong></a> is the other tool that tickles my fancy.</p>
<p>There are some interesting setf odf Defcon Photos floating around such as <a href="http://www.flickr.com/photos/stits/sets/72157606608859399/">these</a> by sits, who has also made available a zip of the of the <a href="http://www.stits.org/fp/Defcon_16/">Defcon 16 CD</a> contents.An 732MB <a title="Defcon 16 CD ISO" href="http://edge.i-hacked.com/defcon16-cd-iso-posted">ISO  version</a> is also available that at least has checksums.</p>
<p>I see some fun times ahead!</p>
]]></content:encoded>
			<wfw:commentRss>http://lair.moria.org/blog/archives/94/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>DAVIX live CD looking for Beta Testers</title>
		<link>http://lair.moria.org/blog/archives/55</link>
		<comments>http://lair.moria.org/blog/archives/55#comments</comments>
		<pubDate>Sun, 15 Jun 2008 19:34:14 +0000</pubDate>
		<dc:creator>Barry Irwin</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Vizualization]]></category>
		<category><![CDATA[Books]]></category>
		<category><![CDATA[InetVis]]></category>
		<category><![CDATA[Security Tools]]></category>

		<guid isPermaLink="false">http://lair.moria.org/blog/?p=55</guid>
		<description><![CDATA[DAVIX is the upcoming live CD for data analysis and visualization, which will be released at Blackhat/DEFCON in Las Vegas this summer, with another talk at VizSec 2008. From the VizSec.org announcement: Jan Monsch and Raffael Marty and have prepared the second beta version of DAVIX. And are now seeking for beta testers that have [...]]]></description>
			<content:encoded><![CDATA[<p><span class="link-external"><a href="http://davix.secviz.org/">DAVIX</a></span> is the upcoming live CD for data analysis and visualization, which will be released at Blackhat/DEFCON in Las Vegas this summer, with another talk at <a href="http://vizsec.org/workshop2008">VizSec 2008</a>. From the VizSec.org <a href="http://vizsec.org/news/call-for-davix-beta-testers/">announcement</a>:</p>
<blockquote><p><a title="Applied Security Visualization" rel="lightbox" href="http://ecx.images-amazon.com/images/I/41nOfn0xjtL._LS500_.jpg"><img class="alignleft" style="float: left;" src="http://ecx.images-amazon.com/images/I/41nOfn0xjtL._SL160_.jpg" alt="Applied Security Vizualisation" width="121" height="160" /></a>Jan Monsch and Raffael Marty and have prepared the second beta version of DAVIX. And  are now seeking for beta testers that have the time to test DAVIX and answer the questionnaire that comes along with the beta version. All completely filled out questionnaires received by me until Monday 23 June 2008 18:00 UTC will enter a raffle for one autographed copy of Raffy&#8217;s upcoming book <span class="link-external"><a href="http://www.amazon.com/gp/product/0321510100?ie=UTF8&amp;tag=balinslairl-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0321510100"> &#8220;Applied Security Visualization&#8221;</a></span>.</p>
<p>If you want to participate in the beta test please contact: jan.monsch ät iplosion.com</p></blockquote>
<p>What makes me quite happy is that they have included <a title="InetVis - 3d security analysis" href="http://vizsec.org/applications/inetvis/">InetVis</a> as one of their four chosen visual  analysis tools on the live CD.</p>
<p>I&#8217;ve been paying with this since this morning and so far so good.</p>
]]></content:encoded>
			<wfw:commentRss>http://lair.moria.org/blog/archives/55/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
