<?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; Applications</title>
	<atom:link href="http://lair.moria.org/blog/archives/category/applications/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>Remote Desktop Annoyances with Nvidia drivers</title>
		<link>http://lair.moria.org/blog/archives/156</link>
		<comments>http://lair.moria.org/blog/archives/156#comments</comments>
		<pubDate>Mon, 27 Oct 2008 05:46:26 +0000</pubDate>
		<dc:creator>Barry Irwin</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Systems Administration]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Annoyances]]></category>
		<category><![CDATA[Nvidia]]></category>
		<category><![CDATA[remote desktop]]></category>
		<category><![CDATA[Server 2003]]></category>
		<category><![CDATA[XP]]></category>

		<guid isPermaLink="false">http://lair.moria.org/blog/?p=156</guid>
		<description><![CDATA[For the last few months I&#8217;ve been plagued by the inability to at times remote desktop to some of my Windows XP based system. While not critical, it is nice to be able to connect home and carry on working on a document/email I was busy with before departing to work. After some hunting, I [...]]]></description>
			<content:encoded><![CDATA[<p>For the last few months I&#8217;ve been plagued by the inability to at times remote desktop to some of my Windows XP based system. While not critical, it is nice to be able to connect home and carry on working on a document/email I was busy with before departing to work.</p>
<p>After some hunting, I narrowed the culprit down to the Nvida graphics drivers post version 169.39. Driver Release 175.16 was the first to show the issue, 175.19 made it worse.</p>
<p>My solution at the time roll back 169.19 and sacrifice some of the support for my CUDA enabled cards.  Last week I took the plunge and went for 178.13, which while resolving some other issues still broke the Remote desktop functionality.</p>
<p>The solution appears to be a tweek is needed in ones registry.</p>
<ol>
<li>Start, Run, type <strong>regedit</strong> and press OK</li>
<li>Navigate to the Key: [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management]</li>
<li>Right click in the Details pane and Select New –&gt; DWORD Value</li>
<li>Name it  <strong>SessionImageSize</strong></li>
<li>After it is created, double click on it and change its value to: 20 ( this is based on recommendations from <a href="http://computingondemand.com/?p=1141">here</a>) and effectively maps to raising the session memory to 32 MB.</li>
<li>Save and Reboot</li>
</ol>
<p>I tried this and no luck.  For my particular configuration SLI motherboards with Running 3 heads ofa 7600GT and 7300GS, I needed to raise the <strong>SessionImageSize</strong> value to 41 implying the use of 64MB of memory.  I&#8217;m not sure if this is due to the large amount of ram in the system ( 4gigs) or the particular use of two non SLI&#8217;d cards. the &#8216;default&#8217; value of 20 seems to have solved the problem on my other Intel based system running a single  8500GT.</p>
<p>Microsoft take on the issue  is contained in <a title="You are unexpectedly logged off when you try to connect to a computer that is running Windows Server 2003 or Windows XP" href="http://support.microsoft.com/kb/886212/en-us">KB886212</a> which proposes the solution of try another driver or rollback the driver.</p>
<p>Searching for &#8220;<strong>SessionImageSize</strong>&#8221; in the Microsoft knowledge base doesn&#8217;t seem to help either</p>
<p>Its worth nothign that the problem is occuring across different chipsets, Graphics cards, and on both SP2 and SP3 systems. The fix of increating the <strong>SessionImageSize to 0&#215;41</strong> seems to be working fine on a Windows Server 2003 (SP2) system as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://lair.moria.org/blog/archives/156/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Implementing Captchas</title>
		<link>http://lair.moria.org/blog/archives/110</link>
		<comments>http://lair.moria.org/blog/archives/110#comments</comments>
		<pubDate>Sun, 24 Aug 2008 10:35:24 +0000</pubDate>
		<dc:creator>Barry Irwin</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Systems Administration]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[captchas]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://lair.moria.org/blog/?p=110</guid>
		<description><![CDATA[With the comment spam continuing to pour in I caved in a and implemented captchas for comments.  While a solution using mathematical computation such as that offered by the match captcha plugin for wordpress, since the are only host defendant (rather than having to rely on some other 3rd-party service), this particular plugin was only [...]]]></description>
			<content:encoded><![CDATA[<p>With the comment spam continuing to pour in I caved in a and implemented <a href="http://www.captcha.net/">captchas</a> for comments.  While a solution using mathematical computation such as that offered by the <a href="http://wordpress.org/extend/plugins/math-comment-spam-protection/">match captcha</a> plugin for wordpress, since the are only host defendant (rather than having to rely on some other 3rd-party service), this particular plugin was only certified to 2.3.1, and I could not get a working download.  I capitulated to the web 2.0 way and installed <a href="http://wordpress.org/extend/plugins/wp-recaptcha/">WP-recaptcha</a>, which provides a nice wrapper around the <a href="http://recaptcha.net/">recaptcha.net</a> service.</p>
<p>Installation was simple, with registration required in order to obtain two APi keys for use with the service.  What interesting about this solution is that rather than just mutating words, a two phrase system is sued. One of the phrases is a known word, and th eother is a word that is taken form a ocr scan of the <acronym title="New Your Times">NYT</acronym> or <a href="http://archive.org/">Internet Archive</a>, ans has not been correctly identified by the ocr software.  Thus there is a bit of community mindedness involved as well, as these words are interpreted. More on the gory details can be found <a href="http://recaptcha.net/learnmore.html">here</a>.</p>
<p>What does interest me tho is that this will not offer any protection from &#8216;pingback&#8217; spam whihc is being submitted via the xmlrpc interface, but should still at another layer to the security onion.</p>
]]></content:encoded>
			<wfw:commentRss>http://lair.moria.org/blog/archives/110/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>Free Windows CD authoring and image burning</title>
		<link>http://lair.moria.org/blog/archives/80</link>
		<comments>http://lair.moria.org/blog/archives/80#comments</comments>
		<pubDate>Tue, 19 Aug 2008 09:03:14 +0000</pubDate>
		<dc:creator>Barry Irwin</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://lair.moria.org/blog/?p=80</guid>
		<description><![CDATA[Why trying out FreeNAS yesterday I ran into the problem thats tripped me up in the past, Windows ships with basic CD writing functionality, but nothing for burning images.  Previously I&#8217;ve used CDRtools or Nero, but didnt have these handy.  I came across InfraRecord, which suites all my needs.  It provided simple authoring capabilities for [...]]]></description>
			<content:encoded><![CDATA[<p>Why trying out <a href="http://freenas.org/">FreeNAS</a> yesterday I ran into the problem thats tripped me up in the past, Windows ships with basic CD writing functionality, but nothing for burning images.  Previously I&#8217;ve used CDRtools or Nero, but didnt have these handy.  I came across<a title="The free CD/DVD burning solution" href="http://infrarecorder.sourceforge.net"> InfraRecord</a>, which suites all my needs.  It provided simple authoring capabilities for both CD and DVD images, and is released under the GPLv2.</p>
<p>The <a href="http://infrarecorder.sourceforge.net/?page_id=4">screenshots provided </a>show the functionality quite nicely. To round it off, its a tiny 3MB download, installing to just over 8MB.  The actual burning is handled by the well established CDRtools libraries, but the frontend makes it a much more pleasurable experience, than having to fiddle with command line arguments.</p>
]]></content:encoded>
			<wfw:commentRss>http://lair.moria.org/blog/archives/80/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Firefox 3.0, crashes and bandwidth overload</title>
		<link>http://lair.moria.org/blog/archives/57</link>
		<comments>http://lair.moria.org/blog/archives/57#comments</comments>
		<pubDate>Tue, 17 Jun 2008 19:43:28 +0000</pubDate>
		<dc:creator>Barry Irwin</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[FireFox 3]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Tenet]]></category>

		<guid isPermaLink="false">http://lair.moria.org/blog/?p=57</guid>
		<description><![CDATA[Some two and a half hours into the FF3.0 download campaign, and the toll is beginning to show.spreadfirefox.com seems to be refusing connections. While individual mirror sites seem up, it looks like the counts are going via some redirector script. getfirefox.com is however working fine. The impact its having on mirrors seems to be quite [...]]]></description>
			<content:encoded><![CDATA[<p>Some two and a half hours into the FF3.0 download campaign, and the toll is beginning to show.<a href="http://www.spreadfirefox.com/node&amp;id=226100&amp;t=272">spreadfirefox.com</a> seems to be refusing connections. While individual mirror sites seem up, it looks like the counts are going via some redirector script. <a href="http://getfirefox.com">getfirefox.com</a> is however working fine.</p>
<p>The impact its having on mirrors seems to be quite intense. The following two images sow traffic stats from <a href="http://mirror.ac.za/">mirror.ac.za </a>the mirror service run by <a href="http://www.tenet.ac.za/">TENET</a> here in South Africa.<br />
<a title="Total bandwidth from mirror.ac.za nodes" rel="lightbox" href="http://lair.moria.org/blog/wp-content/uploads/2008/06/mirroracza_bandwidth.png"><img class="aligncenter size-medium wp-image-58" title="Mirror.ac.za Bandwidth usage " src="http://lair.moria.org/blog/wp-content/uploads/2008/06/mirroracza_bandwidth.png" alt="" width="300" height="153" /></a></p>
<p><a title="Total bandwidth from mirror.ac.za nodes" rel="lightbox" href="http://lair.moria.org/blog/wp-content/uploads/2008/06/mirroracza_bandwidth_total.png"><img class="aligncenter size-medium wp-image-59" title="Total bandwidth from mirror.ac.za nodes" src="http://lair.moria.org/blog/wp-content/uploads/2008/06/mirroracza_bandwidth_total.png" alt="Total bandwidth form mirror.ac.za nodes" width="311" height="142" /></a></p>
<p><strong>Update:</strong></p>
<p>A <a href="http://downloadcounter.sj.mozilla.com/ ">Firefox 3.0 download counter</a> is now available. 943806 currently averaging some 7000/minute. Some <a href="http://www.alleyinsider.com/2008/6/firefox_3_launches_servers_crash">commentary</a> on the outages, although they seem to have cleared.</p>
<p><a href="http://www.spreadfirefox.com/node&amp;id=226100&amp;t=272"><img title="Download Day - English" src="http://www.spreadfirefox.com/files/images/affiliates_banners/468x60_ddayb_en.png" border="0" alt="Download Day - English" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://lair.moria.org/blog/archives/57/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FireFox 3.0 Launch day &amp; record Attempt</title>
		<link>http://lair.moria.org/blog/archives/53</link>
		<comments>http://lair.moria.org/blog/archives/53#comments</comments>
		<pubDate>Tue, 17 Jun 2008 07:01:35 +0000</pubDate>
		<dc:creator>Barry Irwin</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Download Day]]></category>
		<category><![CDATA[FireFox 3]]></category>

		<guid isPermaLink="false">http://lair.moria.org/blog/?p=53</guid>
		<description><![CDATA[Today is the official launch of the Firefox 3.0 Browser. the 24 Hour period form June 17th to June 18th will be a a record attempt in order to get into the Guinness book of Records, for the most software downloads in a day. The day apparently starts on Tuesday, June 17th after 10am PDT. [...]]]></description>
			<content:encoded><![CDATA[<p>Today is the<a href="http://blog.mozilla.com/blog/2008/06/14/the-countdown-to-download-day/"> official launch</a> of the Firefox  3.0 Browser. the 24 Hour period form June 17th to June 18th will be a a record attempt in order to get into the Guinness book of Records, for the most software downloads in a day. The day apparently starts on Tuesday, June 17th after 10am PDT.</p>
<p>This Aside, I think the upgrade is well worth it , and I&#8217;ve been more than happy since Beta2 when I move my primary system over to running 3.0.  The biggest improvements being rendering when switching between tabs ( and I usually have LOTS of tabs) and memory usage.</p>
<p><a href="http://www.spreadfirefox.com/node&amp;id=226100&amp;t=272"><img title="Download Day - English" src="http://www.spreadfirefox.com/files/images/affiliates_banners/468x60_ddayb_en.png" border="0" alt="Download Day - English" /></a></p>
<p>Tomorrow regular programming resumes ;)</p>
]]></content:encoded>
			<wfw:commentRss>http://lair.moria.org/blog/archives/53/feed</wfw:commentRss>
		<slash:comments>0</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>
		<item>
		<title>Migrating URLs with apache and mod_rewrite</title>
		<link>http://lair.moria.org/blog/archives/47</link>
		<comments>http://lair.moria.org/blog/archives/47#comments</comments>
		<pubDate>Fri, 06 Jun 2008 17:35:30 +0000</pubDate>
		<dc:creator>Barry Irwin</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Systems Administration]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[Annoyances]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://lair.moria.org/blog/?p=47</guid>
		<description><![CDATA[Having now migrated to WordPress from my own very customised version of phpBloxsom, which ran the previous incarnation of this blog, Ive been left with the issue of dealing with all the sites pulling my RSS feeds. With the change of software has come a change of url for the location of the feeds. Apache&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>Having now migrated to WordPress from my own very customised version of phpBloxsom, which ran the previous incarnation of this blog, Ive been left with the issue of dealing with all the sites pulling my RSS feeds.  With the change of software has come a change of url for the location of the feeds.</p>
<p>Apache&#8217;s mod_rewrite seems to be the obvious candidate for making this as transparent as possible. In essence what needed to happen was incoming requests for:</p>
<p><code> "GET /blog/?flav=rss&amp;category=Security HTTP/1.0" and<br />
<code>"GET /blog/?flav=rss HTTP/1.0" </code> respectively need to be converted into:</code></p>
<p><code><br />
<a title="Security RSS feed" href="http://lair.moria.org/blog/archives/category/security/feed">http://lair.moria.org/blog/archives/category/security/feed</a> </code></p>
<p><code>and</code></p>
<p><code> <a title="Static in the Ether - RSS feed" href="http://lair.moria.org/blog/feed">http://lair.moria.org/blog/feed</a></code> respectively</p>
<p>This was achieved matching on the QUERY_STRING variable within apache.  The real trick came trying to get the new URLS to appear clean.  This proved to be more difficult than I expected. My initial rewrite rules resulted int he following:<br />
<code><br />
"GET /blog/?flav=rss HTTP/1.0" 301 249 "<br />
"GET /blog/feed/?flav=rss HTTP/1.0" 200 54274 ""<br />
</code><br />
The agent was directed to the right url but it still looks ugly.  Note the use of a HTTP/301 status code indicating permanently moved rather than a 302 which mod_redirect usually provides.  The solution to the appending of the query string turned out to be to force my own null string onto the redirect. The <a href="http://wiki.apache.org/httpd/RewriteQueryString">Apache Wiki</a> was where I finally found the right answer. so the way to remove a QUERY_STRING is to append a blank string &#8220;?&#8221; to the redirect .</p>
<p>The final setup in my .htaccess for WordPress looks as follows:</p>
<pre><code>
RewriteCond %{QUERY_STRING} ^flav=rss$ [NC]
RewriteRule ^$ http://lair.moria.org/blog/feed? [R=301,L]
RewriteCond %{QUERY_STRING} ^flav=rss&amp;(category)=Security$ [NC]
RewriteRule ^$ http://lair.moria.org/blog/archives/category/security/feed? [R=301,L]
RewriteCond %{QUERY_STRING} ^flav=atom$ [NC]
RewriteRule ^$ http://lair.moria.org/blog/feed/atom? [R=301,L]</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://lair.moria.org/blog/archives/47/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
