<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet href="/templates/default/atom.css" type="text/css" ?>

<feed 
   xmlns="http://www.w3.org/2005/Atom"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/">
    <link href="http://www.christopher-kunz.de/feeds/atom.xml" rel="self" title="Christopher Kunz" type="application/atom+xml" />
    <link href="http://www.christopher-kunz.de/"                        rel="alternate"    title="Christopher Kunz" type="text/html" />
    <link href="http://www.christopher-kunz.de/rss.php?version=2.0"     rel="alternate"    title="Christopher Kunz" type="application/rss+xml" />
    <title type="html">Christopher Kunz</title>
    <subtitle type="html">Just my € 0.02</subtitle>
    <icon>http://www.christopher-kunz.de/templates/default/img/s9y_banner_small.png</icon>
    <id>http://www.christopher-kunz.de/</id>
    <updated>2010-08-30T13:19:12Z</updated>
    <generator uri="http://www.s9y.org/" version="1.4.1">Serendipity 1.4.1 - http://www.s9y.org/</generator>
    <dc:language>en</dc:language>

    <entry>
        <link href="http://www.christopher-kunz.de/archives/255-How-to-NOT-solve-the-DBIR-2010-cover-challenge.html" rel="alternate" title="How to NOT solve the DBIR 2010 cover challenge" />
        <author>
            <name>Christopher Kunz</name>
                    </author>
    
        <published>2010-08-26T21:51:25Z</published>
        <updated>2010-08-30T13:19:12Z</updated>
        <wfw:comment>http://www.christopher-kunz.de/wfwcomment.php?cid=255</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.christopher-kunz.de/rss.php?version=atom1.0&amp;type=comments&amp;cid=255</wfw:commentRss>
    
            <category scheme="http://www.christopher-kunz.de/categories/1-Rants" label="Rants" term="Rants" />
    
        <id>http://www.christopher-kunz.de/archives/255-guid.html</id>
        <title type="html">How to NOT solve the DBIR 2010 cover challenge</title>
        <content type="xhtml" xml:base="http://www.christopher-kunz.de/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <p>EDIT: Number two in the ranking, Jan, shares how he approached the challenge in a <a href="http://www.dcsec.uni-hannover.de/dbir.html">posting on the DCSec website</a>. Also, Michael Oglesby, winner of the first place, has blogged about <a href="http://www.truedigitalsecurity.com/blog/2010/08/26/solving-verizon-dbir-2010-cover-challenge/">his way to the solution</a>.<br /></p> <br />
<p> In a <a href="http://www.christopher-kunz.de/archives/253-The-DBIR-2010-challenge-so-far.html">previous blog post</a>, I had written about a couple of ideas for the DBIR cover challenge. Jan (a colleague from the DCSEC group of University of Hanover) and me finally solved the challenge today and I found out <strong>I HAD THE CORRECT SOLUTION FOR OVER A WEEK!</strong> <br /></p> <br />
<p>Unfortunately, my methodology seems to have been flawed. <br /></p> <br />
<p>There were <a href="http://www.zdnet.com/blog/security/psst-psst-a-clue-to-verizon-data-breach-report-challenge/7115">a</a> <a href="http://www.zdnet.com/blog/security/verizon-dbir-challenge-clue-2/7148">couple</a> <a href="http://www.zdnet.com/blog/security/verizon-dbir-challenge-clue-3/7174">of</a> <a href="http://www.zdnet.com/blog/security/verizon-dbir-challenge-clue-4/7231">hints</a> for the challenge&#160; (much to the organizers&#8217; <a href="http://securityblog.verizonbusiness.com/2010/08/11/dbir-cover-challenge-clues/">mock dismay</a>), all pointing in the same direction:</p> <br />
<ul> <br />
<li>All we need is there in print (FINGERprint! First page!)</li> <br />
<li>The F+ is something that looks important at first... a false positive</li> <br />
<li> Put it together and google!<br /></li> <br />
</ul> <br />
<p> Shortly after the F+ hint came out, we already found the notion of the solution being something about the probability of a false positive and combed the report from end to end for anything even remotely resembling a false positive, an error in methodology, an unsolvable case or whatever. Nothing.</p> <br />
<p>Then we thought, hey, wait... A false positive regarding a fingerprint? That might have to do with detection and those circles look like minutiae, too. So, are we looking for fingerprint detection rates? A quick google found us a Wikipedia article stating that the error rate is 1 in 64 billion. </p> <br />
<p>I tried this passphrase and it didn&#8217;t work. So we abandoned that train of thought until yesterday and today, the hints got more and more urgent. It was not after Jan solved the riddle today that I re-examined my methodology and found out that I had been using a broken tool.</p> <br />
<p>I, being somewhat PHP-centric, had written a script that used the PHP-OpenSSL extension (from what I know, a fairly straightforward OpenSSL API implementation), took a pass phrase candidate and put decryptions into text files. It iterated through every cipher in PHP-OpenSSL&#8217;s list and took string reversal, concatenation, uppercase, lowercase, mixed case and a couple other combinations into account. It could also take word lists and combine them to 1 to 4 word pass phrases. </p> <br />
<p>I thought it was neat. But it doesn&#8217;t decrypt properly. Feeding it the base64 encoded ciphertext, the correct passphrase and the correct algorithm yields this result:</p> <br />
<pre>absynth@irc:~/public_html/breach$ php -r &#8216;var_dump( <br />
openssl_decrypt(<br />
   file_get_contents(&#8220;./base64.txt&#8221;), <br />
   &#8220;aes-256-cbc&#8221;, <br />
   &#8220;1in64billion&#8221;));&#8217;</pre> <br />
<pre>bool(false)</pre> <br />
<p>Huh? This should work, shouldn&#8217;t it? It doesn&#8217;t work with AES-256-CBC (in caps, both are in openssl&#8217;s cipher list) either. </p> <br />
<p>The bash equivalent works (with an iteration over all ciphers):</p> <br />
<pre>for i in `cat ciphers.txt`; <br />
do<br />
 openssl enc -in base64.txt -base64 -d -k 1in64billion $i&#160; -out candidates/dec$i.txt;<br />
done</pre> <br />
<p><br />
This gives us this result: </p> <br />
<pre>absynth@irc:~/public_html/breach$ cat candidates/dec-aes-256-cbc.txt <br />
Congratulations! You&#8217;ve solved the 2010 DBIR Cover Challenge. If you happen<br />
to be the among the first three people to see this message and email us the<br />
correct answer to the question below, you will receive a prize.<br />
<br />
Who calculated the probability of a false positive in using fingerprint<br />
analysis for identification?<br />
<br />
Email your answer to dbir@lists.verizonbusiness.com.<br />
<br />
</pre> <br />
<p>It&#8217;s annoying: I sat on the solution for over a week and I didn&#8217;t once doubt my methodology.&#160;</p> <br />
<p>So, this event teaches us two things:</p> <br />
<ol> <br />
<li> Don&#8217;t use PHP for security purposes <img src="http://www.christopher-kunz.de/templates/default/img/emoticons/tongue.png" alt=":-P" style="display: inline; vertical-align: bottom;" class="emoticon" /> (Duh, I <a href="http://www.php-security.net">should have known</a>)<br /></li> <br />
<li>Always triple-check your methodology.</li> <br />
</ol> <br />
<p>However, it was great fun, from the start through the &#8220;I&#8217;m stumped&#8221; periods, anxiously awaiting&#160; new hints and leads on Twitter, up to the weak attempt to drown everything in alcohol (that gave all participants a HUGE hangover). </p> <br />
<p>And, as Jan stated in his Twitter feed, the challenge was an awesome bait by the Verizon guys - I have rarely read a publication as thoroughly as this one. </p> <br />
<p>We achieved and turned our solutions in independently today, since I was at home (supposed to be working on my PhD thesis) and he was at work. We turned out <a href="http://securityblog.verizonbusiness.com/2010/08/26/dbir-cover-challenge-solved/">second and third</a>; the first place had gone to <a href="http://www.truedigitalsecurity.com/blog/2010/08/26/solving-verizon-dbir-2010-cover-challenge/">Michael Oglesby</a> on saturday.</p> <br />
<p>Thanks to all at DCSEC, to Ryan at ZDNet and the folks at Verizon. See you on Twitter <img src="http://www.christopher-kunz.de/templates/default/img/emoticons/wink.png" alt=";-)" style="display: inline; vertical-align: bottom;" class="emoticon" /><br /></p> 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.christopher-kunz.de/archives/256-Revierphone-Contest.html" rel="alternate" title="Revierphone Contest" />
        <author>
            <name>Christopher Kunz</name>
                    </author>
    
        <published>2010-08-27T18:32:45Z</published>
        <updated>2010-08-27T18:32:45Z</updated>
        <wfw:comment>http://www.christopher-kunz.de/wfwcomment.php?cid=256</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.christopher-kunz.de/rss.php?version=atom1.0&amp;type=comments&amp;cid=256</wfw:commentRss>
    
    
        <id>http://www.christopher-kunz.de/archives/256-guid.html</id>
        <title type="html">Revierphone Contest</title>
        <content type="xhtml" xml:base="http://www.christopher-kunz.de/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                Der neue SEO-Contest ging gerade online und diesmal wird für den Erstplatzierten ein iPhone 4 ausgelobt - unter dem ruhrpott-patriotischen Namen &#8220;<a href="http://www.revier-phone.de/">reVierphone</a>&#8221;. Und was soll ich sagen - ich mache mal mit. Nur aus Spaß an der Freud&#8217;. <img src="http://www.christopher-kunz.de/templates/default/img/emoticons/smile.png" alt=":-)" style="display: inline; vertical-align: bottom;" class="emoticon" /><br /> 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.christopher-kunz.de/archives/254-Wrapup-Mai-August.html" rel="alternate" title="Wrapup Mai - August" />
        <author>
            <name>Christopher Kunz</name>
                    </author>
    
        <published>2010-08-14T15:16:57Z</published>
        <updated>2010-08-14T15:36:30Z</updated>
        <wfw:comment>http://www.christopher-kunz.de/wfwcomment.php?cid=254</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.christopher-kunz.de/rss.php?version=atom1.0&amp;type=comments&amp;cid=254</wfw:commentRss>
    
    
        <id>http://www.christopher-kunz.de/archives/254-guid.html</id>
        <title type="html">Wrapup Mai - August</title>
        <content type="xhtml" xml:base="http://www.christopher-kunz.de/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                Seit langer Zeit habe ich nichts mehr hier verlauten lassen und das möchte ich nun nachholen. Seit Mai hat sich eigentlich gar nicht so viel ereignet, aber ein paar Sachen möchte ich doch&#160; noch aufschreiben, bevor ich sie wieder vergesse.<br /> <br />
<h2>China </h2>Ende Juni war ich für eine Woche in China, um mein Paper &#8220;<a href="http://ieeexplore.ieee.org/search/freesrchabstract.jsp?tp=&amp;arnumber=5541857&amp;queryText%3DChristopher+Kunz%26openedRefinements%3D*%26searchField%3DSearch+All">An attack-resilient Grid auditing infrastructure</a>&#8221; auf der Konferenz IEEE WCNIS zu präsentieren. Die Konferenz war eigentlich eher auf drahtlose Netzwerke fokussiert, es ergaben sich aber trotzdem einige interessante Kontakte und der eine oder andere Vortrag war auch spannend. Allerdings war auch einiges an Mist dabei - besonders drollig fand ich das Paper, das einen Covert Channel in ARP requests vorstellte. Nutzdatenrate: 4 Byte pro Sekunde oder so. Wer denkt sich sowas aus?<br />Natürlich war auch etwas Zeit, um mir Stadt (Peking), Land und Leute anzusehen und einige fotografische Eindrücke zu sammeln. Die Fotos habe ich in meine <a href="http://gallery.christopher-kunz.de/v/messen/IEEE-WCNIS-2010/">Galerie zur IEEE WCNIS 2010</a> hochgeladen. <br /> <br />
<h2>Neue Büros</h2>Anfang Juli hat die <a href="http://www.filoo.de/">Filoo GmbH</a> nach fast 10 Jahren der bürolosen Geschäftstätigkeit (virtuelle Firma for the Win) endlich wieder eigene Büros in Gütersloh bezogen, ironischerweise in der Moltkestraße 25, die wir bereits vor 10 Jahren als <strong>.networking in etwas anderer Besetzung bewohnt haben. Einen der damaligen Mitgründer von </strong>.networking, Wolfgang Hein, habe ich letzte Woche bei einem Poetry Slam (übrigens mein erster, danke nochmal an Julia für den Tip! War echt interessant) wieder getroffen - man verliert sich ja trotz Internet doch etwas aus den Augen. Ein paar Fotos von der <a href="http://twitpic.com/2buogr">Außenansicht </a>und der <a href="http://twitpic.com/2buogw">Büroeinrichtung </a>findet man auf der <a href="http://twitter.com/filoogmbh">Filoo-Twitterseite</a> (Folgen!). <br />Übrigens: Wir haben noch schöne Büros im Erdgeschoß zu vermieten - ein Großraumbüro mit Durchgangsbüro und einem &#8220;Chefbüro&#8221;. Die Lage ist wirklich prima (5min in die Fußgängerzone, 10min zu Fuß zum Hbf, eigene Parkplätze), die Büros sind frisch renoviert, mit Cat6 ausgestattet und DSL gibt&#8217;s auch.<br /> <br />
<h2>Bückeburg</h2>Später im Juli war dann mal wieder Zeit, die Mittelaltermarktsaison zu eröffnen; diesmal war Bückeburg der erste Markt für mich, weil ich überhaupt keinen Nerv hatte, allein nach Rastede zu fahren. Und was für ein Markt es war! Das erste Wochenende schockte mit Höchsttemperaturen von 38°C nicht nur das Marktvolk, sondern auch die Besucher. Die entschieden sich dann nämlich, lieber im kühlen Haus das &#8220;kleine Finale&#8221; und das WM-finale zu schauen, als sich im Schweiße ihres Angesichts über die staubigen MPS-Wiesen zu schleppen. Dementsprechend war das erste Marktwochenende eher leer und Motivation wollte nicht so recht aufkommen. Wären die Gartenduschen und Rasensprenger, die der Veranstalter auf dem gesamten Gelände aufgestellt hatte, nicht gewesen, wären Teilnehmer wie Gäste reihenweise aus den Latschen gekippt. <br />Am zweiten Wochenende war&#8217;s kühler - und wie aufs Kommando kamen die Besuchermassen aus dem Keller gekrochen. Trotzdem kam bei mir wenig Stimmung auf; das mag auch mit den tragischen Ereignissen in unserer Gruppe zusammenhängen. Dieses Jahr steht nur noch öjendorf (erstes Septemberwochenende) auf meinem Festivalkalender, danach werde ich mir gründlich überlegen, ob ich weiter Märkte bereise.<br /> <br />
<h2>Arts of Mars Championship</h2>Richtig Stimmung kam dafür auf den Arts of Mars Championships auf, die Ende Juli in Apelern stattfanden. Von Sonntag bis Mittwoch gabs Seminare zu Schwertkampf (Schwert und Schild, Anderthalbhänder, Dussack, Langes Messer etc.), bis ich das Schwert buchstäblich nicht mehr fassen konnte. Sehr spannend! Auch die Seminare zu Ringen und Dolchkampf waren durchgehend auf hohem Niveau und sportlich wie technisch anspruchsvoll. Leider blieben die Besucherzahlen hinter den Erwartungen zurück und einige Trainer haben recht kurzfristig abgesagt - aber man kann ja nicht alles haben.<br /><br />Mehr fällt mir momentan nicht ein - wer auf dem Laufenden bleiben will, sollte mir auf jeden Fall auf Twitter folgen (<a href="http://twitter.com/christopherkunz">christopherkunz</a>). Ich spiele jetzt noch eine Runde Starcraft 2.<br /><br /> 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.christopher-kunz.de/archives/253-The-DBIR-2010-challenge-so-far.html" rel="alternate" title="The DBIR 2010 challenge so far" />
        <author>
            <name>Christopher Kunz</name>
                    </author>
    
        <published>2010-08-11T19:23:00Z</published>
        <updated>2010-08-11T20:00:29Z</updated>
        <wfw:comment>http://www.christopher-kunz.de/wfwcomment.php?cid=253</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.christopher-kunz.de/rss.php?version=atom1.0&amp;type=comments&amp;cid=253</wfw:commentRss>
    
    
        <id>http://www.christopher-kunz.de/archives/253-guid.html</id>
        <title type="html">The DBIR 2010 challenge so far</title>
        <content type="xhtml" xml:base="http://www.christopher-kunz.de/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <p>OK, we all know the drill (after 3 Firefox crashes I cba to write up everything again). There&#8217;s a crypto challenge in DBIR 2010. This is what I know (or think to know) so far:</p> <br />
<ol> <br />
<li>&#160;There&#8217;s crypto data on the last page. It&#8217;s Base64 encoded OpenSSL encrypted (&#8220;Salted__&#8221;) something. No visible block delimiters, no obvious magic numbers... No idea which algorithm it might be. It&#8217;s 400 Bytes of data, minus 8 Bytes for the &#8220;Salted__&#8221; prefix, minus 8 Bytes for the actual salt = 384 Bytes.<br />That means: 12 blocks with 32 Bytes each, or 6 blocks with 64 Bytes. <br /></li> <br />
<li>There&#8217;s a nearly invisible JPEG on the first page (a b/w fingerprint picture). Extracting this picture from the PDF and feeding it to stegdetect yields a high-confidence rating for JPHide steganography data in the picture. <br /></li> <br />
<li>stegdetect (but no other JPEG analysis tool I have tried) also complains about an erroneous 10 Bytes between the last JPEG block and the EOF marker (0xFFD9. These bytes are: 0A 7F FA BB AF FC 01 FE B8 AB. They have no meaningful ASCII or Unicode representation. Rotating them around bit by bit through the ASCII table does not yield a word. Feeding them as a passphrase (either binary or ascii) to stegcrack does not succeed.</li> <br />
</ol> <br />
<p>That&#8217;s where I stand now. There&#8217;s <a href="http://angelsofsecurity.com/blog/2010/08/09/secret-code-in-dbir/">others </a>who are also attempting to defeat the challenge, but so far last year&#8217;s challenge seems to have been easier (it was solved in about a day). </p><br />
<p>EDIT: I have fed the dictionary file made out of the report through a steganography tool (for the b/w image). @bachrach has fed it through OpenSSL. It seems that no single word in the report is the passphrase. I also looked for occurances of &#8220;password, passphrase, pass, key&#8221; etc. - no clues. <br /></p> 
            </div>
        </content>
        <dc:subject>ssl</dc:subject>
<dc:subject>tls</dc:subject>

    </entry>
    <entry>
        <link href="http://www.christopher-kunz.de/archives/135-John-Malcom-Single-Malt-Whisky.html" rel="alternate" title="John Malcom Single Malt Whisky" />
        <author>
            <name>Christopher Kunz</name>
                    </author>
    
        <published>2007-05-19T11:58:52Z</published>
        <updated>2010-05-25T16:26:16Z</updated>
        <wfw:comment>http://www.christopher-kunz.de/wfwcomment.php?cid=135</wfw:comment>
    
        <slash:comments>13</slash:comments>
        <wfw:commentRss>http://www.christopher-kunz.de/rss.php?version=atom1.0&amp;type=comments&amp;cid=135</wfw:commentRss>
    
    
        <id>http://www.christopher-kunz.de/archives/135-guid.html</id>
        <title type="html">John Malcom Single Malt Whisky</title>
        <content type="xhtml" xml:base="http://www.christopher-kunz.de/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <div style="width: 30px;" class="serendipity_imageComment_left"><br />
<div class="serendipity_imageComment_img"><a  class="serendipity_image_link"  rel="lightbox" href="http://www.christopher-kunz.de/uploads/john-malcom-flasche.jpg"><!-- s9ymdb:74 --><img width="30" height="110" src="http://www.christopher-kunz.de/uploads/john-malcom-flasche.serendipityThumb.jpg" alt=""  /></a></div><br />
<div class="serendipity_imageComment_txt">John Malcom Single Malt Whisky</div><br />
</div><br />
<p>Ab und an gibt es bei Discountern neben dem üblichen Fusel Marke &#8220;Pennerglück&#8221; auch Whiskies der etwas gehobeneren Sorte. So verkauft Lidl unter der Handelsmarke &#8220;Ben Bracken&#8221; den nicht überragenden, aber ordentlichen Tamnavulin (76 Punkte von Jackson für den zwölfjährigen) und im Penny-Markt gibt es jetzt einen <a href="http://www.vindor.de/Single-Malt-Whisky">Single Malt Whisky</a> namens &#8220;John Malcom&#8221;. Wie für Handelsmarken üblich, zeigt dieser Whisky nicht ein einziges Indiz auf seine wahre Herkunft. Die Merkmale &#8220;Product of Scotland&#8221; und &#8220;Single Malt&#8221;, die m.E. zumindest halbwegs rechtlich geschützt sind, lassen jedoch den Schluß zu, daß da wirklich ein Single Malt drin ist. Für € 12,99 kann man sich das Experiment ruhig mal leisten, daher habe ich mir eine Flasche gekauft. Google findet genau gar nichts zu dieser Marke, daher versuche ich mal selber eine Einordnung.</p><br />
<p>Der Whisky ist laut Etikett 12 Jahre alt und hat exakt 40%. </p> <br /><a href="http://www.christopher-kunz.de/archives/135-John-Malcom-Single-Malt-Whisky.html#extended">Continue reading "John Malcom Single Malt Whisky"</a>
            </div>
        </content>
        <dc:subject>scotch</dc:subject>
<dc:subject>single malt</dc:subject>
<dc:subject>whisky</dc:subject>

    </entry>
    <entry>
        <link href="http://www.christopher-kunz.de/archives/249-Single-Malt-Whisky-Tasting-Ardbeg-Committee-vs.-Serie.html" rel="alternate" title="Single Malt Whisky Tasting - Ardbeg Committee vs. Serie" />
        <author>
            <name>Christopher Kunz</name>
                    </author>
    
        <published>2010-02-01T11:39:53Z</published>
        <updated>2010-05-25T16:24:49Z</updated>
        <wfw:comment>http://www.christopher-kunz.de/wfwcomment.php?cid=249</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.christopher-kunz.de/rss.php?version=atom1.0&amp;type=comments&amp;cid=249</wfw:commentRss>
    
    
        <id>http://www.christopher-kunz.de/archives/249-guid.html</id>
        <title type="html">Single Malt Whisky Tasting - Ardbeg Committee vs. Serie</title>
        <content type="xhtml" xml:base="http://www.christopher-kunz.de/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <p>Ich war also gestern in der <a rel="nofollow" href="http://www.oscarsbar.de/">Oscar&#8217;s Bar</a> in Hannover zum Whisky-Tasting (meinem ersten professionell organisierten übrigens). </p> <br />
<p><a  class="serendipity_image_link"  rel="lightbox" href="http://www.christopher-kunz.de/uploads/whisky-tasting-flaschen.jpg"><!-- s9ymdb:113 --><img width="110" height="83" class="serendipity_image_center" style="border: 0px none; padding-left: 5px; padding-right: 5px;" src="http://www.christopher-kunz.de/uploads/whisky-tasting-flaschen.serendipityThumb.jpg" alt=""  /></a> <a  class="serendipity_image_link"  rel="lightbox" href="http://www.christopher-kunz.de/uploads/whisky-tasting-glaeser.jpg"><!-- s9ymdb:114 --><img width="110" height="83" class="serendipity_image_center" style="border: 0px none; padding-left: 5px; padding-right: 5px;" src="http://www.christopher-kunz.de/uploads/whisky-tasting-glaeser.serendipityThumb.jpg" alt=""  /></a></p> <br />
<p>Das Tasting konzentrierte sich vollständig auf die Islay-Destille <a rel="nofollow" href="http://www.ardbeg.com">Ardbeg</a>, war also ein Vertikaltasting - sehr passend für mich, denn Ardbeg ist einer meiner Lieblingsmalts. Da er sehr, sehr torfig und recht rauchig ist, ist das aber sicher kein Whisky für Jedermann. <br /></p> <br />
<p>Es gab insgesamt 6 feine <a href="http://www.vindor.de/Single-Malt-Whisky">Single Malt Whiskys</a>, allesamt Faßstärke (von 54 bis 59,9Vol.-%):</p> <br />
<ul> <br />
<li>Very Young Committee (1997 - 2003)</li> <br />
<li>Ardbeg Renaissance (1998 - 2008)</li> <br />
<li>Corryvreckan Committee</li> <br />
<li>Corrywreckan Regular</li> <br />
<li>Young Uigeadail Committee 2009</li> <br />
<li>Uigeadail 2008</li> <br />
</ul> <br />
<p>Es war spannend zu schmecken, wie selbst zwei relativ ähnliche Abfüllungen komplett unterschiedlich schmecken können, denn von den 6 Whiskys schmeckte nicht einer wie der andere. Von relativ entspannt (Uigeadail 2008 / Corryvreckan) bis zu sehr, sehr stark (Very Young Committee) war alles dabei.</p> <br />
<p>Das einzige &#8220;Problem&#8221; war, daß 6 Whiskys mit Cask Strength in der Leber und im Kopf doch nach einiger Zeit einen ziemlichen Eindruck hinterlassen - gestern Abend habe ich außer Torf und Rauch nicht mehr viel Anderes geschmeckt... Die Auswahl der Whiskys war aber trotzdem vorzüglich.</p> <br />
<p>Geleitet wurde das Tasting von Ralf Berger (<a rel="nofollow" href="http://www.maltwhiskytastings.de">MaltWhiskyTastings.de</a>)<br /></p> 
            </div>
        </content>
        <dc:subject>hannover</dc:subject>
<dc:subject>single malt</dc:subject>
<dc:subject>whisky</dc:subject>

    </entry>
    <entry>
        <link href="http://www.christopher-kunz.de/archives/252-IP-Umzug-in-den-naechsten-Tagen.html" rel="alternate" title="IP-Umzug in den nächsten Tagen" />
        <author>
            <name>Christopher Kunz</name>
                    </author>
    
        <published>2010-04-21T07:04:40Z</published>
        <updated>2010-04-21T07:04:40Z</updated>
        <wfw:comment>http://www.christopher-kunz.de/wfwcomment.php?cid=252</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://www.christopher-kunz.de/rss.php?version=atom1.0&amp;type=comments&amp;cid=252</wfw:commentRss>
    
    
        <id>http://www.christopher-kunz.de/archives/252-guid.html</id>
        <title type="html">IP-Umzug in den nächsten Tagen</title>
        <content type="xhtml" xml:base="http://www.christopher-kunz.de/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                Der Server, auf dem dieses Blog läuft, wird in den nächsten Tagen seine IP-Adresse wechseln. Leider geht das nicht parallel zu der bestehenden Adresse (weil die Kiste auch in ein anderes VLAN gestopft wird). Daher kann es sein, daß Ihr dieses Blog und meine Galerie in den nächsten Tagen sporadisch nicht erreichen könnt.<br /> 
            </div>
        </content>
        
    </entry>

</feed>