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

<channel>
	<title>Static in the Ether</title>
	<atom:link href="http://lair.moria.org/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://lair.moria.org/blog</link>
	<description>Unix, Information Security &#38; Systems Administration</description>
	<pubDate>Tue, 02 Sep 2008 13:08:35 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<item>
		<title>Security and Networks Research Group (SNRG) Site launch</title>
		<link>http://lair.moria.org/blog/archives/129</link>
		<comments>http://lair.moria.org/blog/archives/129#comments</comments>
		<pubDate>Tue, 02 Sep 2008 09:26:39 +0000</pubDate>
		<dc:creator>Barry Irwin</dc:creator>
		
		<category><![CDATA[Networking]]></category>

		<category><![CDATA[Security]]></category>

		<category><![CDATA[research]]></category>

		<guid isPermaLink="false">http://lair.moria.org/blog/?p=129</guid>
		<description><![CDATA[After some preparation and navigation of technical SNAFUs the new website for the Security and Networks research Group (SNRG) that I run in the Rhodes CS Department is up and running.
While content is still a little thin on the ground, it does represent a major step forward in actually providing a point of collation of [...]]]></description>
			<content:encoded><![CDATA[<p>After some preparation and navigation of technical <a title="Situation normal....." href="http://en.wikipedia.org/wiki/SNAFU">SNAFUs</a> the new website for the S<a title="Security and Networks Research at Rhodes University" href="http://snrg.ict.ru.ac.za/">ecurity and Networks research Group (SNRG)</a> that I run in the Rhodes <a href="http://www.cs.ru.ac.za/">CS Department</a> is up and running.</p>
<p>While content is still a little thin on the ground, it does represent a major step forward in actually providing a point of collation of project information under our own control.  A large task to be performed next term is to actually backfill with old project information as we can get it off CD.</p>
<p>More as content actually develops.</p>
<p><strong>Update</strong>: SNAFU n+1  the vhost is being denied access from outside of Rhodes.</p>
<p><strong>Update:</strong> All fixed.</p>
]]></content:encoded>
			<wfw:commentRss>http://lair.moria.org/blog/archives/129/feed</wfw:commentRss>
		</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[Applications]]></category>

		<category><![CDATA[LyX]]></category>

		<category><![CDATA[Networking]]></category>

		<category><![CDATA[Security]]></category>

		<category><![CDATA[Systems Administration]]></category>

		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[Unix]]></category>

		<category><![CDATA[Vizualization]]></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 optain 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>
<blockquote>
<pre>openssl smime -pk7out -in mail.txt | \
        openssl pkcs7 -print_certs &gt; extract.crt</pre>
</blockquote>
<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.</p>
<blockquote>
<pre>openssl smime -CAfile extract.crt -verify -in mail.txt</pre>
</blockquote>
<p>Now e 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.</p>
<blockquote><p>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:</p></blockquote>
<p>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>
<blockquote>
<pre>openssl smime -CAfile extract.crt -verify -in mail2.txt
...
mail contents deleted
...
Verification successful</pre>
</blockquote>
<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>
<blockquote>
<pre>diff -u mail.txt  mail2.txt
--- mail.txt         Mon Aug 25 18:06:33 2008
+++ mail2.txt      Mon Aug 25 18:08:10 2008
@@ -61,10 +61,6 @@
    South Africa

-Important Notice: This email is subject to important restrictions, qualifications
 and disclaimers ("the Disclaimer") ..that all was one very long line that made
 up the corporate disclaimer.....
-
-
-
 ------=_NextPart_000_0048_01C906C7.DB6FB700
 Content-Type: application/x-pkcs7-signature;
        name="smime.p7s"</pre>
</blockquote>
<p>From the above the only difference shown is that a mailgateway had added in a extra four lines of disclaimer and whitespace padding.  The question now evolves as to how to provide the now pretty much ubiquitious organisational disclaimer in outgoing mail in such a way that it doesnt 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 separeate mime component, which is what interestingly one university here does ( although it insists on prepending its mime encapsulated HTML disclaimer, which makes for relaly ugly mail reading!)</p>
]]></content:encoded>
			<wfw:commentRss>http://lair.moria.org/blog/archives/123/feed</wfw:commentRss>
		</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>
		</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>
		</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 - also obtainable from the homepage, includes a couple of packet traces as used in the Defcon [...]]]></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 - 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>
		</item>
		<item>
		<title>Blackhat 2008 Slides</title>
		<link>http://lair.moria.org/blog/archives/99</link>
		<comments>http://lair.moria.org/blog/archives/99#comments</comments>
		<pubDate>Wed, 20 Aug 2008 21:49:39 +0000</pubDate>
		<dc:creator>Barry Irwin</dc:creator>
		
		<category><![CDATA[InfoSec People]]></category>

		<category><![CDATA[Security]]></category>

		<category><![CDATA[blackhat]]></category>

		<category><![CDATA[conferences]]></category>

		<guid isPermaLink="false">http://lair.moria.org/blog/?p=99</guid>
		<description><![CDATA[Michael Boman has made available the slidepack for Blackhat 2008. There are many blackhats as such but THE Blackhat is Blackhat USA held in Vegas in early in August each year. While the official audio and video will be another couple of months off, the slides should keep people interested. BH Europe also has material [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://michaelboman.org/blog//">Michael Boman</a> has made available the <a href="http://michaelboman.org/blog/2008/08/07/blackhat-2008-slides-available-get-your-copy-here/">slidepack</a> for <a href="http://www.blackhat.com/html/bh-usa-08/bh-us-08-main.html">Blackhat 2008</a>. There are many blackhats as such but <strong>THE</strong> Blackhat is Blackhat USA held in Vegas in early in August each year. While the official audio and video will be another couple of months off, the slides should keep people interested. BH Europe also has <a href="http://www.blackhat.com/html/bh-europe-08/bh-eu-08-archives.html">material already available</a> on the archive</p>
<p>Blackat Media&#8217;s decision to open up their <a href="http://www.blackhat.com/html/bh-media-archives/bh-multimedia-archives-index.html#quicklinks">archives </a>is to be commended.  If I recall correctly, this content has also been available on iTunes fro a while under podcasts.</p>
]]></content:encoded>
			<wfw:commentRss>http://lair.moria.org/blog/archives/99/feed</wfw:commentRss>
		</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: [...]]]></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>
		</item>
		<item>
		<title>Wierdo comment spam</title>
		<link>http://lair.moria.org/blog/archives/82</link>
		<comments>http://lair.moria.org/blog/archives/82#comments</comments>
		<pubDate>Tue, 19 Aug 2008 12:03:16 +0000</pubDate>
		<dc:creator>Barry Irwin</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[blogsec]]></category>

		<category><![CDATA[blog]]></category>

		<category><![CDATA[spam]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://lair.moria.org/blog/?p=82</guid>
		<description><![CDATA[The last few weeks has seen a deluge of comment spam, which mostly is the run of the mill bot based stuff advertising &#8216;cheap hosting&#8217; , porn and other such sites.  a couple tht cought my attention were simple posts of urls with the following sort of format:


http://www.google.com/search?q=rxbcrobh
http://www.google.com/search?q=frhlrxca
http://www.google.com/search?q=omihinga


Searching on google with these links, surprisingly turns [...]]]></description>
			<content:encoded><![CDATA[<p>The last few weeks has seen a deluge of comment spam, which mostly is the run of the mill bot based stuff advertising &#8216;cheap hosting&#8217; , porn and other such sites.  a couple tht cought my attention were simple posts of urls with the following sort of format:</p>
<blockquote>
<ul>
<li>http://www.google.com/search?q=rxbcrobh</li>
<li>http://www.google.com/search?q=frhlrxca</li>
<li>http://www.google.com/search?q=omihinga</li>
</ul>
</blockquote>
<p>Searching on google with these links, surprisingly turns up nothing.  I was expecting to find lists of malware infected sites similar to the SQL injection attacks seen in the last few months.  Does anyone have any insight into these ? Sources appear to be geographically dispersed, and scattered across a variety of blog entries, old and new?</p>
]]></content:encoded>
			<wfw:commentRss>http://lair.moria.org/blog/archives/82/feed</wfw:commentRss>
		</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>
		</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>
		</item>
		<item>
		<title>IFIP 2009 Conference CFP</title>
		<link>http://lair.moria.org/blog/archives/69</link>
		<comments>http://lair.moria.org/blog/archives/69#comments</comments>
		<pubDate>Mon, 14 Jul 2008 20:18:31 +0000</pubDate>
		<dc:creator>Barry Irwin</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[conferences]]></category>

		<guid isPermaLink="false">http://lair.moria.org/blog/?p=69</guid>
		<description><![CDATA[The 24th IFIP International Information Security Conference, has just released its call for papers for the 2009 edidtion to be held in Cyprus May 18-20 next year. Accepted papers will be presented at the conference and published by  Springer. Accepted papers must follow Springer’s guidelines for the IFIP Series, available at  www.springer.com/series/6102
Important dates
Submission of papers: October [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.sec2009.org/">24th IFIP International Information Security Conference</a>, has just released its <a href="http://www.sec2009.org/?pageid=5">call for papers</a> for the 2009 edidtion to be held in Cyprus May 18-20 next year. Accepted papers will be presented at the conference and published by  Springer. Accepted papers must follow Springer’s guidelines for the IFIP Series, available at  <a href="http://www.springer.com/series/6102" target="_blank">www.springer.com/series/6102</a></p>
<p><span class="bd_SubTitle"><strong>Important dates</strong><br />
</span>Submission of papers: <strong>October 20, 2008</strong><br />
Notification to authors:  <strong>December 20, 2008</strong><br />
Camera-ready copies:  <strong>January 15, 2009</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://lair.moria.org/blog/archives/69/feed</wfw:commentRss>
		</item>
		<item>
		<title>Words of Wisdom</title>
		<link>http://lair.moria.org/blog/archives/67</link>
		<comments>http://lair.moria.org/blog/archives/67#comments</comments>
		<pubDate>Mon, 14 Jul 2008 20:07:11 +0000</pubDate>
		<dc:creator>Barry Irwin</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[Botnets]]></category>

		<guid isPermaLink="false">http://lair.moria.org/blog/?p=67</guid>
		<description><![CDATA[While doing some reading this evening in preparation for my Postgrad Infosec course next week I came across the following pearls of wisdom from Taylor Banks


Admit that you are powerless over bots.
Believe that a power greater than yourself exists and is necessary to identify and eliminate malware, botnets, and the Windows hosts that contain them.
Make [...]]]></description>
			<content:encoded><![CDATA[<p>While doing some reading this evening in preparation for my Postgrad Infosec course next week I came across the following <a href="http://taylorbanks.com/blog/12-step-botnet-recovery-program/" title="12-Step Botnet Recovery Program">pearls of wisdom</a> from <a href="http://taylorbanks.com">Taylor Banks</a></p>
<blockquote>
<ol>
<li>Admit that you are powerless over bots.</li>
<li>Believe that a power greater than yourself exists and is necessary to identify and eliminate malware, botnets, and the Windows hosts that contain them.</li>
<li>Make a decision to turn your will and your life over to ShadowServer, Malfease or another similar volunteer effort.</li>
<li>Make a searching and fearless inventory of your Windows machines.</li>
<li>Admit to another security expert that you [have/do] run Windows.</li>
<li>Demonstrate readiness to remove Windows from your PC.</li>
<li>Humbly ask other experts to remove Windows from your machine.</li>
<li>Make a list of all other machines you’ve infected.</li>
<li>Make amends to those infected, i.e. with Mac OS, Ubuntu, FreeBSD or similar.</li>
<li>Continue to inventory remaining Windows hosts, and when infected, format &#038; re-install.</li>
<li>Seek through prayer, meditation and continuing malware research to improve your understanding of the growing malware threat as we know it.</li>
<li>Having had a spiritual awakening, carry this message to other Windows users.</li>
</ol>
</blockquote>
<p>What I found interesting despite the obvious humour, is that it left me wondering as to just now many of the 19 million connects form the last 3 years I was processing earlier are actually from enslaved bots or zombies&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://lair.moria.org/blog/archives/67/feed</wfw:commentRss>
		</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 intense. [...]]]></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>
		</item>
		<item>
		<title>FireFox 3.0 Launch day &#038; 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 [...]]]></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>
		</item>
		<item>
		<title>VizSec 2007 proceedings out</title>
		<link>http://lair.moria.org/blog/archives/54</link>
		<comments>http://lair.moria.org/blog/archives/54#comments</comments>
		<pubDate>Mon, 16 Jun 2008 06:16:18 +0000</pubDate>
		<dc:creator>Barry Irwin</dc:creator>
		
		<category><![CDATA[Books]]></category>

		<category><![CDATA[PhD]]></category>

		<category><![CDATA[Security]]></category>

		<category><![CDATA[Vizualization]]></category>

		<category><![CDATA[Hilbert Curve]]></category>

		<category><![CDATA[InetVis]]></category>

		<category><![CDATA[Visualization]]></category>

		<category><![CDATA[VizSec]]></category>

		<guid isPermaLink="false">http://lair.moria.org/blog/?p=54</guid>
		<description><![CDATA[The Proceedings of the 2007 Workshop on Visualization for Computer Security (VizSec 2007) are finally available. Springer Has the book available for order at a princely 60 Euros.  Amazon has the  book listed but not yet available for shipping , but one can pre-order. For those interested, Springer has a flyer and table [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="lightbox" href="http://ecx.images-amazon.com/images/I/51omrq2hDqL._L160_.jpg"><img style="border: 0pt none; " src="http://ecx.images-amazon.com/images/I/51omrq2hDqL._SL160_.jpg" alt="" width="106" height="160" align="left" hspace="10" /></a>The Proceedings of the 2007 Workshop on Visualization for Computer Security (VizSec 2007) are finally available. Springer Has the<a title="Proceedings of the 2007 Workshop on Visualization for Computer Security (VizSec 2007) " href="http://www.springer.com/computer/computer+imaging/book/978-3-540-78242-1" target="_blank"> book available for order</a> at a princely 60 Euros.  Amazon has the <a title="Proceedings of the 2007 Workshop on Visualization for Computer Security (VizSec 2007) " href="http://www.amazon.com/exec/obidos/ASIN/3540782427/ref=nosim/balinslair-20"> book listed </a>but not yet available for shipping , but one can pre-order. For those interested, Springer has a <a href="http://www.springer.com/productFlyer_978-3-540-78242-1.pdf?SGWID=0-0-1297-173816215-0">flyer</a> and <a href="http://www.springer.com/computer/computer+imaging/book/978-3-540-78242-1?detailsPage=toc">table of contents</a> available.  PDF versions of the presentations given are available form the <a title="VizSec 2007 Presentations" href="http://vizsec.org/workshop2007/presentations.html">VizSec 2007 website</a>.</p>
<p>My copy should hopefully be arriving in the next few weeks, but I&#8217;m looking forward to the Work done by <a title="John R Goodall" href="http://vizsec.org/johng">John R Goodall</a>,  <a title="Gregory Conti" href="http://www.rumint.org/gregconti/">Gregory Conti</a> and  <a title="Kwan-Liu Ma" href="http://www.cs.ucdavis.edu/~ma/">Kwan-Liu Ma</a> as editors. I&#8217;m just sorry I&#8217;m not going to make <a title="2008 VizSec Workshop" href="http://vizsec.org/workshop2008">VizSec 2008</a> this year.</p>
<p>The two papers that  I  presented are (links to the PDF slides):</p>
<ul>
<li><a href="http://vizsec.org/workshop2007/presentations/irwin-hilbert.pdf"><em>High level Internet Scale traffic visualization using Hilbert curve mapping</em></a> - Barry Irwin and Nick Pilkington. This details the initial work we did using the <a title="Hilbert Curve Analysis tool for IP networks" href="http://nick.rucus.net/hilbert">Hilbert Curve Analysis tool for IP networks</a></li>
<li><a href="http://vizsec.org/workshop2007/presentations/irwin-inetvis.pdf"><em>Using InetVis to evaluate Snort and Bro scan detection on a network telescope</em></a> - Barry Irwin and Jean-Pierre van Riel. <a href="http://www.cs.ru.ac.za/research/g02v2468/inetvis.html">InetVis</a> is the result of three years of JP&#8217;s work to build a scalable 3-D vizualisation tool for network traffic — primarily that collected by network telescopes.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://lair.moria.org/blog/archives/54/feed</wfw:commentRss>
		</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>
		</item>
		<item>
		<title>Visualizing Viruses</title>
		<link>http://lair.moria.org/blog/archives/51</link>
		<comments>http://lair.moria.org/blog/archives/51#comments</comments>
		<pubDate>Thu, 12 Jun 2008 06:45:03 +0000</pubDate>
		<dc:creator>Barry Irwin</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[Vizualization]]></category>

		<category><![CDATA[Malware]]></category>

		<category><![CDATA[viruses]]></category>

		<guid isPermaLink="false">http://lair.moria.org/blog/?p=51</guid>
		<description><![CDATA[Wired has a article on the Artwork done by MIT Media Lab&#8217;s grad student Alex Dragulescu. Working under contract to  MessageLabs he has produced a number  number of pictures,  showing images of Mydoom, Ghost Keylogger and other bits of Malware.
While all quite pretty there seems to be no detail of how they [...]]]></description>
			<content:encoded><![CDATA[<p>Wired has a article on the Artwork done by MIT Media Lab&#8217;s grad student <a title="Alex Dragulescu Homepage" href="http://www.sq.ro/">Alex Dragulescu</a>. Working under contract to  MessageLabs he has produced a number  number of <a href="http://www.wired.com/politics/security/multimedia/2008/04/gallery_viruses">pictures</a>,  showing images of Mydoom, Ghost Keylogger and other bits of Malware.<br />
While all quite pretty there seems to be no detail of how they were created in the original post although the <a href="http://www.sq.ro/malwarez.php">MalWarez</a> link on his homepage describes the process as follows:</p>
<blockquote><p>..For each piece of disassembled code, API calls, memory addresses and subroutines are tracked and analyzed. Their frequency, density and grouping are mapped to the inputs of an algorithm that grows a virtual 3D entity.</p></blockquote>
<p>The <a title="Storm Worm Vizualisation" href="http://www.sq.ro/viewer.php?i=125">Storm Worm</a> is probably my favorite visualizations. He also has an interesting set of images entitled <a href="http://www.sq.ro/spamplants.php">SpamPlants</a>, based on input relating to the ASCII character frequency of spam messages.</p>
<p>Now this sounds like a great project for an aspiring security researcher with a graphical bent.</p>
]]></content:encoded>
			<wfw:commentRss>http://lair.moria.org/blog/archives/51/feed</wfw:commentRss>
		</item>
		<item>
		<title>RSS feeds have moved</title>
		<link>http://lair.moria.org/blog/archives/49</link>
		<comments>http://lair.moria.org/blog/archives/49#comments</comments>
		<pubDate>Tue, 10 Jun 2008 05:59:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://lair.moria.org/blog/?p=49</guid>
		<description><![CDATA[Further to my previous post about using mod_rewrite to direct my old feed URLs to the right place, its probably time to notify people who read them in aggregators that the URI has changed, since the aggregators (particularly the web based ones hide the redirect, even tho its a 301). To the:

1 subscribers using Google [...]]]></description>
			<content:encoded><![CDATA[<p>Further to my previous post about using <a href="http://lair.moria.org/blog/archives/47">mod_rewrite to direct my old feed URLs</a> to the right place, its probably time to notify people who read them in aggregators that the URI has changed, since the aggregators (particularly the web based ones hide the redirect, even tho its a 301). To the:</p>
<ul>
<li>1 subscribers using Google FeedFetcher to grab /blog/index.php?flav=rss</li>
<li> 6 subscribers using Google FeedFetcher to grab /blog/?flav=rss&amp;category=Security</li>
<li> 27 subscribers using Google FeedFetcher to grab /blog/?flav=rss</li>
<li> 2 subscribers using <a href="http://www.rojo.com/?feed-id=3694167">Rojo</a> to fetch  /blog/?flav=rss</li>
<li> 7 subscribers  NewsGatorOnline  to grab /blog/?flav=rss</li>
<li> 1 subscriber using Feedshow to grab /blog/?flav=rss</li>
</ul>
<ul></ul>
<p>First of all thank-you for your interest, but the links have changed. My full feed is available as <a href="http://lair.moria.org/blog/feed">RSS 2.0</a> or <a href="http://lair.moria.org/blog/feed/atom">Atom 1.0,</a> or a reduced <a href="http://lair.moria.org/blog/archives/category/security/feed">Security only feed</a> as RSS 2.0 ( but you miss out on the fun stuff).</p>
<p>This is why this post is actually tagged as security, so they get it too ;)</p>
]]></content:encoded>
			<wfw:commentRss>http://lair.moria.org/blog/archives/49/feed</wfw:commentRss>
		</item>
		<item>
		<title>Another RFC to BibTeX script</title>
		<link>http://lair.moria.org/blog/archives/45</link>
		<comments>http://lair.moria.org/blog/archives/45#comments</comments>
		<pubDate>Mon, 09 Jun 2008 05:37:34 +0000</pubDate>
		<dc:creator>Barry Irwin</dc:creator>
		
		<category><![CDATA[PhD]]></category>

		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[BibTex]]></category>

		<category><![CDATA[RFC]]></category>

		<guid isPermaLink="false">http://lair.moria.org/blog/?p=45</guid>
		<description><![CDATA[Following form my earlier post regarding a pre-compiled bibTeX database of all Internet RFCs, I discovered while browsing the CTAN archives that Richard Mortier wrote a awk script back in 2000  while at Cambridge Computing Lab, that does something similar.  For purists who don&#8217;t trust this new fangled XML and XSLT stuff its [...]]]></description>
			<content:encoded><![CDATA[<p>Following form my earlier post regarding a pre-compiled <a href="http://lair.moria.org/blog/archives/16">bibTeX database of all Internet RFCs</a>, I discovered while browsing the <acronym title="Comprehensive TeX Archive Network">CTAN</acronym> archives that <a href="http://www.vipadia.com/people/mort/">Richard Mortier</a> wrote a <tt>awk</tt> script back in 2000  while at Cambridge Computing Lab, that does something similar.  For purists who don&#8217;t trust this new fangled XML and XSLT stuff its available at:</p>
<p>http://www.ctan.org/tex-archive/biblio/bibtex/utils/misc/rfc2bib.awk</p>
<p>Or other <a href="http://www.ctan.org/mirrors">CTAN mirrors</a> closer to you.</p>
]]></content:encoded>
			<wfw:commentRss>http://lair.moria.org/blog/archives/45/feed</wfw:commentRss>
		</item>
		<item>
		<title>Happy 30th 8086 Father of the x86 architecture</title>
		<link>http://lair.moria.org/blog/archives/48</link>
		<comments>http://lair.moria.org/blog/archives/48#comments</comments>
		<pubDate>Sat, 07 Jun 2008 22:30:43 +0000</pubDate>
		<dc:creator>Barry Irwin</dc:creator>
		
		<category><![CDATA[Web Randomness]]></category>

		<category><![CDATA[Hardware]]></category>

		<category><![CDATA[History]]></category>

		<guid isPermaLink="false">http://lair.moria.org/blog/?p=48</guid>
		<description><![CDATA[Thirty years ago today (8 June 1978) , Intel unleashed the 8086  16-bit CPU on the world, some four years after the debut of the 8080 which powered the Altair computer (something I wish I could find to own!).
Computer world has a really nice writeup on the history and development of ver the last [...]]]></description>
			<content:encoded><![CDATA[<p>Thirty years ago today (8 June 1978) , Intel unleashed the 8086  16-bit CPU on the world, some four years after the debut of the 8080 which powered the <a title="Altair 8080 based computer" href="http://oldcomputers.net/altair.html">Altair computer</a> (something I wish I could find to own!).<br />
Computer world has a really <a href="http://www.computerworld.com/action/article.do?command=viewArticleBasic&amp;articleId=9090978&amp;pageNumber=1">nice writeup </a>on the history and development of ver the last 30 years and corresponding <a href="http://www.computerworld.com/action/article.do?command=viewArticleBasic&amp;articleId=9091018"> brief time line</a></p>
<p>Intel&#8217;s own <a title="Intel CPU  Hall of Fame" href="http://www.intel.com/museum/online/hist_micro/hof/index.htm">Microprocessor Hall of Fame</a> describes the chip as:</p>
<blockquote><p>A pivotal sale to IBM&#8217;s new personal computer division made the 8088 the brains of IBM&#8217;s new hit product&#8211;the IBM PC. The 8088&#8217;s success propelled Intel into the ranks of the Fortune 500, and Fortune magazine named the company one of the &#8220;Business Triumphs of the Seventies.&#8221;</p></blockquote>
<p>Intel also has a nice <a title="Intel 8086/8088 Die" href="http://download.intel.com/museum/exhibits/hist_micro/hof/large_jpegs/8088B1.jpg">image </a>(300K) of the 8086 and 8088 die.</p>
<p>While purists will probably grumble about the horridness of the x86 family instruction set in comparison to some RISC and embedded controller instructions sets, it has proved highly scalable, and extensible over the last 30 years.</p>
]]></content:encoded>
			<wfw:commentRss>http://lair.moria.org/blog/archives/48/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
