<?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:creativeCommons="http://backend.userland.com/creativeCommonsRssModule">
<channel>
    
    <title>Hanno's blog - Security</title>
    <link>http://www.hboeck.de/</link>
    <description></description>
    <dc:language>en</dc:language>
    <generator>Serendipity 1.5.4 - http://www.s9y.org/</generator>
    <pubDate>Thu, 09 Sep 2010 02:12:52 GMT</pubDate>

    <image>
        <url>http://www.hboeck.de/templates/hanno/img/s9y_banner_small.png</url>
        <title>RSS: Hanno's blog - Security - </title>
        <link>http://www.hboeck.de/</link>
        <width>100</width>
        <height>21</height>
    </image>

<item>
    <title>Test your browser for Clickjacking protection</title>
    <link>http://www.hboeck.de/archives/740-Test-your-browser-for-Clickjacking-protection.html</link>
            <category>Code</category>
            <category>English</category>
            <category>Security</category>
    
    <comments>http://www.hboeck.de/archives/740-Test-your-browser-for-Clickjacking-protection.html#comments</comments>
    <wfw:comment>http://www.hboeck.de/wfwcomment.php?cid=740</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.hboeck.de/rss.php?version=2.0&amp;type=comments&amp;cid=740</wfw:commentRss>
    

    <author>nospam@example.com (Hanno Böck)</author>
    <content:encoded>
    In 2008, a rather interesting new kind of security problem within web applications was found called &lt;a href=&quot;http://www.sectheory.com/clickjacking.htm&quot;&gt;Clickjacking&lt;/a&gt;. The idea is rather simple but genious: A webpage from the attacked web application is loaded into an iframe (a way to display a webpage within another webpage), but so small that the user cannot see it. Via javascript, this iframe is always placed below the mouse cursor and a button is focused in the iframe. When the user clicks anywhere on an attackers page, it clicks the button in his webapp causing some action the user didn&#039;t want to do.&lt;br /&gt;
What makes this vulnerability especially interesting is that it is a vulnerability within protocols and that it was pretty that there would be no easy fix without any changes to existing technology. A possible attempt to circumvent this would be a javascript frame killer code within every web application, but that&#039;s far away from being a nice solution (as it makes it neccessary to have javascript code around even if your webapp does not use any javascript at all).&lt;br /&gt;
Now, &lt;a href=&quot;http://blogs.msdn.com/b/ie/archive/2009/01/27/ie8-security-part-vii-clickjacking-defenses.aspx&quot;&gt;Microsoft suggested&lt;/a&gt; a new http header &lt;b&gt;X-FRAME-OPTIONS&lt;/b&gt; that can be set to &lt;b&gt;DENY&lt;/b&gt; or &lt;b&gt;SAMEORIGIN&lt;/b&gt;. DENY means that the webpage sending that header may not be displayed in a frame or iframe at all. SAMEORIGIN means that it may only be referenced from webpages on the same domain name (sidenote: I tend to not like Microsoft and their behaviour on standards and security very much, but in this case there&#039;s no reason for that. Although it&#039;s not a standard – yet? - this proposal is completely sane and makes sense).&lt;br /&gt;
Just recently, Firefox added support, all major other browser already did that before (Opera, Chrome), so we finally have a solution to protect against clickjacking (konqueror does not support it yet and I found no plans for it, which may be a sign for the sad state of konqueror development regarding security features - they&#039;re also the only browser not supporting SNI). It&#039;s now up to web application developers to use that header. For most of them – if they&#039;re not using frames at all - it&#039;s probably quite easy, as they can just set the header to DENY all the time. If an app uses frames, it requires a bit more thoughts where to set DENY and where to use SAMEORIGIN.&lt;br /&gt;
It would also be nice to have some &quot;official&quot; IETF or W3C standard for it, but as all major browsers agree on that, it&#039;s okay to start using it now.&lt;br /&gt;
But the main reason I wrote this long introduction: I&#039;ve set up &lt;a href=&quot;http://int21.de/frametest/&quot;&gt;a little test page&lt;/a&gt; where you can check if your browser supports the new header. If it doesn&#039;t, you should look for an update. 
    </content:encoded>

    <pubDate>Thu, 09 Sep 2010 00:22:13 +0200</pubDate>
    <guid isPermaLink="false">http://www.hboeck.de/archives/740-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by/3.0/</creativeCommons:license><category>browser</category>
<category>clickjacking</category>
<category>firefox</category>
<category>javascript</category>
<category>microsoft</category>
<category>security</category>
<category>vulnerability</category>
<category>websecurity</category>

</item>
<item>
    <title>Secure RSA padding: RSA-PSS</title>
    <link>http://www.hboeck.de/archives/737-Secure-RSA-padding-RSA-PSS.html</link>
            <category>Code</category>
            <category>Cryptography</category>
            <category>English</category>
            <category>Linux</category>
            <category>Security</category>
    
    <comments>http://www.hboeck.de/archives/737-Secure-RSA-padding-RSA-PSS.html#comments</comments>
    <wfw:comment>http://www.hboeck.de/wfwcomment.php?cid=737</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.hboeck.de/rss.php?version=2.0&amp;type=comments&amp;cid=737</wfw:commentRss>
    

    <author>nospam@example.com (Hanno Böck)</author>
    <content:encoded>
    I got selected for this years &lt;a href=&quot;http://socghop.appspot.com/gsoc/student_project/show/google/gsoc2010/mozilla/t127230761333&quot;&gt;Google Summer of Code with a project for the implementation of RSA-PSS&lt;/a&gt; in the nss library. RSA-PSS will also be the topic of my diploma thesis, so I thought I&#039;d write some lines about it.&lt;br /&gt;
&lt;br /&gt;
RSA is, as you may probably know, the most widely used public key cryptography algorithm. It can be used for signing and encryption, RSA-PSS is about signing (something similar, RSA-OAEP, exists for encryption, but that&#039;s not my main topic).&lt;br /&gt;
&lt;br /&gt;
The formula for the RSA-algorithm is &lt;b&gt;S = M^k mod N&lt;/b&gt; (S is the signature, M the input, k the private key and N some big prime number). One important thing is that M is not the Message itself, but some encoding of the message. A simple way of doing this encoding is using a hash-function, for example SHA256. This is basically how old standards (like PKCS #1 1.5) worked. While no attacks exist against this scheme, it&#039;s believed that this can be improved. One reason is that while the RSA-function accepts an input of size N (which is the same length as the keysize, for example 2048/4096 bit), hash-functions usually produce much smaller inputs (something like 160/256 bit).&lt;br /&gt;
&lt;br /&gt;
An improved scheme for that is the &lt;a href=&quot;http://www.rsa.com/rsalabs/node.asp?id=2005&quot;&gt;Probabilistic Signature Scheme (PSS)&lt;/a&gt;, (&lt;a href=&quot;http://www.cs.ucdavis.edu/~rogaway/papers/exact.html&quot;&gt;Bellare/Rogaway 1996/1998&lt;/a&gt;). PSS is &quot;provable secure&quot;. It does not mean that the outcoming algorithm is &quot;provable secure&quot; (that&#039;s impossible with today&#039;s math), but that the outcome is as secure as the input algorithm RSA and the used hash function (so-called &quot;random oracle model&quot;). A standard for PSS-encryption is PKCS #1 2.1 (republished as &lt;a href=&quot;http://tools.ietf.org/html/rfc3447&quot;&gt;RFC 3447&lt;/a&gt;) So PSS in general is a good idea as a security measure, but as there is no real pressure to implement it, it&#039;s still not used very much. Just an example, the new DNSSEC ressource records &lt;a href=&quot;http://tools.ietf.org/html/rfc5702&quot;&gt;just published last year still use the old PKCS #1 1.5 standard&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
For SSL/TLS, standards to use PSS exist (&lt;a href=&quot;http://tools.ietf.org/html/rfc4055&quot;&gt;RFC 4055&lt;/a&gt;, &lt;a href=&quot;http://tools.ietf.org/html/rfc5756&quot;&gt;RFC 5756&lt;/a&gt;), but implementation is widely lacking. Just recently, &lt;a href=&quot;http://rt.openssl.org/Ticket/Display.html?id=1951&quot;&gt;openssl got support for PSS verification&lt;/a&gt;. The only implementation of signature creation I&#039;m aware of is the java-library &lt;a href=&quot;http://www.bouncycastle.org/&quot;&gt;bouncycastle&lt;/a&gt; (yes, this forced me to write some lines of java code).&lt;br /&gt;
&lt;br /&gt;
The nss library is used by the Mozilla products (Firefox, Thunderbird), so an implementation there is crucial for a more widespread use of PSS. 
    </content:encoded>

    <pubDate>Fri, 14 May 2010 23:22:43 +0200</pubDate>
    <guid isPermaLink="false">http://www.hboeck.de/archives/737-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by/3.0/</creativeCommons:license><category>cryptography</category>
<category>gsoc</category>
<category>nss</category>
<category>pss</category>
<category>rsa</category>
<category>rsapss</category>
<category>security</category>
<category>ssl</category>
<category>tls</category>

</item>
<item>
    <title>Easterhegg in Munich</title>
    <link>http://www.hboeck.de/archives/734-Easterhegg-in-Munich.html</link>
            <category>Code</category>
            <category>Computer culture</category>
            <category>Copyright</category>
            <category>Ecology</category>
            <category>English</category>
            <category>Politics</category>
            <category>Security</category>
    
    <comments>http://www.hboeck.de/archives/734-Easterhegg-in-Munich.html#comments</comments>
    <wfw:comment>http://www.hboeck.de/wfwcomment.php?cid=734</wfw:comment>

    <slash:comments>4</slash:comments>
    <wfw:commentRss>http://www.hboeck.de/rss.php?version=2.0&amp;type=comments&amp;cid=734</wfw:commentRss>
    

    <author>nospam@example.com (Hanno Böck)</author>
    <content:encoded>
    &lt;a class=&quot;serendipity_image_link&quot;  href=&#039;http://www.hboeck.de/uploads/easterhegg.jpg&#039;&gt;&lt;!-- s9ymdb:271 --&gt;&lt;img class=&quot;serendipity_image_right&quot; width=&quot;300&quot; height=&quot;225&quot;  src=&quot;http://www.hboeck.de/uploads/easterhegg.serendipityThumb.jpg&quot;  alt=&quot;EH-Badge und Tasse&quot; /&gt;&lt;/a&gt;I visited this year&#039;s &lt;a href=&quot;http://eh2010.muc.ccc.de/&quot;&gt;easterhegg&lt;/a&gt; in Munich. The easterhegg is an event by the chaos computer club.&lt;br /&gt;
&lt;br /&gt;
I held a talk expressing some thoughts I had in mind for quite a long time about free licenses. The conclusion is mainly that I think it very often may make more sense to use public domain &quot;licensing&quot; instead of free licenses with restrictions. The slides can be &lt;a href=&quot;http://int21.de/slides/slides_publicdomain.odp&quot;&gt;downloaded here&lt;/a&gt; (video recording &lt;a href=&quot;ftp://ftp.ccc.de/events/eh2010/mp4_1024x576/EH2010-3762-de-publicdomain.mp4&quot;&gt;here in high quality / 1024x576&lt;/a&gt; and &lt;a href=&quot;ftp://ftp.ccc.de/events/eh2010/mp4_640x360/EH2010-3762-de-publicdomain.mp4&quot;&gt;here in lower quality / 640x360&lt;/a&gt;). Talk was in german, but the slides are english. I plan to write down a longer text about the subject, but I don&#039;t know when I&#039;ll find time for that.&lt;br /&gt;
&lt;br /&gt;
I also had a 5 minute lightning-talk about RSA-PSS and RSA-OAEP, &lt;a href=&quot;http://int21.de/slides/slides_rsapss_5min.odp&quot;&gt;slides are here&lt;/a&gt; (german). I will probably write my diploma thesis about PSS, so you may read more about that here in the future.&lt;br /&gt;
&lt;br /&gt;
From the other talks, I want to mention one because I think it&#039;s a very interesting project about an important topic: The &lt;a href=&quot;http://mysmartgrid.de/&quot;&gt;mySmartGrid&lt;/a&gt; project is working on an opensource based solution for local smart grids. It&#039;s a research project by Frauenhofer ITWM Kaiserslautern and it sounds very promising. Smart grids will almost definitely come within the next years and if people stick to the solutions provided by big energy companies, this will most likely be a big thread to privacy and will most probably prefer old centralized electricity generation. 
    </content:encoded>

    <pubDate>Mon, 05 Apr 2010 20:58:57 +0200</pubDate>
    <guid isPermaLink="false">http://www.hboeck.de/archives/734-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by/3.0/</creativeCommons:license><category>ccc</category>
<category>copyright</category>
<category>easterhegg</category>
<category>licenses</category>
<category>mysmartgrid</category>
<category>publicdomain</category>
<category>rsa</category>
<category>rsaoaep</category>
<category>rsapss</category>

</item>
<item>
    <title>SSL-Certificates with SHA256 signature</title>
    <link>http://www.hboeck.de/archives/730-SSL-Certificates-with-SHA256-signature.html</link>
            <category>Cryptography</category>
            <category>English</category>
            <category>Gentoo</category>
            <category>Linux</category>
            <category>Security</category>
    
    <comments>http://www.hboeck.de/archives/730-SSL-Certificates-with-SHA256-signature.html#comments</comments>
    <wfw:comment>http://www.hboeck.de/wfwcomment.php?cid=730</wfw:comment>

    <slash:comments>12</slash:comments>
    <wfw:commentRss>http://www.hboeck.de/rss.php?version=2.0&amp;type=comments&amp;cid=730</wfw:commentRss>
    

    <author>nospam@example.com (Hanno Böck)</author>
    <content:encoded>
    At least since 2005 it&#039;s &lt;a href=&quot;http://www.schneier.com/blog/archives/2005/02/sha1_broken.html&quot;&gt;well known&lt;/a&gt; that the cryptographic hash function SHA1 is seriously flawed and it&#039;s only a matter of time until it will be broken. However, it&#039;s still widely used and it can be expected that it&#039;ll be used long enough to allow real world attacks (as it happened with &lt;a href=&quot;http://events.ccc.de/congress/2008/Fahrplan/events/3023.en.html&quot;&gt;MD5 before&lt;/a&gt;). The NIST (the US National Institute of Standards and Technology) suggests not to use SHA1 after 2010, the german BSI (Bundesamt für Sicherheit in der Informationstechnik) says they should&#039;ve been fadet out by the end of 2009.&lt;br /&gt;
&lt;br /&gt;
The probably most widely used encryption protocol is SSL. It is a protocol that can operate on top of many other internet protocols and is for example widely used for banking accounts.&lt;br /&gt;
&lt;br /&gt;
As SSL is a pretty complex protocol, it needs hash functions at various places, here I&#039;m just looking at one of them. The signatures created by the certificate authorities. Every SSL certificate is signed by a CA, even if you generate SSL certificates yourself, they are self-signed, meaning that the certificate itself is it&#039;s own CA. From what I know, despite the suggestions mentioned above no big CA will give you certificates signed with anything better than SHA1. You can check this with:&lt;br /&gt;
&lt;b&gt;openssl x509 -text -in [your ssl certificate]&lt;/b&gt;&lt;br /&gt;
Look for &quot;Signature Algorithm&quot;. It&#039;ll most likely say sha1WithRSAEncryption. If your CA is good, it&#039;ll show sha256WithRSAEncryption. If your CA is really bad, it may show md5WithRSAEncryption.&lt;br /&gt;
&lt;br /&gt;
When asking for SHA256 support, you often get the answer that the software still has problems, it&#039;s not ready yet. When asking for more information I never got answers. So I tried it myself. On an up-to-date apache webserver with mod_ssl, it was no problem to install a SHA256 signed certificate based on a SHA256 signed test CA. All browsers I&#039;ve tried (Firefox 3.6, Konqueror 4.3.5, Opera 10.10, IE8 and even IE6) had no problem with it. You can check it out at &lt;a href=&quot;https://sha2.hboeck.de/&quot;&gt;https://sha2.hboeck.de/&lt;/a&gt;. You will get a certificate warning (obviously, as it&#039;s signed by my own test CA), but you&#039;ll be able to view the page. If you want to test it without warnings, you can also &lt;a href=&quot;http://sha2.hboeck.de/sha2.crt&quot;&gt;import the CA certificate&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
I&#039;d be interested if this causes any problems (on server or on client side), so please leave a comment if you are aware of any incompatibilities.&lt;img src=&quot;http://vg06.met.vgwort.de/na/9134fb07c35147c389e6d15c267b2a60&quot; width=&quot;1&quot; height=&quot;1&quot; alt=&quot;&quot;/&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Update:&lt;/b&gt; By request in the comments, I&#039;ve also created a &lt;a href=&quot;https://sha512.hboeck.de/&quot;&gt;SHA512 testcase&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Update 2:&lt;/b&gt; StartSSL wrote me that they tried providing SHA256-certificates about a year ago and had too many problems - it wasn&#039;t very specific but they mentioned that earlier Windows XP and Windows 2003 Server versions may have problems. 
    </content:encoded>

    <pubDate>Mon, 01 Feb 2010 23:23:34 +0100</pubDate>
    <guid isPermaLink="false">http://www.hboeck.de/archives/730-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by/3.0/</creativeCommons:license><category>ca</category>
<category>cryptography</category>
<category>hash</category>
<category>md5</category>
<category>security</category>
<category>sha1</category>
<category>sha2</category>
<category>sha256</category>
<category>ssl</category>

</item>
<item>
    <title>Verschlüsselte Mail von der AOK</title>
    <link>http://www.hboeck.de/archives/689-Verschluesselte-Mail-von-der-AOK.html</link>
            <category>Computer culture</category>
            <category>Security</category>
    
    <comments>http://www.hboeck.de/archives/689-Verschluesselte-Mail-von-der-AOK.html#comments</comments>
    <wfw:comment>http://www.hboeck.de/wfwcomment.php?cid=689</wfw:comment>

    <slash:comments>5</slash:comments>
    <wfw:commentRss>http://www.hboeck.de/rss.php?version=2.0&amp;type=comments&amp;cid=689</wfw:commentRss>
    

    <author>nospam@example.com (Hanno Böck)</author>
    <content:encoded>
    &lt;!-- s9ymdb:247 --&gt;&lt;img class=&quot;serendipity_image_right&quot; width=&quot;300&quot; height=&quot;226&quot; style=&quot;float: right; border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;http://www.hboeck.de/uploads/aokmail.png&quot; alt=&quot;Verschlüsselte eMail&quot; /&gt;Ich hatte vor kurzem per eMail Kontakt mit der AOK Berlin.&lt;br /&gt;
&lt;br /&gt;
Durchaus gross war meine Überraschung, als ich von dieser eine Mail bekam, die PGP-Verschlüsselt war. Wohlgemerkt, ich hatte nicht mit irgendeiner Security- oder Computerabteilung, sondern mit der gewöhnlichen Kundenbetreuung zu tun. Da mein Initialkontakt via Webformular stattfand, war auch keine Mailsignatur von mir dort angekommen, insofern kann ich nur annehmen, dass deren Mailsystem automatisiert auf einem Keyserver meinen Key gesucht hat und diesen verwendet. Oder ein motivierter Mitarbeiter hat diesen hier von der Webseite.&lt;br /&gt;
&lt;br /&gt;
Dass sämtliche Mails an Mailadressen, für die Schlüssel existieren, automatisiert verschlüsselt werden, kann ich mir kaum vorstellen, weil hier erstens vermutlich ein erheblicher Supportaufwand entsteht (passiert mir selber ja oft genug dass ich Nachrichten der Form »bitte nicht verschlüsseln, ich hab meinen Key verlegt / grad nicht da«) und zweitens ja die Mailadressen in den Keys in keinster Weise verifiziert werden. Allerdings existiert beispielsweise das PGP Global Directory, in dem nur Keys mit regelmäßig verifizierten Mailadressen landen. Das erscheint mir im Moment die plausibelste Erklärung.&lt;br /&gt;
&lt;br /&gt;
Auch wenn ich nicht genau weiss, wie die AOK an den passenden Key kam, lobenswert finde ich es allemal, dass sich zur Abwechslung mal jemand in einem aus Datenschutzgründen sehr sensiblen Bereich von selbst um verschlüsselte Kommunikation bemüht. 
    </content:encoded>

    <pubDate>Thu, 05 Mar 2009 19:28:54 +0100</pubDate>
    <guid isPermaLink="false">http://www.hboeck.de/archives/689-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by/3.0/</creativeCommons:license><category>aok</category>
<category>datenschutz</category>
<category>email</category>
<category>encryption</category>
<category>gpg</category>
<category>pgp</category>
<category>privacy</category>
<category>security</category>
<category>verschlüsselung</category>

</item>
<item>
    <title>Study research project about session cookies, SSL and session hijacking</title>
    <link>http://www.hboeck.de/archives/681-Study-research-project-about-session-cookies,-SSL-and-session-hijacking.html</link>
            <category>Code</category>
            <category>English</category>
            <category>Security</category>
    
    <comments>http://www.hboeck.de/archives/681-Study-research-project-about-session-cookies,-SSL-and-session-hijacking.html#comments</comments>
    <wfw:comment>http://www.hboeck.de/wfwcomment.php?cid=681</wfw:comment>

    <slash:comments>5</slash:comments>
    <wfw:commentRss>http://www.hboeck.de/rss.php?version=2.0&amp;type=comments&amp;cid=681</wfw:commentRss>
    

    <author>nospam@example.com (Hanno Böck)</author>
    <content:encoded>
    In the last weeks, I made a study research project at the &lt;a href=&quot;http://iaks-www.ira.uka.de/eiss/&quot;&gt;EISS at the University of Karlsruhe&lt;/a&gt;. The subject was »Session Cookies and SSL«, investigating the problems that arise when  trying to secure a web application with HTTPS and using session cookies.&lt;br /&gt;
&lt;br /&gt;
I already wrote about this in the past, presenting vulnerabilities in various web applications.&lt;br /&gt;
&lt;br /&gt;
One of the notable results is probably that ebay has just no measurements against those issues at all, so it&#039;s pretty trivial to hijack a session (and use that to do bids and even change the address of the hijacked account).&lt;br /&gt;
&lt;br /&gt;
&lt;a class=&#039;serendipity_image_link&#039; href=&#039;http://www.hboeck.de/uploads/ssl-cookies.pdf&#039;&gt;Download »Session Cookies and SSL« (PDF, 317 KB)&lt;!-- s9ymdb:243 --&gt;&lt;/a&gt; 
    </content:encoded>

    <pubDate>Tue, 13 Jan 2009 23:38:10 +0100</pubDate>
    <guid isPermaLink="false">http://www.hboeck.de/archives/681-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by/3.0/</creativeCommons:license><category>http</category>
<category>https</category>
<category>security</category>
<category>ssl</category>
<category>websecurity</category>

</item>
<item>
    <title>Anfragen die man so erhält</title>
    <link>http://www.hboeck.de/archives/677-Anfragen-die-man-so-erhaelt.html</link>
            <category>Computer culture</category>
            <category>Security</category>
    
    <comments>http://www.hboeck.de/archives/677-Anfragen-die-man-so-erhaelt.html#comments</comments>
    <wfw:comment>http://www.hboeck.de/wfwcomment.php?cid=677</wfw:comment>

    <slash:comments>1</slash:comments>
    <wfw:commentRss>http://www.hboeck.de/rss.php?version=2.0&amp;type=comments&amp;cid=677</wfw:commentRss>
    

    <author>nospam@example.com (Hanno Böck)</author>
    <content:encoded>
    Ich erhielt nachfolgende Mail, ich dachte ich poste das einfach mal.&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;Hallo Hanno,&lt;br /&gt;
 &lt;br /&gt;
Hab Deine Adresse auf Deinem Blog gefunden.&lt;br /&gt;
&lt;br /&gt;
Ich hab eine Frage:&lt;br /&gt;
&lt;br /&gt;
Ist es moeglich in eine Webseite zu gehen, die Daten darin zu klauen, das Passwort zu aendern und die Webseite fuer immer zu blockieren?&lt;br /&gt;
Wer koennte sowas machen und fuer welchen Preis??&lt;br /&gt;
&lt;br /&gt;
Freue mich auf Deine Antwort&lt;br /&gt;
Bis bald&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
Ich leite natürlich Angebote gerne weiter ;-) 
    </content:encoded>

    <pubDate>Fri, 26 Dec 2008 23:02:57 +0100</pubDate>
    <guid isPermaLink="false">http://www.hboeck.de/archives/677-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by/3.0/</creativeCommons:license><category>blog</category>
<category>fun</category>
<category>hacking</category>

</item>
<item>
    <title>SSL Session hijacking</title>
    <link>http://www.hboeck.de/archives/656-SSL-Session-hijacking.html</link>
            <category>Cryptography</category>
            <category>English</category>
            <category>Security</category>
    
    <comments>http://www.hboeck.de/archives/656-SSL-Session-hijacking.html#comments</comments>
    <wfw:comment>http://www.hboeck.de/wfwcomment.php?cid=656</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.hboeck.de/rss.php?version=2.0&amp;type=comments&amp;cid=656</wfw:commentRss>
    

    <author>nospam@example.com (Hanno Böck)</author>
    <content:encoded>
    Recently, &lt;a href=&quot;http://enablesecurity.com/2008/08/11/surf-jack-https-will-not-save-you/&quot;&gt;two&lt;/a&gt; &lt;a href=&quot;https://www.defcon.org/html/defcon-16/dc-16-speakers.html#Perry&quot;&gt;publications&lt;/a&gt; raised awareness of a problem with ssl secured websites.&lt;br /&gt;
&lt;br /&gt;
If a website is configured to always forward traffic to ssl, one would assume that all traffic is safe and nothing can be sniffed. Though, if one is able to sniff network traffic and also has the ability to forward the victim to a crafted site (which can, e. g., be just sending him some »hey, read this, interesting text« message), he can then force the victim to open a http-connection. If the cookie has not set the secured flag, the attacker can sniff the cookie and take over the session of the user (assuming it&#039;s using some kind of cookie-based session, which is pretty standard on today&#039;s webapps).&lt;br /&gt;
&lt;br /&gt;
The solution to this is that a webapp should always check if the connection is ssl and set the secured flag accordingly. For PHP, this could be something like this:&lt;br /&gt;
&lt;pre&gt;if ($_SERVER[&#039;HTTPS&#039;]) session_set_cookie_params( 0, &#039;/&#039;, &#039;&#039;, true, true );&lt;/pre&gt;&lt;br /&gt;
I&#039;ve recently investigated all web applications I&#039;m using myself and reported the issue (&lt;a href=&quot;http://int21.de/cve/CVE-2008-3102-mantis.html&quot;&gt;Mantis / CVE-2008-3102&lt;/a&gt;, &lt;a href=&quot;http://int21.de/cve/CVE-2008-3661-drupal.html&quot;&gt;Drupal / CVE-2008-3661&lt;/a&gt;, &lt;a href=&quot;http://int21.de/cve/CVE-2008-3662-gallery.html&quot;&gt;Gallery / CVE-2008-3662&lt;/a&gt;, &lt;a href=&quot;http://int21.de/cve/CVE-2008-3663-squirrelmail.html&quot;&gt;Squirrelmail / CVE-2008-3663&lt;/a&gt;). I have some more pending I want to investigate further.&lt;br /&gt;
&lt;br /&gt;
I call security researchers to add this issue to their list of common things one has to look after. I find the firefox-extension &lt;a href=&quot;https://addons.mozilla.org/de/firefox/addon/4703&quot;&gt;CookieMonster&lt;/a&gt; very useful for this.&lt;br /&gt;
&lt;br /&gt;
The result of my reports was quite mixed. While the gallery team took the issue very serious (and even payed me a bounty for my report, many thanks for that), the drupal team thinks there is no issue and did nothing. The others have not released updates yet, but fixed the issue in their code.&lt;br /&gt;
&lt;br /&gt;
And for a final word, I want to share a mail with you I got after posting the gallery issue to full disclosure:&lt;br /&gt;
&lt;i&gt;for fuck&#039;s sake dude! half of the planet, military, government, financial sites suffer from this and the best you could come up with is a fucking photo album no one uses! do everybody a favor and die you lame fuck!&lt;/i&gt; 
    </content:encoded>

    <pubDate>Thu, 25 Sep 2008 22:19:42 +0200</pubDate>
    <guid isPermaLink="false">http://www.hboeck.de/archives/656-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by/3.0/</creativeCommons:license><category>cookie</category>
<category>drupal</category>
<category>gallery</category>
<category>mantis</category>
<category>php</category>
<category>security</category>
<category>session</category>
<category>sniffing</category>
<category>squirrelmail</category>
<category>ssl</category>

</item>
<item>
    <title>Fuzzing is easy</title>
    <link>http://www.hboeck.de/archives/651-Fuzzing-is-easy.html</link>
            <category>Code</category>
            <category>English</category>
            <category>Linux</category>
            <category>Security</category>
    
    <comments>http://www.hboeck.de/archives/651-Fuzzing-is-easy.html#comments</comments>
    <wfw:comment>http://www.hboeck.de/wfwcomment.php?cid=651</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.hboeck.de/rss.php?version=2.0&amp;type=comments&amp;cid=651</wfw:commentRss>
    

    <author>nospam@example.com (Hanno Böck)</author>
    <content:encoded>
    I recently played around with the possibilities of fuzzing. It&#039;s a simple way to find bugs in applications.&lt;br /&gt;
&lt;br /&gt;
What you do: You have some application that parses some kind of file format. You create lots (thousands) of files which have small errors. The simplest approach is to just change random bits. If the app crashes, you&#039;ve found a bug, it&#039;s quite likely that it&#039;s a security relevant one. This is especially crucial for apps like mail scanners (antivirus), but pretty much works for every app that parses foreign input. It works especially well on uncommon file formats, because their code is often not well maintained.&lt;br /&gt;
&lt;br /&gt;
My fuzzing tool of choice is &lt;a href=&quot;http://libcaca.zoy.org/wiki/zzuf&quot;&gt;zzuf&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
I am impressed and a bit shocked how easy it is to find crashers and potential overflows in common, security relevant applications. My last discovery was a &lt;a href=&quot;http://int21.de/cve/CVE-2008-1389-clamav-chd.html&quot;&gt;crasher in the chm parser of clamav&lt;/a&gt;. 
    </content:encoded>

    <pubDate>Sun, 07 Sep 2008 19:17:46 +0200</pubDate>
    <guid isPermaLink="false">http://www.hboeck.de/archives/651-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by/3.0/</creativeCommons:license><category>clamav</category>
<category>fuzzing</category>
<category>security</category>
<category>zzuf</category>

</item>
<item>
    <title>Hash-collissions in real world scenarios</title>
    <link>http://www.hboeck.de/archives/617-Hash-collissions-in-real-world-scenarios.html</link>
            <category>Code</category>
            <category>Cryptography</category>
            <category>English</category>
            <category>Security</category>
    
    <comments>http://www.hboeck.de/archives/617-Hash-collissions-in-real-world-scenarios.html#comments</comments>
    <wfw:comment>http://www.hboeck.de/wfwcomment.php?cid=617</wfw:comment>

    <slash:comments>3</slash:comments>
    <wfw:commentRss>http://www.hboeck.de/rss.php?version=2.0&amp;type=comments&amp;cid=617</wfw:commentRss>
    

    <author>nospam@example.com (Hanno Böck)</author>
    <content:encoded>
    I just read &lt;a href=&quot;http://www.heise.de/newsticker/Details-zur-Wordpress-Luecke-veroeffentlicht--/meldung/107172&quot;&gt;an article about the recent wordpress vulnerability&lt;/a&gt; (if you&#039;re running wordpress, please update to 2.5.1 NOW), one point raised my attention: The attack uses MD5-collisions.&lt;br /&gt;
&lt;br /&gt;
I wrote some articles about hash collisions a while back. Short introduction: A cryptographic hash-function is a function where you can put in any data and you&#039;ll get a unique, fixed-size value. »unique« in this case scenario means that it&#039;s very hard to calculate two different strings matching to the same hash value. If you can do that, the function should be considered broken.&lt;br /&gt;
&lt;br /&gt;
The MD5 function got broken some years back (2004) and it&#039;s more or less a question of time when the same will happen to SHA1. There have been scientific results claiming that an attacker with enough money could easily create a supercomputer able to create collisions on SHA1. The evil thing is: Due to the design of both functions, if you have one collision, you can create many more easily.&lt;br /&gt;
&lt;br /&gt;
Although those facts are well known, SHA1 is still widely used (just have a look at your SSL connections or at the way the PGP web of trust works) and MD5 isn&#039;t dead either. The fact that a well-known piece of software got issues depending on hash collisions should raise attention. Pretty much all security considerations on cryptographic protocols rely on the collision resistance of hash functions.&lt;br /&gt;
&lt;br /&gt;
The NIST plans to define new hash functions &lt;a href=&quot;http://csrc.nist.gov/groups/ST/hash/&quot;&gt;until 2012&lt;/a&gt;, until then it&#039;s probably a safe choice to stick with SHA256 or SHA512. 
    </content:encoded>

    <pubDate>Tue, 29 Apr 2008 21:44:47 +0200</pubDate>
    <guid isPermaLink="false">http://www.hboeck.de/archives/617-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by/3.0/</creativeCommons:license><category>cryptography</category>
<category>hash</category>
<category>md5</category>
<category>nist</category>
<category>security</category>
<category>sha1</category>
<category>sha256</category>
<category>sha512</category>
<category>wordpress</category>

</item>
<item>
    <title>gajim with otr encryption</title>
    <link>http://www.hboeck.de/archives/615-gajim-with-otr-encryption.html</link>
            <category>English</category>
            <category>Gentoo</category>
            <category>Linux</category>
            <category>Security</category>
    
    <comments>http://www.hboeck.de/archives/615-gajim-with-otr-encryption.html#comments</comments>
    <wfw:comment>http://www.hboeck.de/wfwcomment.php?cid=615</wfw:comment>

    <slash:comments>11</slash:comments>
    <wfw:commentRss>http://www.hboeck.de/rss.php?version=2.0&amp;type=comments&amp;cid=615</wfw:commentRss>
    

    <author>nospam@example.com (Hanno Böck)</author>
    <content:encoded>
    &lt;!-- s9ymdb:190 --&gt;&lt;img class=&quot;serendipity_image_right&quot; width=&quot;253&quot; height=&quot;166&quot; style=&quot;float: right; border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;http://www.hboeck.de/uploads/gajim-otr.png&quot; alt=&quot;gajim with otr&quot; /&gt;In the instant messaging world, encryption is a bit of a problem. There is no single standard that all clients share, mostly two methods of encryption are out there: pgp over jabber (as defined in the xmpp standard) and otr.&lt;br /&gt;
&lt;br /&gt;
Most clients only support either otr (pidgin, adium) or pgp (gajim, psi), for a long time I was looking for a solution where both methods work. psi has otr-patches, but they didn&#039;t work when I tried them. kopete also has an otr-plugin, but I&#039;ve not tested that yet.&lt;br /&gt;
&lt;br /&gt;
Today I found that there is an &lt;a href=&quot;https://code.launchpad.net/~afflux/gajim/otr&quot;&gt;otr-branch of gajim&lt;/a&gt;, which is my everyday client, so this would be great. As you can see on the picture, it seems to work on a connection with an ICQ user using pidgin.&lt;br /&gt;
&lt;br /&gt;
I&#039;ve created some ebuilds in my overlay (the code is stored in bazaar, I&#039;ve copied the bzr eclass from the desktop effects overlay):&lt;br /&gt;
&lt;pre&gt;svn co https://svn.hboeck.de/overlay&lt;/pre&gt; 
    </content:encoded>

    <pubDate>Mon, 21 Apr 2008 02:21:06 +0200</pubDate>
    <guid isPermaLink="false">http://www.hboeck.de/archives/615-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by/3.0/</creativeCommons:license><category>encryption</category>
<category>gajim</category>
<category>jabber</category>
<category>otr</category>
<category>pgp</category>
<category>security</category>
<category>xmpp</category>

</item>
<item>
    <title>Kassenzettel</title>
    <link>http://www.hboeck.de/archives/613-Kassenzettel.html</link>
            <category>Life</category>
            <category>Security</category>
    
    <comments>http://www.hboeck.de/archives/613-Kassenzettel.html#comments</comments>
    <wfw:comment>http://www.hboeck.de/wfwcomment.php?cid=613</wfw:comment>

    <slash:comments>10</slash:comments>
    <wfw:commentRss>http://www.hboeck.de/rss.php?version=2.0&amp;type=comments&amp;cid=613</wfw:commentRss>
    

    <author>nospam@example.com (Hanno Böck)</author>
    <content:encoded>
    Normalerweise versuche ich aus Datenschutzgründen, nach Möglichkeit mit Bargeld und nicht mit EC-Karte zu bezahlen. Gestern jedoch merkte ich erst im Laden, dass ich viel zu wenig Bargeld bei mir hatte. Also doch mit Karte.&lt;br /&gt;
&lt;br /&gt;
Beim rausgehen warf ich ein Stück überflüssige Verpackung gleich in den Müll und wollte schon mit dem Kassenzettel ebenso verfahren, hielt jedoch kurz inne. Steht da was möglicherweise sensibles drauf? Geschaut, tatsächlich, BLZ, Kontonummer (kein Name, sonst wär&#039;s noch problematischer). Ich weiss nicht ob das üblich ist, werde aber in Zukunft darauf achten.&lt;br /&gt;
&lt;br /&gt;
Welche möglicherweise spannenden Datensätze man generieren könnte, durch schlichtes Wühlen in den Papierkörben vor großen Geschäften, das überlasse ich der Phantasie meiner Leser. 
    </content:encoded>

    <pubDate>Fri, 18 Apr 2008 21:05:42 +0200</pubDate>
    <guid isPermaLink="false">http://www.hboeck.de/archives/613-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by/3.0/</creativeCommons:license><category>datenschutz</category>
<category>einkaufen</category>
<category>privacy</category>

</item>
<item>
    <title>Wordpress mass hacks for pagerank</title>
    <link>http://www.hboeck.de/archives/609-Wordpress-mass-hacks-for-pagerank.html</link>
            <category>Computer culture</category>
            <category>English</category>
            <category>Linux</category>
            <category>Security</category>
    
    <comments>http://www.hboeck.de/archives/609-Wordpress-mass-hacks-for-pagerank.html#comments</comments>
    <wfw:comment>http://www.hboeck.de/wfwcomment.php?cid=609</wfw:comment>

    <slash:comments>1</slash:comments>
    <wfw:commentRss>http://www.hboeck.de/rss.php?version=2.0&amp;type=comments&amp;cid=609</wfw:commentRss>
    

    <author>nospam@example.com (Hanno Böck)</author>
    <content:encoded>
    Today &lt;a href=&quot;http://www.heise.de/newsticker/Schleichende-Spam-Epidemie-unter-veralteten-Wordpress-Blogs--/meldung/106272/&quot;&gt;heise security brought a news&lt;/a&gt; that a growing number of old wordpress installations get&#039;s misused by spammers to improve their pagerank. I&#039;ve more or less waited for something like that, because it&#039;s quite obvious: If you have an automated mechanism to use security holes in a popular web application, you can search for them with a search engine (google, the mighty hacktool) and usually it&#039;s quite trivial to detect both application and version.&lt;br /&gt;
&lt;br /&gt;
This isn&#039;t a wordpress-thing only, this can happen to pretty much every widespread web application. Wordpress had a lot of security issues recently and is very widespread, so it&#039;s an obvious choice. But other incidents like this will follow and future ones probably will affect more different web applications.&lt;br /&gt;
&lt;br /&gt;
The conclusion is quite simple: If you&#039;re installing a web application yourself, you are responsible for it! You need to look for security updates and you need to install them, else you might be responsible for spammers actions. And there&#039;s no »nobody is interested in my little blog«-excuse, as these are not attacks against an individual page, but mass attacks.&lt;br /&gt;
&lt;br /&gt;
For administrators, I wrote a little tool a while back, where I had such incidents in mind: &lt;a href=&quot;http://source.schokokeks.org/freewvs/&quot;&gt;freewvs&lt;/a&gt;, it checks locally on the filesystem for web applications and knows about vulnerabilities, so it&#039;ll tell you which web applications need updates. It already detects a whole bunch of apps, while more is always better and if you&#039;d like to help, I&#039;d gladly accept patches for more applications (the format is quite simple).&lt;br /&gt;
&lt;br /&gt;
With it, server administrators can check the webroots of thier users and nag them if they have outdated cruft laying around. 
    </content:encoded>

    <pubDate>Thu, 10 Apr 2008 02:44:43 +0200</pubDate>
    <guid isPermaLink="false">http://www.hboeck.de/archives/609-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by/3.0/</creativeCommons:license><category>freewvs</category>
<category>security</category>
<category>spam</category>
<category>websecurity</category>
<category>wordpress</category>

</item>
<item>
    <title>Blog-Spam abusing XSS</title>
    <link>http://www.hboeck.de/archives/603-Blog-Spam-abusing-XSS.html</link>
            <category>English</category>
            <category>Security</category>
    
    <comments>http://www.hboeck.de/archives/603-Blog-Spam-abusing-XSS.html#comments</comments>
    <wfw:comment>http://www.hboeck.de/wfwcomment.php?cid=603</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.hboeck.de/rss.php?version=2.0&amp;type=comments&amp;cid=603</wfw:commentRss>
    

    <author>nospam@example.com (Hanno Böck)</author>
    <content:encoded>
    I got some spam in the comment fields of my blog that raised my interest.&lt;br /&gt;
&lt;br /&gt;
Some sample how they looked like:&lt;br /&gt;
http://www.unicef.org/voy/search/search.php?q=some+advertising%3Cscript%3Eparent%2elocation%2ereplace%28%22http%3A%2F%2Fgoogle%2ede22%29%3C%2Fscript%3E&lt;br /&gt;
&lt;br /&gt;
I&#039;ve replaced the forwarding URL and the advertising words (cause I don&#039;t want to raise interest on spammers pages). I got several similar spam comments the following days all with the same scheme. Using a Cross Site Scripting vulnerability, mostly on pages that might raise trust to forward to a medical selling page.&lt;br /&gt;
&lt;br /&gt;
This is probably a good reason why XSS should be fixed, no matter what attack vectors there are. It can always be used by spammers to use your pages fame / authority to advertise their services. Same goes for redirectors or frame injections. Some where already reported at some public place (for the above see &lt;a href=&quot;http://xssed.com/mirror/34360/&quot;&gt;here&lt;/a&gt;). I&#039;ve re-reported them all, but got just one reply by a webmaster who fixed it. True reality on the internet today, even webmasters of famous public organizations don&#039;t seem to care about internet security.&lt;br /&gt;
&lt;br /&gt;
For the record, the others:&lt;br /&gt;
http://adventisthealth.org/utilities/search.asp?Yider=&amp;lt;script&amp;gt;alert(1)&amp;lt;/script&amp;gt;&lt;br /&gt;
http://www.loc.gov/rr/ElectronicResources/search.php?search_term=&amp;lt;script&amp;gt;alert(1)&amp;lt;/script&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And thanks to &lt;a href=&quot;http://iconfactory.com/&quot;&gt;iconfactory&lt;/a&gt;, they fixed &lt;a href=&quot;http://xssed.com/mirror/8360/&quot;&gt;their XSS&lt;/a&gt;. 
    </content:encoded>

    <pubDate>Thu, 27 Mar 2008 13:15:18 +0100</pubDate>
    <guid isPermaLink="false">http://www.hboeck.de/archives/603-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by/3.0/</creativeCommons:license><category>security</category>
<category>spam</category>
<category>unicef</category>
<category>websecurity</category>
<category>xss</category>

</item>
<item>
    <title>Gedanken zur Onlinedurchsuchung</title>
    <link>http://www.hboeck.de/archives/593-Gedanken-zur-Onlinedurchsuchung.html</link>
            <category>Politics</category>
            <category>Security</category>
    
    <comments>http://www.hboeck.de/archives/593-Gedanken-zur-Onlinedurchsuchung.html#comments</comments>
    <wfw:comment>http://www.hboeck.de/wfwcomment.php?cid=593</wfw:comment>

    <slash:comments>3</slash:comments>
    <wfw:commentRss>http://www.hboeck.de/rss.php?version=2.0&amp;type=comments&amp;cid=593</wfw:commentRss>
    

    <author>nospam@example.com (Hanno Böck)</author>
    <content:encoded>
    Heute früh hat das Bundesverfassungsgericht geurteilt, das ganze so, dass jeder sich ein bißchen als Sieger fühlen darf. Grob lautet das Urteil, dass Onlinedurchsuchungen zwar prinzipiell zulässig sind, aber nur unter extrem eingeschränkten Bedingungen und mit Richtervorbehalt. Letzterer wird leider allzu oft als Allheilmittel gegen Mißbrauch gesehen, was sich dummerweise mit der Realität äußerst selten deckt.&lt;br /&gt;
&lt;br /&gt;
Das Problem, was ich bei Diskussionen über die sogenannte »Onlinedurchsuchung« erlebe, ist, dass meine Hauptbedenken erst da anfangen, wo das technische Verständnis der meisten anderen (insbesondere auch der entscheidenden Politiker) längst aufgehört hat. Ich gebe mich heute dem Versuch hin, selbige Bedenken auszuformulieren, ohne alle Nicht-Techies abzuhängen.&lt;br /&gt;
&lt;br /&gt;
Zunächst mal muss man ungefähr begrifflich fassen, was »Onlinedurchsuchung« sein soll. Im Regelfall meint man damit, dass in ein fremdes Computersystem eingedrungen werden soll und dort Daten geholt oder manipuliert werden (Detailunterscheidungen in Datenbeschlagnahmung, Quellen-TKÜ o.ä. unterlasse ich jetzt mal). Nun ist der vielfach herzitierte Vergleich mit der Hausdurchsuchung ein problematischer, weil Computer üblicherweise keine virtuelle »Tür« haben. In der Realwelt wird eine Tür eben eingetreten oder das Schließsystem anderweitig umgangen (ja, es gibt elegantere Wege, die kenn ich auch). Sowas ist jetzt erstmal bei einem Computersystem nicht zwangsweise möglich, weil es nichts gibt, was man im Zweifel mit roher Gewalt (Türe) überwinden kann.&lt;br /&gt;
&lt;br /&gt;
Um dennoch in ein System einzudringen, macht man sich üblicherweise Sicherheitslücken in Systemen zu Nutze. Und hier kommen wir meiner Ansicht nach zum Kern des Problems: Nämlich der Umgang mit dem Wissen über Sicherheitslücken. Im Hacker-Slang unterscheidet man manchmal zwischen Whitehats (»gute« Hacker) und Blackhats (»böse« Hacker). Whitehats sind solche, die ihr erlangtes Wissen über Sicherheitslücken lediglich dazu nutzen, diese zu beheben, indem sie etwa den Hersteller des Systems/der Software informieren und die Lücke anschließend publizieren. Blackhats sind solche, die die Kenntnis über Sicherheitslücken nutzen, um in fremde Systeme einzudringen.&lt;br /&gt;
&lt;br /&gt;
Nun haben wir den etwas ungewohnten Fall, dass der Staat als Blackhat agieren will, sprich Sicherheitslücken NICHT publiziert, weil er sie für Onlinedurchsuchungen nutzen möchte. An diesem Punkt wird auch klar, dass das Thema eben nicht nur für die von einer Durchsuchung Betroffenen relevant ist, sondern für praktisch jeden. Woher der Staat diese Informationen bekommt, wäre eine eigene spannende Frage.&lt;br /&gt;
&lt;br /&gt;
Nun ergeben sich daraus einige interessante Folgefragen. Ab und an kommt es ja vor, dass ein Computervirus mal eben das halbe Wirtschaftsleben lahmlegt (vor nicht allzu langer Zeit wurde ein Großteil der Rechner der Deutschen Post befallen). Bei zukünftigen derartigen Fällen wird man, nicht zu Unrecht, die Frage stellen, ob ein solcher Vorfall möglicherweise hätte verhindert werden können, hätte der Staat sein Wissen über Sicherheitsprobleme mit dem Rest der Menschheit geteilt. Was das für eventuelle Schadensersatzansprüche bedeutet, damit mag sich ein ambitionierter Jurist vielleicht einmal beschäftigen.&lt;br /&gt;
&lt;br /&gt;
Ein weiterer, möglicherweise durchaus nicht unspannender Aspekt, der sich auftut: Der Staat begibt sich hier auf ein Gebiet, auf dem gewisse Regeln nicht unbedingt so gelten wie andernorts. Um oben genanntes Beispiel einer Hausdurchsuchung heranzuziehen, dürfte es in aller Regel so sein, dass ein Staat eine Hausdurchsuchung durchsetzen kann, egal in welcher Form sich die Hausinsassen wehren, aus dem simplen Grund, dass der Staat ein übermächtiges Repertoire an Gewaltmitteln zur Verfügung hat (zumindest gilt derartiges für westeuropäische Industrieländer).&lt;br /&gt;
Nun begibt sich der Staat in Außeinandersetzungen, wo dieser Vorteil plötzlich schwindet. Was der Staat hier tut, darauf hat er kein Monopol. »Onlinedurchsuchung«, das kann der Spammer, der Terrorist oder der Feierabendhacker möglicherweise genau so gut. 
    </content:encoded>

    <pubDate>Wed, 27 Feb 2008 23:48:44 +0100</pubDate>
    <guid isPermaLink="false">http://www.hboeck.de/archives/593-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by/3.0/</creativeCommons:license><category>bundestrojaner</category>
<category>bundesverfassungsgericht</category>
<category>onlinedurchsuchung</category>
<category>security</category>
<category>sicherheit</category>
<category>überwachung</category>

</item>

</channel>
</rss>