<?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; Systems Administration</title>
	<atom:link href="http://lair.moria.org/blog/archives/category/sysadmin/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>convert man pages to PDF</title>
		<link>http://lair.moria.org/blog/archives/267</link>
		<comments>http://lair.moria.org/blog/archives/267#comments</comments>
		<pubDate>Sun, 09 Aug 2009 14:22:19 +0000</pubDate>
		<dc:creator>Barry Irwin</dc:creator>
				<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[Systems Administration]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://lair.moria.org/blog/?p=267</guid>
		<description><![CDATA[Recently I had need to produce pdf files of some man pages simple because the are far easier to print and review onscreen. The following snippet added to my .bash_profile does the trick. # Convert man pages to pdf man2pdf() { m2pfile="/tmp/${1}-m2p.pdf" if [ ! -s $m2pfile ]; then # is it there and &#62; [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I had need to produce pdf files of some man pages simple because the are far easier to print and review onscreen.  The following snippet added to my .bash_profile does the trick.</p>
<p><code><br />
# Convert man pages to pdf<br />
man2pdf()<br />
{<br />
m2pfile="/tmp/${1}-m2p.pdf"<br />
if [ ! -s $m2pfile ]; then   # is it there and &gt; zero bytes&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;     man -t "${1}" | ps2pdf  - &gt;  "$m2pfile"<br />
&nbsp;&nbsp;&nbsp;&nbsp;     fsize=`du -k $m2pfile | awk '{print $1}'`<br />
&nbsp;&nbsp;&nbsp;&nbsp;     echo "Created PDF file in $m2pfile ($fsize KB)"<br />
fi<br />
}<br />
</code></p>
<p>It can trivially be extended to check for things like a $DISPLAY variable and pop up a viewer or request to print.  The caching is admittedly crude, but works since /tmp is cleared out periodically. Output  looks like:</p>
<p><code>[bvi@starburst ~]$ man2pdf ls<br />
Created PDF file in /tmp/ls-m2p.pdf (20 KB)</code></p>
]]></content:encoded>
			<wfw:commentRss>http://lair.moria.org/blog/archives/267/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rock Solid FreeBSD</title>
		<link>http://lair.moria.org/blog/archives/238</link>
		<comments>http://lair.moria.org/blog/archives/238#comments</comments>
		<pubDate>Tue, 14 Jul 2009 13:26:31 +0000</pubDate>
		<dc:creator>Barry Irwin</dc:creator>
				<category><![CDATA[Systems Administration]]></category>

		<guid isPermaLink="false">http://lair.moria.org/blog/archives/238</guid>
		<description><![CDATA[Last login: Fri Nov&#160; 9 14:52:41 2007 FreeBSD 4.11-STABLE (GENERIC) #0: Mon Jul&#160; 4 05:48:29 SAST 2005 Welcome to FreeBSD! sysadmin@gwort$ uptime &#160;2:54PM&#160; up 613 days, 8 mins, 1 user, load averages: 0.00, 0.00, 0.00 Systems like this re-enforce my feelings that FreeBSD really is rock solid. Yes the box probably needs patching and upgrading, [...]]]></description>
			<content:encoded><![CDATA[<p><code> Last login: Fri Nov&nbsp; 9 14:52:41 2007<br />
 FreeBSD 4.11-STABLE (GENERIC) #0: Mon Jul&nbsp; 4 05:48:29 SAST 2005<br />
 Welcome to FreeBSD!<br />
 sysadmin@gwort$ uptime<br />
&nbsp;2:54PM&nbsp; up 613 days, 8 mins, 1 user, load averages: 0.00, 0.00, 0.00</p>
<p>Systems like this re-enforce my feelings that FreeBSD really is rock solid.<br />
Yes the box probably needs patching and upgrading, but for what its doing acting as an appliance that shunts packets, that's nicely firewalled down with no local users its good enough for now.<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://lair.moria.org/blog/archives/238/feed</wfw:commentRss>
		<slash:comments>1</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>RIP LT box</title>
		<link>http://lair.moria.org/blog/archives/188</link>
		<comments>http://lair.moria.org/blog/archives/188#comments</comments>
		<pubDate>Fri, 13 Mar 2009 11:43:15 +0000</pubDate>
		<dc:creator>Barry Irwin</dc:creator>
				<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[Systems Administration]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Hosting]]></category>

		<guid isPermaLink="false">http://lair.moria.org/blog/?p=188</guid>
		<description><![CDATA[This morning I move the last of the services and data off the system I&#8217;ve had at LayeredTech since November 2005. This little AMD XP 2400 has given great service over the years, but the hardware got increasingly flaky and the cost of hosting at LT just keeps increasing for old kit. These factors in [...]]]></description>
			<content:encoded><![CDATA[<p>This morning I move the last of the services and data off the system I&#8217;ve had at <a href="http://layeredtech.com/">LayeredTech</a> since November 2005.  This little AMD XP 2400 has given great service over the years, but the hardware got increasingly flaky and the cost of hosting at LT just keeps increasing for old kit.  These factors in combination with a change of datacenters prompted me to bid it a fond farewell and relocate much of my offshore stuff to a shiny new host at hetzner.de, along with the chance to move to FreeBSD7.x,  and free myself of the cruft that accumulates with 4.x -&gt; 5.x -&gt; 6.x migrations without clean installs.</p>
]]></content:encoded>
			<wfw:commentRss>http://lair.moria.org/blog/archives/188/feed</wfw:commentRss>
		<slash:comments>2</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>Verifying Smime content with openSSL</title>
		<link>http://lair.moria.org/blog/archives/123</link>
		<comments>http://lair.moria.org/blog/archives/123#comments</comments>
		<pubDate>Mon, 25 Aug 2008 16:51:03 +0000</pubDate>
		<dc:creator>Barry Irwin</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Systems Administration]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[mail security]]></category>
		<category><![CDATA[openssl]]></category>
		<category><![CDATA[smime]]></category>
		<category><![CDATA[x509]]></category>

		<guid isPermaLink="false">http://lair.moria.org/blog/?p=123</guid>
		<description><![CDATA[I had an interesting question posed ot me today by Dominic who asked me to verify whether his all new Digital certificate was correctly being used for signing mail. Thunderbird sadly complained that the signature was invalid, which was unexpected, and that the issuer was unknown ( expected since it comes form a private hierarchy.)  [...]]]></description>
			<content:encoded><![CDATA[<p>I had an interesting question posed ot me today by <a title="Dominic White " href="http://singe.za.net/">Domini</a>c who asked me to verify whether his all new Digital certificate was correctly being used for signing mail. Thunderbird sadly complained that the signature was invalid, which was unexpected, and that the issuer was unknown ( expected since it comes form a private hierarchy.)  The question then lead to where did the problem lie?</p>
<p>My gut feel was that it was the disclaimer being inserted by an intermediary gateway ( one has to love corpmail).  Setting about proving this was the hard part.  The first issue at hand wa to actually extract the certificates so I could play with the verification.  <a href="https://addons.mozilla.org/en-US/firefox/addon/1964/">Cert Viewer Plus</a> for Thunderbird made this part a dream. Creating a modified version of the signed message was a little bit more problematic.</p>
<p>Trusting the command line, I started hunting around for details on OpenSSL support for <a href="http://www.ietf.org/rfc/rfc2633.txt">SMIME</a>, which it has.  OpenSSL needs a full CA path for being able to verify SMIME signed messages. One can obtain this from various places ( such as exporting form your browser) but in a case like this where a private hierarchy was being used, its enough to just make used of a somewhat smaller subset contianing only the certificates used in this chain.  These can be extracted using  <a href="https://addons.mozilla.org/en-US/firefox/addon/1964/">Cert Viewer Plus</a>. Alternately some command line magic can be used to extract the PKCS7 formatted embedded certificates out in standard PEM format., using the following command:</p>
<p><code>openssl smime -pk7out -in mail.txt | \<br />
openssl pkcs7 -print_certs &gt; extract.crt</code></p>
<p>Now that we have a certificate chain we can attempt the verify. The extract.crt below can be either from the openssl method above or the Cert Viewer plus PEM dump.<br />
<code>openssl smime -CAfile extract.crt -verify -in mail.txt</code><br />
Now we actually have a more usable error message. Although I really don&#8217;t know why I have such a deep distrust in GUI apps for actually telling me what is wrong.<br />
<code>Verification failure<br />
88175:error:21071065:PKCS7 routines:PKCS7_signatureVerify:digest failure:/usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto/pkcs7/pk7_doit.c:808:<br />
88175:error:21075069:PKCS7 routines:PKCS7_verify:signature failure:/usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto/pkcs7/pk7_smime.c:265:<br />
</code><br />
As suspected the digest filed, which lead to a overall signature failure.  The next step was to see if removing the disclaimer worked.  Repeating on a slightly edited version of the the mail gave the following:</p>
<p><code>openssl smime -CAfile extract.crt -verify -in mail2.txt<br />
...<br />
<em>mail contents deleted</em><br />
...<br />
Verification successful</code></p>
<p>So the original question posed was if the signature system was working correctly which it now was. The differences between the two mail files was checked using diff</p>
<p><code>diff -u mail.txt  mail2.txt<br />
--- mail.txt         Mon Aug 25 18:06:33 2008<br />
+++ mail2.txt      Mon Aug 25 18:08:10 2008<br />
@@ -61,10 +61,6 @@<br />
South Africa<br />
</code><code><br />
-Important Notice: This email is subject to important restrictions, qualifications<br />
and disclaimers ("the Disclaimer") ..that all was one very long line that made<br />
up the corporate disclaimer.....<br />
...<br />
------=_NextPart_000_0048_01C906C7.DB6FB700<br />
Content-Type: application/x-pkcs7-signature;<br />
name="smime.p7s"<br />
</code><br />
From the above the only difference shown is that a mail gateway had added in a extra four lines of disclaimer and white space padding.  The question now evolves as to how to provide the now pretty much ubiquitous organizational disclaimer in outgoing mail in such a way that it doesn&#8217;t trash any cryptographic operations in which the mail is involved.  Ive gone back over mails from a  couple of other people in corporate South Africa that I know , and the problem seems to be widespread.</p>
<p>The solution may be that the disclaimer as such is encapsulated as a separate MIME component, which is what interestingly one university here does ( although it insists on prepending its mime encapsulated HTML disclaimer, which makes for really ugly mail reading!)</p>
]]></content:encoded>
			<wfw:commentRss>http://lair.moria.org/blog/archives/123/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Points Transfer with CAcert</title>
		<link>http://lair.moria.org/blog/archives/84</link>
		<comments>http://lair.moria.org/blog/archives/84#comments</comments>
		<pubDate>Mon, 25 Aug 2008 06:21:31 +0000</pubDate>
		<dc:creator>Barry Irwin</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Systems Administration]]></category>
		<category><![CDATA[cacert]]></category>
		<category><![CDATA[trust]]></category>
		<category><![CDATA[x509]]></category>

		<guid isPermaLink="false">http://lair.moria.org/blog/?p=84</guid>
		<description><![CDATA[Having finally completed my points transfer from my Thawte web of Trust to CaCERT, I thought it would be worth documenting the process.  I am already  Thawte WOT notary, and as such a trusted and assured person in the sense of their Web of Trust. details of this migration process can be found here, although [...]]]></description>
			<content:encoded><![CDATA[<p>Having finally completed my points transfer from my Thawte web of Trust to <a href="http://www.cacert.org/">CaCERT</a>, I thought it would be worth documenting the process.  I am already  <a href="http://www.thawte.com/secure-email/web-of-trust-wot/index.html">Thawte <acronym title="Web of Trust">WOT</acronym></a> notary, and as such a trusted and assured person in the sense of their Web of Trust. details of this migration process can be found <a href="http://wiki.cacert.org/wiki/ThawteNotary">here</a>, although my understanding is it applies to ordinary thawte users too.</p>
<p>The following a is a shorthand ticklist of the steps required.</p>
<ol>
<li>sign up with cacert.org</li>
<li>On the thawte website make sure your notary details include the email address that you have used for the cacert.org signup.  This may involve just editing your details within the WOT console, and waiting for approval/verification, or having to do this and a ping to the mail address.  having the details verified can take 2-5 days, if the info is not already on your notary page.</li>
<li>Generate a certificate compatible for use with Internet Explorer.  This is the tricky part, as even Firefox 3 doesn&#8217;t support their client based authentication required by the tverify.cacert.org website  this should also be for the email address you are signed up to cacert.org with.</li>
<li>Go to the Thawte verification site (tverify.cacert.org), and choose the appropriate certificate to present to the server. make sure to use your IE browser witht he right client cert installed.</li>
<li>Fill in your email address, ( grants you 50 points since youare trusted within the Thawte <acronym title="Web of Trust">WOT</acronym></li>
<li>Wait while a manual verification takes place.</li>
<li>Once email is received either notifying you of an error or noting you have succeded, either rinse and repeat, or proceed to the next step.</li>
<li>You are now &#8216;Assured&#8217; but need to take the <a href="http://wiki.cacert.org/wiki/AssurerChallenge">Assurer Challenge</a> in order to prove your basic knowledge about the system, in oorder to be able to actually start Assuring people.  The link above also includes some background material one may need in order to attain the 80% mark required.</li>
</ol>
<p>The Assurer Challenge is a relaly nice idea, and although anyone familiar with the concepts around the Thawte <acronym title="Web of Trust">WOT</acronym> system and general CA operations should have no problems witht he the majority of the 25 random questions, there are some which trelate closely to the CA specific rulings etc.</p>
<p>So now I have a full 150 assurance points since I was procesed by the Trusted Third Party (<acronym title="Trusted Third Party ">TTP</acronym> ) system ( and it appears this is the maximum one can get as otherwise ones points are rounded down), as opposed to the 100 point maximum one gets for gathering points via the <acronym title="Web of Trust">WOT</acronym> method.</p>
<p>So now I&#8217;m able to embed my name in client certificates (50 points minimum), get server certificates for 2 years, and also get code signing bits on my certificates.</p>
]]></content:encoded>
			<wfw:commentRss>http://lair.moria.org/blog/archives/84/feed</wfw:commentRss>
		<slash:comments>2</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>A poetic approach to Dan&#8217;s (And Halvar&#8217;s) DNS debacle</title>
		<link>http://lair.moria.org/blog/archives/75</link>
		<comments>http://lair.moria.org/blog/archives/75#comments</comments>
		<pubDate>Wed, 23 Jul 2008 19:43:15 +0000</pubDate>
		<dc:creator>Barry Irwin</dc:creator>
				<category><![CDATA[Incidents]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Systems Administration]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[exploit]]></category>
		<category><![CDATA[Humour]]></category>

		<guid isPermaLink="false">http://lair.moria.org/blog/?p=75</guid>
		<description><![CDATA[With the ongoing smoldering relating to the cross platform cross-vendor flaw in DNS as reported by Dan Kaminsky, Christofer Hoff has put a summary of  the situation together, but as a poem. Its also worth noting that Halvar Flake has stepped up and stated that hes found the bug as well ( so I assume [...]]]></description>
			<content:encoded><![CDATA[<p>With the ongoing smoldering relating to the cross platform cross-vendor flaw in DNS as reported by Dan Kaminsky, <a href="http://rationalsecurity.typepad.com/"> Christofer Hoff</a> has put a summary of  the situation together, but as a <a href="http://rationalsecurity.typepad.com/blog/2008/07/the-dns-debacle.html">poem</a>.</p>
<p>Its also worth noting that Halvar Flake has stepped up and stated that hes found the bug as well ( so I assume He will be sharing the stage with Dan at Defcon)</p>
<p>Footnote:</p>
<p>While trawling through logs it was interesting to nitice that this post was noted in <a href="https://www.e-secure-it.com/">E-Securre-it</a> and <a href="http://www.team-cymru.org/News/">Team Cymru&#8217;s</a> security news links links on the 24th of July 2008</p>
]]></content:encoded>
			<wfw:commentRss>http://lair.moria.org/blog/archives/75/feed</wfw:commentRss>
		<slash:comments>0</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>
		<item>
		<title>Internet Usage climbing</title>
		<link>http://lair.moria.org/blog/archives/26</link>
		<comments>http://lair.moria.org/blog/archives/26#comments</comments>
		<pubDate>Sat, 31 May 2008 11:03:32 +0000</pubDate>
		<dc:creator>Barry Irwin</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Systems Administration]]></category>
		<category><![CDATA[ASN]]></category>
		<category><![CDATA[Bandwidth]]></category>
		<category><![CDATA[Squid]]></category>

		<guid isPermaLink="false">http://lair.moria.org/blog/?p=26</guid>
		<description><![CDATA[I spend part of my time providing network management and consulting services to a consortium of local schools &#8211; The Albany Schools Network (ASN). We have spent a significant amount of time over the last three years migrating form an ancient legacy system consisting of a decrepit SparcStation 5, and some ancient old Cisco Routers [...]]]></description>
			<content:encoded><![CDATA[<p>I spend part of my time providing network management and consulting services to a consortium of local schools &#8211; The Albany Schools Network (ASN).  We have spent a significant amount of time over the last three years migrating form an ancient legacy system consisting of a decrepit SparcStation 5, and some ancient old Cisco Routers (<a href="http://www.cisco.com/en/US/products/hw/routers/ps428/index.html">AGS+</a> and  CGS+ &#8211; both of which were <acronym title="End of Life'd">eol&#8217;d</acronym> in 1997)  linked to nominally 33.6Kbit dedicated analog lines.</p>
<p>Thankfully we have come a long way and now boast a healthy modern network with peering at <a href="http://ginx.org.za/" target="_blank"><acronym title="Grahamstown Internet Exchange">GINX</acronym></a>. Early last year saw the introduction of the first of our 1Mbit DSL lines form Internet Solutions, the first real boost of bandwidth available to the schools, and something worthwhile doing since the actual links to the schools had been upgraded.</p>
<p>Looking over some stats I pulled up the following two reports from <a href="http://lightsquid.sf.net/">LightSquid</a> while not the most scientific they convey the massive growth in utilization for the schools.  While these represent the larges of the schools in terms of usage, the grown is pretty similar for all members of the consortium.</p>
<p>The first image is from may last year:<a href="http://lair.moria.org/blog/wp-content/uploads/2008/05/sdp_200705.png" title="Web proxy Utilisation May 2007" rel="lightbox"><br />
<img class="aligncenter size-medium wp-image-27"  src="http://lair.moria.org/blog/wp-content/uploads/2008/05/sdp_200705.png" alt="Web proxy Utilization May 2007" width="300" height="170" /><br />
</a></p>
<p>The second was generated this morning showing a somewhat heavier utilization.  It is worth noting that during this period, the schools link was upgraded from 384Kbit to over a Megabit.</p>
<p><a href="http://lair.moria.org/blog/wp-content/uploads/2008/05/sdp_200805.png" rel="lightbox"   title="Web Proxy Utilization - May 2008"><img class="aligncenter size-medium wp-image-28" title="sdp_200805" src="http://lair.moria.org/blog/wp-content/uploads/2008/05/sdp_200805.png" title="Web Proxy Utilization - May 2008" width="300" height="170"  /></a></p>
<p>I find it extremely gratifying to see these schools making such full use of the resources at hand!</p>
]]></content:encoded>
			<wfw:commentRss>http://lair.moria.org/blog/archives/26/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stable builds</title>
		<link>http://lair.moria.org/blog/archives/18</link>
		<comments>http://lair.moria.org/blog/archives/18#comments</comments>
		<pubDate>Wed, 21 May 2008 21:37:02 +0000</pubDate>
		<dc:creator>Barry Irwin</dc:creator>
				<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Systems Administration]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[uptime]]></category>

		<guid isPermaLink="false">http://lair.moria.org/blog/?p=18</guid>
		<description><![CDATA[I was cleaning out some old notes the other day and came across a pile of work relating to the development of some custom FreeBSD firewall solutions that Neil and I developed while at Itouch Labs, many years back in 2002. The majority of the code is completely out dated, given these were based on [...]]]></description>
			<content:encoded><![CDATA[<p>I was cleaning out some old notes the other day and came across a pile of work relating to the development of some custom FreeBSD firewall solutions that <a href="http://nxsy.org">Neil</a> and I developed while at Itouch Labs, many years back in 2002.</p>
<p>The majority of the code is completely out dated, given these were based on the the then bleeding edge 4.3  branch.  The only thing thats probably of value, is to sometime dust off the extensions we did to natd to provide an interactive console and the ability to reload rules without dumping its state table. Possibly post PhD.</p>
<p>I also found a link to a post made by <a href="http://devco.net/">Arri</a> when he <a href="http://www.devco.net/archives/2006/07/30/freebsd_stability.php">decommissioned them</a> some four and a bit years later, with some impressive uptimes:</p>
<blockquote><p>4.3-RELEASE-p28 FreeBSD 4.3-RELEASE-p28 #0<br />
8:56AM  up 1175 days, 14:25, 1 user, load averages: 0.01, 0.00, 0.00<br />
4.3-RELEASE FreeBSD 4.3-RELEASE #3: Thu Aug  9 08:24:10 SAST 2001<br />
8:55AM  up 1353 days, 13:07, 1 user, load averages: 0.07, 0.03, 0.004.3-RELEASE FreeBSD 4.3-RELEASE #3: Thu Aug  9 08:24:10 SAST 2001<br />
8:57AM  up 1636 days, 12:16, 2 users, load averages: 0.01, 0.02, 0.00</p></blockquote>
<p>BSD is great to work with! I see that the 2nd edition of <a href="http://www.absolutefreebsd.com/">Absolute FreeBSD</a> is now finally available, and am eagerly  awaiting for my copy to arrive.</p>
]]></content:encoded>
			<wfw:commentRss>http://lair.moria.org/blog/archives/18/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Systems Administration Cheet Sheets</title>
		<link>http://lair.moria.org/blog/archives/15</link>
		<comments>http://lair.moria.org/blog/archives/15#comments</comments>
		<pubDate>Sun, 18 May 2008 08:25:09 +0000</pubDate>
		<dc:creator>Barry Irwin</dc:creator>
				<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Systems Administration]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://lair.moria.org/blog/?p=15</guid>
		<description><![CDATA[Colin Barschel has published a rather complete listing of how to perform common unix related tasks in Linux and FreeBSD, and even some Solaris examples. Even better hes got a booklet version as well for easy printing. Something to keep on the back burner/bookmarks for when you get stuck trying to remember just how broken [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://cb.vu/" target="_blank">Colin Barschel</a> has published a rather complete listing of <a href="http://cb.vu/unixtoolbox.xhtml">how to perform common unix related tasks </a>in Linux and FreeBSD, and even some Solaris examples. Even better hes got a<a title="Booklet PDF version" href="http://cb.vu/unixtoolbox.book.pdf" target="_blank"> booklet version</a> as well for easy printing.  Something to keep on the back burner/bookmarks for when you get stuck trying to remember just how broken ‹insert os of choice›&#8217;s fooblat command is.</p>
]]></content:encoded>
			<wfw:commentRss>http://lair.moria.org/blog/archives/15/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XP failing to hibernate</title>
		<link>http://lair.moria.org/blog/archives/14</link>
		<comments>http://lair.moria.org/blog/archives/14#comments</comments>
		<pubDate>Sat, 03 May 2008 10:54:56 +0000</pubDate>
		<dc:creator>Barry Irwin</dc:creator>
				<category><![CDATA[Systems Administration]]></category>
		<category><![CDATA[Annoyances]]></category>
		<category><![CDATA[XP]]></category>

		<guid isPermaLink="false">http://lair.moria.org/blog/?p=14</guid>
		<description><![CDATA[The problem For some time my Laptop and Desktop XP systems have been misbehaving, intermittently when going into hibernate, the desktop much more since it got its upgrade to 4 gigs of Ram. Symptoms include just going blank with heaps of hard disk activity and then just sitting with the HDD light flickering, or stating [...]]]></description>
			<content:encoded><![CDATA[<h2>The problem</h2>
<p>For some time my Laptop and Desktop XP systems have been misbehaving, intermittently when going into hibernate,  the desktop much more since it got its upgrade to 4 gigs of Ram.  Symptoms include just going blank with heaps of hard disk activity and then just sitting with the HDD light flickering, or stating that there are insufficient resources available —  despite heaps of free disk space on  the system drive.The other evening I had ad enough and went on a hunt for a potential solution other than the &#8220;re-install windows&#8221; solution.</p>
<p>This was particularly irritating when the laptop failed to hibernate, and you get home to find a rather warm laptop bag.  The other problem being in light of the joyous power cuts we have been experiencing, my UPS software is configured to hibernate on power fail rather than shut down something which wasn&#8217;t happening and the UPS batteries were ending up draining.  After trying the logical solutions of enable/disable hibernate, defrag the drive, removing the <code>hiberfile.sys</code>, rinse repeat etc. with no tangible effect it was time to look elsewhere.</p>
<h2>The solution</h2>
<p>The solution was surprisingly simple once I got the right <a href="http://www.google.com/search?hl=en&amp;newwindow=1&amp;q=xp+fails+to+hibernate+solution">sequence of terms</a> plugged into Google.  Microsoft has published a <a title="Microsoft KB 909095" href="http://support.microsoft.com/?kbid=909095">hotfix (Microsoft KB 909095)</a> for exactly this issue.  Although billed as:</p>
<blockquote><p>The computer occasionally does not hibernate and you receive an &#8220;Insufficient System Resources Exist to Complete the API&#8221; error message in Windows XP with Service Pack 2, in Windows XP Tablet PC Edition 2005, or in Windows XP Media Center Edition 2005</p></blockquote>
<p>It installs fine on any XP SP2 system, as stated further down in the Microsoft page.  With some trepidation I applied to my desktop fully expecting a warning or complaint &#8211; none occurred.  A reboot later I had hibernate working perfectly again. The cause of the problem is :</p>
<blockquote><p>To prepare the computer to hibernate, the Windows kernel power manager requires a block of contiguous memory. The size of this contiguous memory is proportional to the number of physical memory regions that the computer is using. A computer that uses lots of RAM is likely to use more physical memory regions when the computer prepares to hibernate. Therefore, a larger amount of contiguous memory is required to prepare the computer to hibernate.</p>
<p>Additionally, the number of physical memory regions varies according to the programs, services, and device drivers that the computer uses. Therefore, the hibernate feature occasionally fails.</p></blockquote>
<p>What I found interesting is that both systems are up to date, and I&#8217;ve never been offered this in any of the Windows update sessions, despite the hotfix being available since August 2006!</p>
]]></content:encoded>
			<wfw:commentRss>http://lair.moria.org/blog/archives/14/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ubuntu LTS migration for the GUI challenged</title>
		<link>http://lair.moria.org/blog/archives/13</link>
		<comments>http://lair.moria.org/blog/archives/13#comments</comments>
		<pubDate>Mon, 28 Apr 2008 16:40:01 +0000</pubDate>
		<dc:creator>Barry Irwin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[PhD]]></category>
		<category><![CDATA[Systems Administration]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[Dapper]]></category>
		<category><![CDATA[Hardy]]></category>
		<category><![CDATA[Upgrade]]></category>

		<guid isPermaLink="false">http://lair.moria.org/blog/?p=13</guid>
		<description><![CDATA[With the release of Ubuntu 8.10 (Hardy Heron) and its designation as the new LTS version, I decided to upgrade my one local server from Dapper to Hardy, with the small challenge of I didnt want to do it via a gui. This is partly because I did not have a X client on my [...]]]></description>
			<content:encoded><![CDATA[<p>With the release of <a href="http://www.ubuntu.com/">Ubuntu</a> 8.10 (Hardy Heron)  and its designation as the new LTS version, I decided to upgrade my one local server from Dapper to Hardy, with the small challenge of I didnt want to do it  via a gui.  This is partly because I did not have a X client on my laptop this morning, and partly because it will allow me to trial the upgrade of one of my Remote hosted systems.</p>
<p>Some issues specific to the Rhodes environment are noted at the end.</p>
<p>Get up to date:</p>
<blockquote><p><code>aptitude  update<br />
aptitude upgrade<br />
aptitude dist-upgrade</code></p></blockquote>
<p>All fairly painless and out of the ordinary,  bar the need to add the <code>dapper-proposed</code> repo to my <code>/etc/apt/sources.list</code></p>
<p>Installing the requires base packages:</p>
<blockquote><p><code>aptitude install update-manager-core</code></p></blockquote>
<p>Before doing the upgrade I decided to set up the CDROM ISO as a local repository in order to save bandwidth whales etc.. (Having a system with real internet access, or a working apt-proxy may be a better solution).  Once the <a title="Get your JIGDO sources here!" href="http://cdimage.ubuntu.com/dvd/current/hardy-dvd-i386.jigdo">Hardy DVD</a> is available in a few weeks this may go a lot faster, as libraries such as QT and other components of main will be included in the larger image.</p>
<blockquote><p><code>$ mount -t iso9660 -o loop  ~bvi/ubuntu-8.04-server-i386.iso  /cdrom<br />
$ apt-cdrom add</code></p></blockquote>
<p>This should show output similar tot he following as the CDROM is added tot he Repo list.</p>
<blockquote><p><code>Using CD-ROM mount point /cdrom/<br />
Unmounting CD-ROM<br />
Waiting for disc...<br />
Please insert a Disc in the drive and press enter<br />
Mounting CD-ROM...<br />
Identifying.. [b36baea778d37bbf48a3c8bd75b5cffb-2]<br />
Scanning disc for index files..<br />
Found 2 package indexes, 0 source indexes and 1 signatures<br />
Found label 'Ubuntu-Server 8.04 _Hardy Heron_ - Release i386 (20080423.2)'<br />
...<br />
</code></p></blockquote>
<p>And should add a  to the top of your <code>/etc/apt/sources.list</code> similar to the following:</p>
<blockquote><p><code>deb cdrom:[Ubuntu-Server 8.04 _Hardy Heron_ - Release i386 (20080423.2)]/ hardy main restricted</code></p></blockquote>
<p>Finally the update can be performed</p>
<blockquote><p><code>do-release-update -p</code></p></blockquote>
<p>The -p parameter is due to the fact that the LTS as defined at  <a href="http://changelogs.ubuntu.com/meta-release-lts" target="_blank">http://changelogs.ubuntu.com/meta-release-lts</a> is still showing dapper as the LTS, and should be able to be omitted in the future. with the -p, the meta-release-lts.proposed file is used instead.</p>
<p>the bulk of the base operating system was happily upgraded form CDROM repo in a matter of minutes, and the remaining pile of mostly <code>universe</code> and <code>multiverse</code> packages took around an hour to download</p>
<p>3 hours and a reboot later and the server is happily running Hardy.</p>
<p>All in all its about the same time for doing a &#8216;buildworld dance&#8217; with FreeBSD, along with a massive level of portupgrade.</p>
<h2>Post Reboot</h2>
<p>In order to validate the upgrade, we can make use of the  <a href="http://www.linuxbase.org/">Linux Standard Base</a> support for Debian<br />
utilities ( aka lsb_release)</p>
<blockquote>
<h3>We have gone from:</h3>
<p><code>$ uname -a<br />
Linux spy.ict.ru.ac.za 2.6.15-51-686 #1 SMP PREEMPT Tue Feb 12 16:59:15 UTC 2008 i686 GNU/Linux<br />
$ lsb_release -a <em><span style="color: #3366ff;">(output trimmed)</span></em><br />
Distributor ID: Ubuntu<br />
Description:    Ubuntu 6.06.2 LTS<br />
Release:        6.06<br />
Codename:       dapper</code></p>
<h3>To:</h3>
<p><code>$ uname -a<br />
Linux spy.ict.ru.ac.za 2.6.24-16-server #1 SMP Thu Apr 10 13:58:00 UTC 2008 i686 GNU/Linux<br />
$ lsb_release -a<br />
Distributor ID: Ubuntu<br />
Description:    Ubuntu 8.04<br />
Release:        8.04<br />
Codename:       hardy</code></p></blockquote>
<p>In reflection, far less pain than I expected certainly not enough to make me want to employ  a <a title="Free your linux server" href="http://lair.moria.org/blog/archives/10">depenguinator </a>on this server yet.</p>
<h2>Rhodes Specific notes:</h2>
<ul>
<li>Preferably use ubuntu.rucus.ru.ac.za as your repo unless you would like your quota flattened. Hopefully it will be up.</li>
<li><a title="RUCUS FTP SITE" href="ftp://ftp.rucus.ru.ac.za/pub/linux/ubuntu/hardy " target="_blank">ftp://ftp.rucus.ru.ac.za/pub/linux/ubuntu/hardy </a>has the ISO files</li>
<li>You will need appropriate proxy settings in order for the do-release-upgrade to be able to access the changelogs.ubuntu.com site.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://lair.moria.org/blog/archives/13/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
