<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule">
<channel>
    <title>The Quiet Earth - General</title>
    <link>http://blog.balrog.de/</link>
    <description>rants and musings about information security</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 1.4.1 - http://www.s9y.org/</generator>
    <pubDate>Sat, 01 Nov 2008 23:36:50 GMT</pubDate>

    <image>
        <url>http://blog.balrog.de/templates/default/img/s9y_banner_small.png</url>
        <title>RSS: The Quiet Earth - General - rants and musings about information security</title>
        <link>http://blog.balrog.de/</link>
        <width>100</width>
        <height>21</height>
    </image>

<item>
    <title>Policy-based routing on Linux</title>
    <link>http://blog.balrog.de/archives/488-Policy-based-routing-on-Linux.html</link>
            <category>General</category>
    
    <comments>http://blog.balrog.de/archives/488-Policy-based-routing-on-Linux.html#comments</comments>
    <wfw:comment>http://blog.balrog.de/wfwcomment.php?cid=488</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.balrog.de/rss.php?version=2.0&amp;type=comments&amp;cid=488</wfw:commentRss>
    

    <author>nospam@example.com (Axel Eble)</author>
    <content:encoded>
    A customer system needed to be upgraded and for several reasons it was supposed to be moved from Windows server to Linux (more on that another time). The server was supposed to be moved from one IP range to another as we are moving from our old &lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/en.wikipedia.org/wiki/Provider_Aggregatable_Address_Space&#039;);&quot;  href=&quot;http://en.wikipedia.org/wiki/Provider_Aggregatable_Address_Space&quot; title=&quot;PA Space&quot;&gt;Provider Aggregatable (PA) IP addresses&lt;/a&gt; to our &quot;new&quot; &lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/en.wikipedia.org/wiki/Provider_Independent_Address_Space&#039;);&quot;  href=&quot;http://en.wikipedia.org/wiki/Provider_Independent_Address_Space&quot; title=&quot;PI Address Space&quot;&gt;Provider Indepedent (PI) addresses&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
I set the system up and it was supposed to be a hard cutover on one day. It quickly turned out that this was not feasible (again, for several reasons, e.g. the amount of data to copy over was too big). So, finally, it was decided that the cutover was to be smooth: the majority of data was rsync&#039;ed over from Windows in the days before the cutover date, then the rest on the cutover day. The SSL certificate was to be copied over on day X and the new server running Linux should take over the IP address of the old (Windows) server. As the system was now multihomed we needed to cope with asymmetric routing. First off, we thought it should be possible to hide all incoming traffic to the old IP addresses behind the internal IP address of the firewall - but it turned out our product does not allow for that.&lt;br /&gt;
&lt;a class=&#039;serendipity_image_link&#039; href=&#039;http://blog.balrog.de/uploads/images/Setup_Multihomed.png&#039; onclick=&quot;F1 = window.open(&#039;/uploads/images/Setup_Multihomed.png&#039;,&#039;Zoom&#039;,&#039;height=331,width=396,top=242,left=449.5,toolbar=no,menubar=no,location=no,resize=1,resizable=1,scrollbars=yes&#039;); return false;&quot;&gt;&lt;!-- s9ymdb:3 --&gt;&lt;img width=&quot;110&quot; height=&quot;91&quot; style=&quot;float: left; border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;http://blog.balrog.de/uploads/images/Setup_Multihomed.serendipityThumb.png&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The solution to this is policy-based routing: if the packet goes out on &lt;em&gt;Interface&lt;sub&gt;new&lt;/sub&gt;&lt;/em&gt;, a different routing decision needs to be taken than when it would go out &lt;em&gt;Interface&lt;sub&gt;old&lt;/sub&gt;&lt;/em&gt;. Fortunately, Linux does allow for this with the iproute2 package: you can have several routing tables glued together with a routing policy, i.e. a set of rules that controls the selection of the routing table. If a rule matches and a route is selected from a routing table the packet gets routed according to this route. If there is no matching route the rule traversal continues.&lt;br /&gt;
&lt;br /&gt;
In our setup this means, that all packets from &lt;em&gt;IP&lt;sub&gt;PI-Space&lt;/sub&gt;&lt;/em&gt; should get routed to the PI-Space gateway whereas all packets from &lt;em&gt;IP&lt;sub&gt;PA-Space&lt;/sub&gt;&lt;/em&gt; should get routed to the PA-Space gateway. Currently, the default gateway is the PA-Space one, so we don&#039;t have to do much.&lt;br /&gt;
&lt;br /&gt;
In Debian/Ubuntu syntax, the network is then setup through &lt;code&gt;/etc/network/interfaces&lt;/code&gt; with a stanza like the following:&lt;br /&gt;
&lt;pre style=&quot;lineheight: 100%;&quot;&gt;&lt;br /&gt;
auto eth0&lt;br /&gt;
iface eth0 inet static&lt;br /&gt;
        address   A.B.C.D&lt;br /&gt;
        netmask  255.255.255.240&lt;br /&gt;
        network   A.B.C.128&lt;br /&gt;
        broadcast A.B.C.143&lt;br /&gt;
        dns-nameservers some.dns.serv.er&lt;br /&gt;
        gateway A.B.C.129&lt;br /&gt;
&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
And for the Interface in the PI address space, the stanza looks like this:&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;br /&gt;
auto eth1&lt;br /&gt;
iface eth1 inet static&lt;br /&gt;
        address   V.W.X.Y&lt;br /&gt;
        netmask  255.255.255.240&lt;br /&gt;
        network   V.W.X.128&lt;br /&gt;
        broadcast V.W.X.143&lt;br /&gt;
        dns-nameservers some.dns.serv.er&lt;br /&gt;
        post-up ip rule add from V.W.X.Y table PI-Space&lt;br /&gt;
        post-up ip route add default via V.W.X.129 table PI-Space&lt;br /&gt;
&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
The two &lt;code&gt;post-up&lt;/code&gt; lines are the magick in here: the first adds a rule to the routing policy that, for all traffic originating from the PI space interface, a lookup should be performed in routing table &lt;em&gt;PI-Space&lt;/em&gt;. Then, we add a &lt;em&gt;second default route&lt;/em&gt; to that very same routing table. Now, whenever a packet goes out Interface &lt;code&gt;eth1&lt;/code&gt;, the kernel checks if there is a matching route in routing table PI-Space. As we have a default route, this will always match and the packet gets routed to the gateway in our PI space.&lt;br /&gt;
Obviously, all other traffic originates on &lt;code&gt;eth0&lt;/code&gt; so the &quot;normal&quot; routing table will be used, thus this traffic will go out via the gateway residing in the PA address space.&lt;br /&gt;
&lt;br /&gt;
&lt;h4&gt;loose ends&lt;/h4&gt;&lt;br /&gt;
Actually, the kernel does not check a routing table named &quot;PI-Space&quot;. It will use a numerical identifier that is mapped in &lt;code&gt;/etc/iproute2/rt_tables&lt;/code&gt; like this:&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;br /&gt;
#&lt;br /&gt;
# reserved values&lt;br /&gt;
#&lt;br /&gt;
255     local&lt;br /&gt;
254     main&lt;br /&gt;
253     default&lt;br /&gt;
0       unspec&lt;br /&gt;
#&lt;br /&gt;
# local&lt;br /&gt;
#&lt;br /&gt;
#1      inr.ruhep&lt;br /&gt;
100     PI-Space&lt;br /&gt;
&lt;/pre&gt; 
    </content:encoded>

    <pubDate>Fri, 17 Oct 2008 23:18:19 +0200</pubDate>
    <guid isPermaLink="false">http://blog.balrog.de/archives/488-guid.html</guid>
    <geo:long>7.85949</geo:long><geo:lat>48.02551</geo:lat><creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>The European Blackout on November 5, 2006</title>
    <link>http://blog.balrog.de/archives/476-The-European-Blackout-on-November-5,-2006.html</link>
            <category>General</category>
    
    <comments>http://blog.balrog.de/archives/476-The-European-Blackout-on-November-5,-2006.html#comments</comments>
    <wfw:comment>http://blog.balrog.de/wfwcomment.php?cid=476</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.balrog.de/rss.php?version=2.0&amp;type=comments&amp;cid=476</wfw:commentRss>
    

    <author>nospam@example.com (Axel Eble)</author>
    <content:encoded>
    On November 5th, 2006, a power outage caught about 10 million people all over Southern and Western Europe unawares, half of them in France alone. The cause of the problem? Human error - and a cruise ship leaving its dockyard for the North Sea. From around 10pm CET to around 11pm Western Europe was black.&lt;br /&gt;
&lt;br /&gt;
The following is a summary of the official &lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.eon-energie.com/php/pressemitteilungen/download.php?id=49602&#039;);&quot;  href=&quot;http://www.eon-energie.com/php/pressemitteilungen/download.php?id=49602&quot;  title=&quot;PDF, German only, 5 MB&quot;&gt;report by e.on&lt;/a&gt; to the &lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.bundesnetzagentur.de/&#039;);&quot;  href=&quot;http://www.bundesnetzagentur.de/&quot;  title=&quot;Homepage der Bundesnetzagentur&quot;&gt;Bundesnetzagentur&lt;/a&gt;. &lt;br /&gt;&lt;a href=&quot;http://blog.balrog.de/archives/476-The-European-Blackout-on-November-5,-2006.html#extended&quot;&gt;Continue reading &quot;The European Blackout on November 5, 2006&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Thu, 23 Nov 2006 22:55:00 +0100</pubDate>
    <guid isPermaLink="false">http://blog.balrog.de/archives/476-guid.html</guid>
    <category>blackout</category>
<category>power supply</category>
<category>security</category>
<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>Requiescat  In Pacem, WinFS</title>
    <link>http://blog.balrog.de/archives/472-Requiescat-In-Pacem,-WinFS.html</link>
            <category>General</category>
    
    <comments>http://blog.balrog.de/archives/472-Requiescat-In-Pacem,-WinFS.html#comments</comments>
    <wfw:comment>http://blog.balrog.de/wfwcomment.php?cid=472</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.balrog.de/rss.php?version=2.0&amp;type=comments&amp;cid=472</wfw:commentRss>
    

    <author>nospam@example.com (Axel Eble)</author>
    <content:encoded>
    Today, &lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.heise.de/newsticker/&#039;);&quot;  href=&quot;http://www.heise.de/newsticker/&quot;&gt;Heise Newsticker&lt;/a&gt; (German only) mentioned that Microsoft finally killed WinFS for good. Of course, they are going to call it differently (like: &quot;&lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/blogs.msdn.com/winfs/archive/2006/06/23/644706.aspx&#039;);&quot;  href=&quot;http://blogs.msdn.com/winfs/archive/2006/06/23/644706.aspx&quot;&gt;[...] WinFS has always been about many things – a new model to enrich how users manage information, rich storage technology, and sometimes also a packaging of technology.[...]&lt;/a&gt;&quot; according to Quentin Clark from the WinFS team). But, let&#039;s face it: there won&#039;t ever be a separate piece of software to install that will enable us to use advanced features and fast search procedures.&lt;br /&gt;
&lt;br /&gt;
Why? Difficult question. Personally, I guess that they got overwhelmed by the complexity and the tight integration philosophy that is so deeply ingrained into Microsoft products. Trying to fit too much into it until they realized that pulling the plug is the only valid solution.&lt;br /&gt;
&lt;br /&gt;
What does it mean? Well, it&#039;s a big deal for Vista (or, rather, a huge blow &lt;em&gt;to&lt;/em&gt; Vista) as the only really useful advanced feature for Vista won&#039;t ever be available. Obviously, Microsoft miscalculated something quite important. While I won&#039;t go so far as calling it a Doomsday scenario for Microsoft, as an analyst I would be wary and start investing in other companies.&lt;br /&gt;
&lt;br /&gt;
And the security linkage? Well, if you really want to have one - think for a bit about what something like this could mean to the security initiative and the overall state of Microsoft software. Will they ever be able to handle their boatloads of highly complex software? I doubt it, but then, I&#039;m a heretic and a sceptic anyway. 
    </content:encoded>

    <pubDate>Mon, 26 Jun 2006 15:13:38 +0200</pubDate>
    <guid isPermaLink="false">http://blog.balrog.de/archives/472-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>Identity: Information, Theft, Cards - Culture!</title>
    <link>http://blog.balrog.de/archives/471-Identity-Information,-Theft,-Cards-Culture!.html</link>
            <category>General</category>
    
    <comments>http://blog.balrog.de/archives/471-Identity-Information,-Theft,-Cards-Culture!.html#comments</comments>
    <wfw:comment>http://blog.balrog.de/wfwcomment.php?cid=471</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.balrog.de/rss.php?version=2.0&amp;type=comments&amp;cid=471</wfw:commentRss>
    

    <author>nospam@example.com (Axel Eble)</author>
    <content:encoded>
    With the &lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.darkreading.com/document.asp?doc_id=96205&#039;);&quot;  href=&quot;http://www.darkreading.com/document.asp?doc_id=96205&quot;&gt;continuing theft of personal identifying information (PII)&lt;/a&gt; in the US the old question pops up all over: why is what Americans understand as &quot;identity theft&quot; not a problem in Europe? I think three main factors need to be taken into account here:&lt;br /&gt;
&lt;br /&gt;
&lt;ol&gt;&lt;br /&gt;
&lt;li&gt;European data privacy and data protection legislation forces companies to only collect as much data as they really need to process. That limits the amount of data that can be stolen (or, rather, illegally disclosed) in the first place. Besides, it is highly unusual for contractors to have private, production data on their personal systems.&lt;/li&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;li&gt;No &quot;Easy Credit&quot; culture like in the US. From what I&#039;ve been told by quite a few US citizens by now, the US have a culture of buying things on credit - and thus rely on receiving credit fast and without hassle. In Europe, people tend to inquire for credit only for large sums and usually only for buying a car, a house, an apartment - or other larger investments.&lt;br /&gt;
&lt;/li&gt;&lt;br /&gt;
	&lt;li&gt;Europe (with the exception of the UK) has government-issued identity cards that uniquely identify the persion. There simply is no need for a social security number that can be shared easily without accompanying documents (and pictures. And whatnot).&lt;br /&gt;
&lt;/li&gt;&lt;br /&gt;
&lt;/ol&gt;&lt;br /&gt;
&lt;br /&gt;
These issues in combination make illicit information access much riskier in Europe than it is in the US. Oh, and it shows that identity documents don&#039;t have to be such a bad concept as many US and UK citizens make them out to be.&lt;br /&gt;
&lt;br /&gt;
Over at &lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.idcorner.org/i&#039;);&quot;  href=&quot;http://www.idcorner.org/i&quot;&gt;the Identity Corner&lt;/a&gt;, Stefan Brands has an interesting series of articles about the UK identity cards:&lt;br /&gt;
&lt;ol&gt;&lt;br /&gt;
	&lt;li&gt;&lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.idcorner.org/index.php?p=112&#039;);&quot;  href=&quot;http://www.idcorner.org/index.php?p=112&quot;&gt;Final UK study on digital identity (Part I)&lt;/a&gt;&lt;/li&gt;&lt;br /&gt;
	&lt;li&gt;&lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.idcorner.org/index.php?p=113&#039;);&quot;  href=&quot;http://www.idcorner.org/index.php?p=113&quot;&gt;Final UK study on digital identity (Part II)&lt;/a&gt;&lt;/li&gt;&lt;br /&gt;
	&lt;li&gt;&lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.idcorner.org/index.php?p=114%22&#039;);&quot;  href=&quot;http://www.idcorner.org/index.php?p=114%22&quot;&gt;Final UK study on digital identity (Part III)&lt;/a&gt;&lt;/li&gt;&lt;br /&gt;
	&lt;li&gt;&lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.idcorner.org/index.php?p=115%22&#039;);&quot;  href=&quot;http://www.idcorner.org/index.php?p=115%22&quot;&gt;Final UK study on digital identity (Part IV)&lt;/a&gt;&lt;/li&gt;&lt;br /&gt;
&lt;/ol&gt;&lt;br /&gt;
&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Mon, 26 Jun 2006 13:12:31 +0200</pubDate>
    <guid isPermaLink="false">http://blog.balrog.de/archives/471-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>WTF - Apple's OS X is NOT As Secure As a Fortress?!</title>
    <link>http://blog.balrog.de/archives/469-WTF-Apples-OS-X-is-NOT-As-Secure-As-a-Fortress!.html</link>
            <category>General</category>
            <category>Meta</category>
    
    <comments>http://blog.balrog.de/archives/469-WTF-Apples-OS-X-is-NOT-As-Secure-As-a-Fortress!.html#comments</comments>
    <wfw:comment>http://blog.balrog.de/wfwcomment.php?cid=469</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.balrog.de/rss.php?version=2.0&amp;type=comments&amp;cid=469</wfw:commentRss>
    

    <author>nospam@example.com (Axel Eble)</author>
    <content:encoded>
    Oh holy Guacamole! OS X has lots of heap and buffer overflows! Quick, buy Vista and all will be well again! Oh, right. Vista isn&#039;t out yet. You&#039;ve just switched to Apple because of all the exploits and dangers of running XP or some &lt;strong&gt;*gasp*&lt;/strong&gt; older version of Windows. And now you&#039;re &lt;em&gt;still&lt;/em&gt; insecure?!&lt;br /&gt;
&lt;br /&gt;
Why, yes, of course. There is no such thing as &lt;strike&gt;a free lunch&lt;/strike&gt; 100% security. Every reasonably complex piece or suite of software will. be. buggy - to some extent at least. Granted, there&#039;s lots of talk out there about how secure OS X is - and, actually, it still is. It&#039;s just not invincible, as it&#039;s cracked up to be. But, when Apple says it&#039;s products are the best, why would you believe &lt;em&gt;them&lt;/em&gt; when you don&#039;t believe Microsoft? All vendors are alike in that regard.&lt;br /&gt;
&lt;br /&gt;
And let&#039;s not forget that OS X is a revamped version of NeXTSTEP, the OS of the famous NeXT computer. &lt;em&gt;That&lt;/em&gt; one was said to be riddled with local exploits, so don&#039;t expect OS X to be much better. As OS X is gaining market share, it will become more and more the target of choice for malware programmers. &lt;br /&gt;
&lt;br /&gt;
What &lt;em&gt;is&lt;/em&gt; different, though, is the use of administrative accounts (like on Windows where accounts by default are administrator accounts). On OS X, the only administrator account, &lt;code&gt;root&lt;/code&gt;, is disabled, and to run administrative tasks one has to enter the password (this is a better-working equivalent to the &lt;code&gt;runas&lt;/code&gt; command in Windows).&lt;br /&gt;
&lt;br /&gt;
Moral of this? If someone tells you they are offering perfect security, chances are they are lying and only want your money. Be careful, always - it&#039;s a dangerous world out there. 
    </content:encoded>

    <pubDate>Mon, 12 Jun 2006 14:18:51 +0200</pubDate>
    <guid isPermaLink="false">http://blog.balrog.de/archives/469-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>ESAG vanished</title>
    <link>http://blog.balrog.de/archives/468-ESAG-vanished.html</link>
            <category>General</category>
    
    <comments>http://blog.balrog.de/archives/468-ESAG-vanished.html#comments</comments>
    <wfw:comment>http://blog.balrog.de/wfwcomment.php?cid=468</wfw:comment>

    <slash:comments>2</slash:comments>
    <wfw:commentRss>http://blog.balrog.de/rss.php?version=2.0&amp;type=comments&amp;cid=468</wfw:commentRss>
    

    <author>nospam@example.com (Axel Eble)</author>
    <content:encoded>
    I&#039;ve &lt;a href=&quot;http://blog.balrog.de/archives/364-ESAG-revisited.html&quot;&gt;written&lt;/a&gt; &lt;a href=&quot;http://blog.balrog.de/archives/358-Fear-Mongers-Unite.html&quot;&gt;twice&lt;/a&gt; before about the European Security Advisory Group. I thought I&#039;d check up on them again - only to find they have gone as quietly as they appeared. &lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.heise.de/tp/&#039;);&quot;  href=&quot;http://www.heise.de/tp/&quot;&gt;telepolis&lt;/a&gt; guesses (I believe correctly) that it was just a smokescreen for the US DoD propaganda group called &lt;em&gt;Office of Strategic Influence&lt;/em&gt;.&lt;br /&gt;
&lt;br /&gt;
Good riddance - another open book closed. 
    </content:encoded>

    <pubDate>Mon, 12 Jun 2006 13:36:58 +0200</pubDate>
    <guid isPermaLink="false">http://blog.balrog.de/archives/468-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>&quot;Nah, we don't need no steenkin' study!&quot;</title>
    <link>http://blog.balrog.de/archives/464-Nah,-we-dont-need-no-steenkin-study!.html</link>
            <category>General</category>
    
    <comments>http://blog.balrog.de/archives/464-Nah,-we-dont-need-no-steenkin-study!.html#comments</comments>
    <wfw:comment>http://blog.balrog.de/wfwcomment.php?cid=464</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.balrog.de/rss.php?version=2.0&amp;type=comments&amp;cid=464</wfw:commentRss>
    

    <author>nospam@example.com (Axel Eble)</author>
    <content:encoded>
    As could be expected the European Commission &quot;sees no need&quot; for a study about the effects of the advance collection of data they have decided to enforce. Heise &lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.heise.de/newsticker/meldung/69165&#039;);&quot;  href=&quot;http://www.heise.de/newsticker/meldung/69165&quot;&gt;covers&lt;/a&gt; this yesterday (German only). 
    </content:encoded>

    <pubDate>Fri, 03 Feb 2006 09:47:30 +0100</pubDate>
    <guid isPermaLink="false">http://blog.balrog.de/archives/464-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>RFID Based Passports With BAC Vulnerable</title>
    <link>http://blog.balrog.de/archives/463-RFID-Based-Passports-With-BAC-Vulnerable.html</link>
            <category>General</category>
            <category>Technology</category>
    
    <comments>http://blog.balrog.de/archives/463-RFID-Based-Passports-With-BAC-Vulnerable.html#comments</comments>
    <wfw:comment>http://blog.balrog.de/wfwcomment.php?cid=463</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.balrog.de/rss.php?version=2.0&amp;type=comments&amp;cid=463</wfw:commentRss>
    

    <author>nospam@example.com (Axel Eble)</author>
    <content:encoded>
    In &lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.heise.de/newsticker/meldung/69127&#039;);&quot;  href=&quot;http://www.heise.de/newsticker/meldung/69127&quot;&gt;a current news item&lt;/a&gt; Heise reports that the Dutch security company &lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.riscure.com/&#039;);&quot;  href=&quot;http://www.riscure.com/&quot;&gt;Riscure&lt;/a&gt; found a way to brute-force attack the encryption of the Dutch ePassports. Let&#039;s recap: the &lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.icao.org/&#039;);&quot;  href=&quot;http://www.icao.org/&quot;&gt;ICAO&lt;/a&gt; has issued a set of &lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/icao.int/mrtd/&#039;);&quot;  href=&quot;http://icao.int/mrtd/&quot;&gt;guidelines on &quot;Machine Readable Travel Documents&quot;&lt;/a&gt; that basically states that passports and other travel documents should use an RFID chip that can be used to read the individual&#039;s data contactless. Apparently the field strength is strong enough to be read from several meters distance. However, the transmission is encrypted by &quot;Basic Access Control&quot; (BAC) where the key is comprised of the serial number of the document itself, it&#039;s issue date and it&#039;s invalidation date. This gives about 56 bit of key length (which is not really that much and it&#039;s questionable if it will be safe to use on a mid-term timeframe. Now, the issuer of the Dutch ePassports uses sequential serial numbers &lt;em&gt;and&lt;/em&gt; the number of documents issued is basically constant per time unit. This gives a linear connection between the issue date and the passport serial number, thus effectively reducing key length to about 35 bit - which is easily breakable in a few hours without special hardware equipment.&lt;br /&gt;
This attack vector is valid for every document that uses BAC and uses predictable serial numbers for the documents!&lt;br /&gt;
What hasn&#039;t been stated so far is the fact that once the key is known the RFID chip could theoretically be read everywhere. Consider a country that&#039;s gone off the deep end with hysterics about terrrorism and thus has installed RFID scanners throughout what they consider critical points. Now they only need those scanners hooked up to a central database where all keys to all passports ever seen entering has been stored and they can easily find out where a person goes (given they take their passport with them). 
    </content:encoded>

    <pubDate>Fri, 03 Feb 2006 09:41:57 +0100</pubDate>
    <guid isPermaLink="false">http://blog.balrog.de/archives/463-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>What type of RPG player are you?</title>
    <link>http://blog.balrog.de/archives/460-What-type-of-RPG-player-are-you.html</link>
            <category>General</category>
    
    <comments>http://blog.balrog.de/archives/460-What-type-of-RPG-player-are-you.html#comments</comments>
    <wfw:comment>http://blog.balrog.de/wfwcomment.php?cid=460</wfw:comment>

    <slash:comments>2</slash:comments>
    <wfw:commentRss>http://blog.balrog.de/rss.php?version=2.0&amp;type=comments&amp;cid=460</wfw:commentRss>
    

    <author>nospam@example.com (Axel Eble)</author>
    <content:encoded>
    &lt;table border=&#039;0&#039; cellpadding=&#039;5&#039; cellspacing=&#039;0&#039; width=&#039;600&#039;&gt;&lt;tr&gt;&lt;td&gt;&lt;/td&gt;&lt;td&gt; You scored as &lt;b&gt;Method Actor&lt;/b&gt;. You think that gaming is a form of creative expression.  You may view rules as, at best, a necessary evil, preferring sessions where the dice never come out of the bag.  You enjoy situations that test or deepen your character&#039;s personality traits.&lt;br /&gt;&lt;br /&gt;&lt;table border=&#039;0&#039; width=&#039;300&#039; cellspacing=&#039;0&#039; cellpadding=&#039;0&#039;&gt;&lt;tr&gt;&lt;td&gt;&lt;p&gt;&lt;font face=&#039;Arial&#039; size=&#039;1&#039;&gt;Method Actor&lt;/font&gt;&lt;/p&gt;&lt;/td&gt;&lt;td&gt;&lt;table border=&#039;1&#039; cellpadding=&#039;0&#039; cellspacing=&#039;0&#039; width=&#039;92&#039; bgcolor=&#039;#dddddd&#039;&gt;&lt;tr&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/td&gt;&lt;td&gt;&lt;font face=&#039;Arial&#039; size=&#039;1&#039;&gt;92%&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;p&gt;&lt;font face=&#039;Arial&#039; size=&#039;1&#039;&gt;Storyteller&lt;/font&gt;&lt;/p&gt;&lt;/td&gt;&lt;td&gt;&lt;table border=&#039;1&#039; cellpadding=&#039;0&#039; cellspacing=&#039;0&#039; width=&#039;83&#039; bgcolor=&#039;#dddddd&#039;&gt;&lt;tr&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/td&gt;&lt;td&gt;&lt;font face=&#039;Arial&#039; size=&#039;1&#039;&gt;83%&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;p&gt;&lt;font face=&#039;Arial&#039; size=&#039;1&#039;&gt;Tactician&lt;/font&gt;&lt;/p&gt;&lt;/td&gt;&lt;td&gt;&lt;table border=&#039;1&#039; cellpadding=&#039;0&#039; cellspacing=&#039;0&#039; width=&#039;67&#039; bgcolor=&#039;#dddddd&#039;&gt;&lt;tr&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/td&gt;&lt;td&gt;&lt;font face=&#039;Arial&#039; size=&#039;1&#039;&gt;67%&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;p&gt;&lt;font face=&#039;Arial&#039; size=&#039;1&#039;&gt;Power Gamer&lt;/font&gt;&lt;/p&gt;&lt;/td&gt;&lt;td&gt;&lt;table border=&#039;1&#039; cellpadding=&#039;0&#039; cellspacing=&#039;0&#039; width=&#039;50&#039; bgcolor=&#039;#dddddd&#039;&gt;&lt;tr&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/td&gt;&lt;td&gt;&lt;font face=&#039;Arial&#039; size=&#039;1&#039;&gt;50%&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;p&gt;&lt;font face=&#039;Arial&#039; size=&#039;1&#039;&gt;Specialist&lt;/font&gt;&lt;/p&gt;&lt;/td&gt;&lt;td&gt;&lt;table border=&#039;1&#039; cellpadding=&#039;0&#039; cellspacing=&#039;0&#039; width=&#039;42&#039; bgcolor=&#039;#dddddd&#039;&gt;&lt;tr&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/td&gt;&lt;td&gt;&lt;font face=&#039;Arial&#039; size=&#039;1&#039;&gt;42%&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;p&gt;&lt;font face=&#039;Arial&#039; size=&#039;1&#039;&gt;Casual Gamer&lt;/font&gt;&lt;/p&gt;&lt;/td&gt;&lt;td&gt;&lt;table border=&#039;1&#039; cellpadding=&#039;0&#039; cellspacing=&#039;0&#039; width=&#039;17&#039; bgcolor=&#039;#dddddd&#039;&gt;&lt;tr&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/td&gt;&lt;td&gt;&lt;font face=&#039;Arial&#039; size=&#039;1&#039;&gt;17%&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;p&gt;&lt;font face=&#039;Arial&#039; size=&#039;1&#039;&gt;Butt-Kicker&lt;/font&gt;&lt;/p&gt;&lt;/td&gt;&lt;td&gt;&lt;table border=&#039;1&#039; cellpadding=&#039;0&#039; cellspacing=&#039;0&#039; width=&#039;8&#039; bgcolor=&#039;#dddddd&#039;&gt;&lt;tr&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/td&gt;&lt;td&gt;&lt;font face=&#039;Arial&#039; size=&#039;1&#039;&gt;8%&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;&lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/quizfarm.com/test.php?q_id=62192&#039;);&quot;  href=&#039;http://quizfarm.com/test.php?q_id=62192&#039;&gt;Law&amp;#039;s Game Style&lt;/a&gt;&lt;br /&gt;&lt;font face=&#039;Arial&#039; size=&#039;1&#039;&gt;created with &lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/quizfarm.com&#039;);&quot;  href=&#039;http://quizfarm.com&#039;&gt;QuizFarm.com&lt;/a&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
via &lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/blog.koehntopp.de/index.php?url=archives/1087-What-type-of-roleplayer-are-you.html&#039;);&quot;  href=&quot;http://blog.koehntopp.de/index.php?url=archives/1087-What-type-of-roleplayer-are-you.html&quot;&gt;kris&lt;/a&gt; 
    </content:encoded>

    <pubDate>Mon, 28 Nov 2005 21:53:05 +0100</pubDate>
    <guid isPermaLink="false">http://blog.balrog.de/archives/460-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>Airline Passenger Data Transmission To US May End</title>
    <link>http://blog.balrog.de/archives/455-Airline-Passenger-Data-Transmission-To-US-May-End.html</link>
            <category>General</category>
            <category>Meta</category>
    
    <comments>http://blog.balrog.de/archives/455-Airline-Passenger-Data-Transmission-To-US-May-End.html#comments</comments>
    <wfw:comment>http://blog.balrog.de/wfwcomment.php?cid=455</wfw:comment>

    <slash:comments>1</slash:comments>
    <wfw:commentRss>http://blog.balrog.de/rss.php?version=2.0&amp;type=comments&amp;cid=455</wfw:commentRss>
    

    <author>nospam@example.com (Axel Eble)</author>
    <content:encoded>
    In 2003 the US ordered airlines to transmit flight passenger data for all flights ending in, stopping over in or just crossing US American territory. It was made clear that all data was to be stored in raw form and would be subject to further analysis, leading to profiling of passengers, all, of course, in the name of fighting terrorism. It is completely unclear what sort of profiling will be done and what else the US government will be doing with the data (e. g. handing it over to some commercial data brokers like &lt;strong&gt;gasp&lt;/strong&gt; ChoicePoint for analysis). The &lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.washingtonpost.com/wp-dyn/content/article/2005/11/22/AR2005112200539.html&#039;);&quot;  href=&quot;http://www.washingtonpost.com/wp-dyn/content/article/2005/11/22/AR2005112200539.html&quot;&gt;Washington Post&lt;/a&gt; has a good summary as well.&lt;br /&gt;
&lt;br /&gt;
The EU Commission and the EU Council caved in instead of taking a strong position against this practice and declared the US data handling processes as equivalent to European processes and, in general, good enough. This led to a huge outcry from the EU Parliament and several Civil Rights organizations (like the &lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.edri.org/&#039;);&quot;  href=&quot;http://www.edri.org/&quot;&gt;European Digital Rights Initiative&lt;/a&gt;) but both the Commission and the Council wouldn&#039;t budge.&lt;br /&gt;
&lt;br /&gt;
Now, however, things start to look a bit brighter: the Advocate General at the &lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.curia.eu.int/en/transitpage.htm&#039;);&quot;  href=&quot;http://www.curia.eu.int/en/transitpage.htm&quot;&gt;Court of Justice at the European Communities&lt;/a&gt; recommends to &lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.curia.eu.int/de/actu/communiques/cp05/aff/cp050098de.pdf&#039;);&quot;  href=&quot;http://www.curia.eu.int/de/actu/communiques/cp05/aff/cp050098de.pdf&quot;&gt;annul the Council decision&lt;/a&gt; about the agreement. The Court will have to rule about a law suit by the Parliament against the Commission and the Council decisions. The recommendation of the General Attorney are not binding but in most cases the Court will follow advisory opinions.&lt;br /&gt;
&lt;br /&gt;
References:&lt;br /&gt;
&lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.heise.de/newsticker/meldung/66517&#039;);&quot;  href=&quot;http://www.heise.de/newsticker/meldung/66517&quot;&gt;Heise Newsticker&lt;/a&gt; (German)&lt;br /&gt;
&lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.washingtonpost.com/wp-dyn/content/article/2005/11/22/AR2005112200539.html&#039;);&quot;  href=&quot;http://www.washingtonpost.com/wp-dyn/content/article/2005/11/22/AR2005112200539.html&quot;&gt;Washington Post&lt;/a&gt; 
    </content:encoded>

    <pubDate>Wed, 23 Nov 2005 10:28:34 +0100</pubDate>
    <guid isPermaLink="false">http://blog.balrog.de/archives/455-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>The City of Dis</title>
    <link>http://blog.balrog.de/archives/454-The-City-of-Dis.html</link>
            <category>General</category>
    
    <comments>http://blog.balrog.de/archives/454-The-City-of-Dis.html#comments</comments>
    <wfw:comment>http://blog.balrog.de/wfwcomment.php?cid=454</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.balrog.de/rss.php?version=2.0&amp;type=comments&amp;cid=454</wfw:commentRss>
    

    <author>nospam@example.com (Axel Eble)</author>
    <content:encoded>
    Well, what do you know? I&#039;ve landed in Dis after taking the Dante&#039;s Inferno test:&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;The Dante&#039;s Inferno Test has banished you to &lt;i&gt;the Sixth Level of Hell - The City of Dis!&lt;/i&gt;&lt;/b&gt;&lt;br /&gt;Here is how you matched up against all the levels:&lt;br /&gt;&lt;table cellspacing=&quot;1&quot; style=&quot;margin: 5px; background-color: #000000; border: none; font: 10pt arial, verdana, &#039;sans serif&#039;;&quot;&gt;&lt;tr style=&quot;font: bold 12pt arial, verdana, &#039;sans serif&#039;; text-align: center; color: #ffffff; background-color: #333333;&quot;&gt;&lt;th&gt;&lt;b&gt;Level&lt;/b&gt;&lt;/th&gt;&lt;th&gt;&lt;b&gt;Score&lt;/b&gt;&lt;/th&gt;&lt;/tr&gt;&lt;tr style=&quot;background-color: #220033; color: #eeeeee;&quot;&gt;&lt;td style=&quot;padding: 4px;&quot;&gt;&lt;b&gt;&lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.4degreez.com/misc/dante-inferno-information.html#0&#039;);&quot;  href=&quot;http://www.4degreez.com/misc/dante-inferno-information.html#0&quot; style=&quot;color: #ff3344; text-decoration: underline;&quot;&gt;Purgatory&lt;/a&gt;&lt;/b&gt; (Repenting Believers)&lt;/td&gt;&lt;td style=&quot;color: #3344bb; background-color: #333333; padding: 4px;&quot;&gt;&lt;b&gt;Very Low&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;background-color: #110022; color: #eeeeee;&quot;&gt;&lt;td style=&quot;padding: 4px;&quot;&gt;&lt;b&gt;&lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.4degreez.com/misc/dante-inferno-information.html#1&#039;);&quot;  href=&quot;http://www.4degreez.com/misc/dante-inferno-information.html#1&quot; style=&quot;color: #ff3344; text-decoration: underline;&quot;&gt;Level 1 - Limbo&lt;/a&gt;&lt;/b&gt; (Virtuous Non-Believers)&lt;/td&gt;&lt;td style=&quot;color: #3344bb; background-color: #333333; padding: 4px;&quot;&gt;&lt;b&gt;Very Low&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;background-color: #220011; color: #eeeeee;&quot;&gt;&lt;td style=&quot;padding: 4px;&quot;&gt;&lt;b&gt;&lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.4degreez.com/misc/dante-inferno-information.html#2&#039;);&quot;  href=&quot;http://www.4degreez.com/misc/dante-inferno-information.html#2&quot; style=&quot;color: #ff3344; text-decoration: underline;&quot;&gt;Level 2&lt;/a&gt;&lt;/b&gt; (Lustful)&lt;/td&gt;&lt;td style=&quot;color: #c40033; background-color: #333333; padding: 4px;&quot;&gt;&lt;b&gt;Very High&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;background-color: #330011; color: #eeeeee;&quot;&gt;&lt;td style=&quot;padding: 4px;&quot;&gt;&lt;b&gt;&lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.4degreez.com/misc/dante-inferno-information.html#3&#039;);&quot;  href=&quot;http://www.4degreez.com/misc/dante-inferno-information.html#3&quot; style=&quot;color: #ff3344; text-decoration: underline;&quot;&gt;Level 3&lt;/a&gt;&lt;/b&gt; (Gluttonous)&lt;/td&gt;&lt;td style=&quot;color: #ff1133; background-color: #333333; padding: 4px;&quot;&gt;&lt;b&gt;High&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;background-color: #440011; color: #eeeeee;&quot;&gt;&lt;td style=&quot;padding: 4px;&quot;&gt;&lt;b&gt;&lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.4degreez.com/misc/dante-inferno-information.html#4&#039;);&quot;  href=&quot;http://www.4degreez.com/misc/dante-inferno-information.html#4&quot; style=&quot;color: #ff3344; text-decoration: underline;&quot;&gt;Level 4&lt;/a&gt;&lt;/b&gt; (Prodigal and Avaricious)&lt;/td&gt;&lt;td style=&quot;color: #ff1133; background-color: #333333; padding: 4px;&quot;&gt;&lt;b&gt;High&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;background-color: #550011; color: #eeeeee;&quot;&gt;&lt;td style=&quot;padding: 4px;&quot;&gt;&lt;b&gt;&lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.4degreez.com/misc/dante-inferno-information.html#5&#039;);&quot;  href=&quot;http://www.4degreez.com/misc/dante-inferno-information.html#5&quot; style=&quot;color: #ff3344; text-decoration: underline;&quot;&gt;Level 5&lt;/a&gt;&lt;/b&gt; (Wrathful and Gloomy)&lt;/td&gt;&lt;td style=&quot;color: #ff1133; background-color: #333333; padding: 4px;&quot;&gt;&lt;b&gt;High&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;background-color: #660011; color: #eeeeee;&quot;&gt;&lt;td style=&quot;padding: 4px;&quot;&gt;&lt;b&gt;&lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.4degreez.com/misc/dante-inferno-information.html#6&#039;);&quot;  href=&quot;http://www.4degreez.com/misc/dante-inferno-information.html#6&quot; style=&quot;color: #ff3344; text-decoration: underline;&quot;&gt;Level 6 - The City of Dis&lt;/a&gt;&lt;/b&gt; (Heretics)&lt;/td&gt;&lt;td style=&quot;color: #ee2244; background-color: #333333; padding: 4px;&quot;&gt;&lt;b&gt;Extreme&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;background-color: #770011; color: #eeeeee;&quot;&gt;&lt;td style=&quot;padding: 4px;&quot;&gt;&lt;b&gt;&lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.4degreez.com/misc/dante-inferno-information.html#7&#039;);&quot;  href=&quot;http://www.4degreez.com/misc/dante-inferno-information.html#7&quot; style=&quot;color: #ff3344; text-decoration: underline;&quot;&gt;Level 7&lt;/a&gt;&lt;/b&gt; (Violent)&lt;/td&gt;&lt;td style=&quot;color: #aa33aa; background-color: #333333; padding: 4px;&quot;&gt;&lt;b&gt;Moderate&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;background-color: #880011; color: #eeeeee;&quot;&gt;&lt;td style=&quot;padding: 4px;&quot;&gt;&lt;b&gt;&lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.4degreez.com/misc/dante-inferno-information.html#8&#039;);&quot;  href=&quot;http://www.4degreez.com/misc/dante-inferno-information.html#8&quot; style=&quot;color: #ff3344; text-decoration: underline;&quot;&gt;Level 8- the Malebolge&lt;/a&gt;&lt;/b&gt; (Fraudulent, Malicious, Panderers)&lt;/td&gt;&lt;td style=&quot;color: #c40033; background-color: #333333; padding: 4px;&quot;&gt;&lt;b&gt;Very High&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;background-color: #990011; color: #eeeeee;&quot;&gt;&lt;td style=&quot;padding: 4px;&quot;&gt;&lt;b&gt;&lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.4degreez.com/misc/dante-inferno-information.html#9&#039;);&quot;  href=&quot;http://www.4degreez.com/misc/dante-inferno-information.html#9&quot; style=&quot;color: #ff3344; text-decoration: underline;&quot;&gt;Level 9 - Cocytus&lt;/a&gt;&lt;/b&gt; (Treacherous)&lt;/td&gt;&lt;td style=&quot;color: #ff1133; background-color: #333333; padding: 4px;&quot;&gt;&lt;b&gt;High&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;&lt;b&gt;Take the &lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.4degreez.com/misc/dante-inferno-test.mv&#039;);&quot;  href=&quot;http://www.4degreez.com/misc/dante-inferno-test.mv&quot;&gt;Dante Inferno Hell Test&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
Thanks to &lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/therealadam.com/weblog/&#039;);&quot;  href=&quot;http://therealadam.com/weblog/&quot;&gt;Adam&lt;/a&gt;. 
    </content:encoded>

    <pubDate>Wed, 23 Nov 2005 07:08:23 +0100</pubDate>
    <guid isPermaLink="false">http://blog.balrog.de/archives/454-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>Security Convergence</title>
    <link>http://blog.balrog.de/archives/453-Security-Convergence.html</link>
            <category>General</category>
            <category>ISSA</category>
            <category>Meta</category>
            <category>Organizations</category>
    
    <comments>http://blog.balrog.de/archives/453-Security-Convergence.html#comments</comments>
    <wfw:comment>http://blog.balrog.de/wfwcomment.php?cid=453</wfw:comment>

    <slash:comments>2</slash:comments>
    <wfw:commentRss>http://blog.balrog.de/rss.php?version=2.0&amp;type=comments&amp;cid=453</wfw:commentRss>
    

    <author>nospam@example.com (Axel Eble)</author>
    <content:encoded>
    &quot;Security Convergence&quot; is the subject of &lt;em&gt;The Alliance&lt;/em&gt; between &lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.isaca.org/&#039;);&quot;  href=&quot;http://www.isaca.org/&quot;&gt;ISACA&lt;/a&gt;, &lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.issa.org/&#039;);&quot;  href=&quot;http://www.issa.org/&quot;&gt;ISSA&lt;/a&gt; and &lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.asisonline.org/&#039;);&quot;  href=&quot;http://www.asisonline.org/&quot;&gt;ASIS&lt;/a&gt;. Seeing what the focus of all the three groups is it really does make sense: ISACAs main operational field is Governance, especially IT governance; ISSA is &quot;the global voice of information security&quot; and ASIS is primarily concerned with physical security.&lt;br /&gt;
It&#039;s pretty clear that those three fields do converge more and more, so The Alliance is an important step in the right direction. It will help to open the eyes of security professionals worldwide to the other fields. It will, thus, help to raise a more business oriented security program in enterprises. We shouldn&#039;t expect too much in too little time, however: I don&#039;t believe that many companies understand at the moment that security is something that needs to be considered in a (I hate to use the term, but it does fit so nicely) wholistic way.&lt;br /&gt;
So, at the Network Security Conference/Security Management Conference of ISACA in Amsterdam last Monday the panel discussion was just about this: &quot;Security Convergence&quot;. I was invited to represent ISSA at the panel. It was rather interesting to see the different points of view on the panel - and in the audience. Another member of the panel, Carl Thorp, stayed on for the day (I had to get back unfortunately) and reported that there were quite a few interesting discussions about the convergence thing. However, it seems to be of prime import to &lt;em&gt;define&lt;/em&gt; what &quot;Convergence&quot; really means.&lt;br /&gt;
It will be interesting to see the discussions around the term in the near future. 
    </content:encoded>

    <pubDate>Thu, 17 Nov 2005 20:30:49 +0100</pubDate>
    <guid isPermaLink="false">http://blog.balrog.de/archives/453-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>First time to the Netherlands</title>
    <link>http://blog.balrog.de/archives/452-First-time-to-the-Netherlands.html</link>
            <category>General</category>
            <category>ISSA</category>
            <category>Organizations</category>
    
    <comments>http://blog.balrog.de/archives/452-First-time-to-the-Netherlands.html#comments</comments>
    <wfw:comment>http://blog.balrog.de/wfwcomment.php?cid=452</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.balrog.de/rss.php?version=2.0&amp;type=comments&amp;cid=452</wfw:commentRss>
    

    <author>nospam@example.com (Axel Eble)</author>
    <content:encoded>
    I&#039;ve been invited to represent &lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.issa.org/&#039;);&quot;  href=&quot;http://www.issa.org/&quot;&gt;ISSA&lt;/a&gt; at a panel discussion at the &lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.isaca.org/&#039;);&quot;  href=&quot;http://www.isaca.org/&quot;&gt;ISACA&lt;/a&gt; Network Security/Security Management Conference in Amsterdam. It&#039;s my first time to the Netherlands and, unfortunately, I won&#039;t have any time to do some sightseeing.&lt;br /&gt;
The panel discussion is about The Alliance between ISACA, ISSA and &lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.asisonline.org/&#039;);&quot;  href=&quot;http://www.asisonline.org/&quot;&gt;ASIS&lt;/a&gt; about the convergence of physical security and information security. The folks are great and I wish I had more time to spend here. 
    </content:encoded>

    <pubDate>Mon, 14 Nov 2005 07:44:02 +0100</pubDate>
    <guid isPermaLink="false">http://blog.balrog.de/archives/452-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>The Dangers of Inference</title>
    <link>http://blog.balrog.de/archives/451-The-Dangers-of-Inference.html</link>
            <category>General</category>
            <category>Meta</category>
            <category>Off-Topic</category>
    
    <comments>http://blog.balrog.de/archives/451-The-Dangers-of-Inference.html#comments</comments>
    <wfw:comment>http://blog.balrog.de/wfwcomment.php?cid=451</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.balrog.de/rss.php?version=2.0&amp;type=comments&amp;cid=451</wfw:commentRss>
    

    <author>nospam@example.com (Axel Eble)</author>
    <content:encoded>
    Here I am, taking a strong stance about government agencies that collect data and use inference to think about what it might possibly mean. There&#039;s no lack of wrong inferring to be done that way, starting from false assumptions about coherence of incoherent data or by simply interpreting too much into too little data.&lt;br /&gt;
&lt;br /&gt;
And suddenly I find myself here, doing exactly the same: thinking &lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.f-secure.com/weblog&#039;);&quot;  href=&quot;http://www.f-secure.com/weblog&quot;&gt;F-Secure&lt;/a&gt; jumped on the bandwagon of &lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.sysinternals.com/blog/2005/10/sony-rootkits-and-digital-rights.html&#039;);&quot;  href=&quot;http://www.sysinternals.com/blog/2005/10/sony-rootkits-and-digital-rights.html&quot;&gt;Mark Russinovich&#039;s posting at sysinternals&lt;/a&gt; for their excellent work of analyzing the Sony DRM Rootkit. Independently, I should say, because that is what they did. They did not, however, manage to make it clear how they got wind of the thing (which they did earlier than Russinovich and were in contact with Sony to discuss the issue). After Mark published his findings, F-Secure thought it was now time to publish theirs, too.&lt;br /&gt;
&lt;br /&gt;
Can&#039;t blame them, really. I blame myself, however, for jumping to unjustified conclusions. Ah well, as I said: inference is bad. 
    </content:encoded>

    <pubDate>Thu, 03 Nov 2005 01:47:15 +0100</pubDate>
    <guid isPermaLink="false">http://blog.balrog.de/archives/451-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>Ch-ch-ch-changes</title>
    <link>http://blog.balrog.de/archives/450-Ch-ch-ch-changes.html</link>
            <category>General</category>
            <category>Meta</category>
            <category>Technology</category>
    
    <comments>http://blog.balrog.de/archives/450-Ch-ch-ch-changes.html#comments</comments>
    <wfw:comment>http://blog.balrog.de/wfwcomment.php?cid=450</wfw:comment>

    <slash:comments>5</slash:comments>
    <wfw:commentRss>http://blog.balrog.de/rss.php?version=2.0&amp;type=comments&amp;cid=450</wfw:commentRss>
    

    <author>nospam@example.com (Axel Eble)</author>
    <content:encoded>
    &lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.drunkendata.com/&#039;);&quot;  href=&quot;http://www.drunkendata.com/&quot;&gt;Jon Toigo&lt;/a&gt; &lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/balrog.de/security/archives/2005/09/14/132_silliness-thy-name-is-infosec-companies&#039;);&quot;  href=&quot;http://balrog.de/security/archives/2005/09/14/132_silliness-thy-name-is-infosec-companies&quot;&gt;is annoyed&lt;/a&gt; at the lack of progress the information security field has made since the Medieval. I feel his pain, too. But what are the alternatives? Or rather, why are we still using the same concepts? Are we just too stupid to come up with something new or are the concepts just so basic and so sound that there is no better way? Let&#039;s take a look at the items Jon mentions.&lt;br /&gt;
&lt;ol&gt;&lt;br /&gt;
&lt;li&gt;Access Control: moats and stockades then, firewalls now. Access control is still one of the soundest principles of information security. Control who may access information when and how and you have removed several vulnerabilities and reduced your risk dramatically. However, the technologies being used for access control change considerably over time. Up until the 1980s to 1990s access control meant control of physical access. Computers were large and heavy and access to them could be controlled pretty strictly and fairly easily. Enter The Network - and things shift completely. Or, to be fair, they get expanded. Physical access control is by then pretty much a commodity: people just do it anyway. What&#039;s new is that access to the computers is not only available by physical access but by network access as well. While the Light Side had control for an enjoyable while it was only a matter of time until the Dark Side jumped on the bandwagon and started to use the Net for their sinister purposes. So well, Marcus Ranum writes the DEC SEAL and it starts to get a success quite fast: companies hire firewall administrators to take care of these arcane beasts that are tough to tame (alliteration not intended but gladly taken). Fast forward to today: every simple DSL router for home use has a NAT firewall included; the network guys do the firewalls on the side and up come web services with the nice side effect of tunneling &quot;stuff&quot; across HTTP (yes, and other protocols, but HTTP really is ubiquitous by now and a nice example of the ever changing technologies, thank you). So now we have web application firewalls which really are nothing else than application layer proxies. And so it goes, goes round again. (Kudos to Joe Jackson)&lt;/li&gt;&lt;br /&gt;
&lt;li&gt;Signet Rings and Trusted Certificates - now there you&#039;ve hit a sore spot, Jon. I don&#039;t trust the PKI model with a commercial head - much less even if said head is Verisign. The last piece in the puzzle was their Sitefinder &quot;service&quot; which accidentally broke half the Internet. But really, why do we trust signatures, signets or certificates at all? Chances are, the signature is illegibile anyway so a cursory glance of similarity is all we get. Same with certificates (without even the added benefit of Verisign). No solution there, I&#039;m afraid.&lt;/li&gt;&lt;br /&gt;
&lt;li&gt;Edicts and Policies - good point, Jon. However, I consider them to lay out the rules by which we play. We agree upon a set of rules to be able to note deviant behaviour and sanction it. Thus, policies and edits are rather useful tools as they prepare the ground for legal skirmishes or, in some cases, provide the opportunity to find out unwanted behaviour in the first place. I wouldn&#039;t want to live without them.&lt;/li&gt;&lt;br /&gt;
&lt;li&gt;Codes and Encryption are powerful tools, too. Unfortunately, many people tend to forget that encryption is a temporary safeguard at best. Even if the encryption algorithm has no known weaknesses it still will fall given enough time. There&#039;s the rise in computing power and the change to other technologies (can you say Quantum Encryption? I knew you could!). As long as people recognize this, they are quite secure. All they have to do is select an algorithm that will possibly keep the information secure as long as it has to be classified.&lt;/li&gt;&lt;br /&gt;
&lt;/ol&gt;&lt;br /&gt;
&lt;br /&gt;
Interestingly enough, the bad guys don&#039;t seem to have learned either how to circumvent the safeguards we set up. Either they are as caught in our ways of thinking or there simply Is No Better Way at the moment.&lt;br /&gt;
&lt;br /&gt;
What do &lt;strong&gt;you&lt;/strong&gt; think?&lt;br /&gt;
&lt;br /&gt;
All of this, however, has nothing to do with vendors coming up with new products all along instead of listening to what the customers want - just like in the storage market. Thanks for the eye-opener, Jon!&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Tue, 01 Nov 2005 00:03:01 +0100</pubDate>
    <guid isPermaLink="false">http://blog.balrog.de/archives/450-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>

</channel>
</rss>