<?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>Der Lanwirt &#187; security</title>
	<atom:link href="http://www.lanwirt.de/tag/security/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lanwirt.de</link>
	<description>manchmal auch wanwirt oder sanwirt</description>
	<lastBuildDate>Thu, 04 Aug 2011 08:51:14 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4-alpha-19854</generator>
		<item>
		<title>C# &#8211; ungültiges SSL-Zertifikat ignorieren</title>
		<link>http://www.lanwirt.de/2007/12/07/c-ungultiges-ssl-zertifikat-ignorieren/</link>
		<comments>http://www.lanwirt.de/2007/12/07/c-ungultiges-ssl-zertifikat-ignorieren/#comments</comments>
		<pubDate>Fri, 07 Dec 2007 14:58:02 +0000</pubDate>
		<dc:creator>Markus</dc:creator>
				<category><![CDATA[Sec]]></category>
		<category><![CDATA[Sharp]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[ssl]]></category>
		<category><![CDATA[tls]]></category>

		<guid isPermaLink="false">http://markus.renschler.net/2007/12/07/c-ungultiges-ssl-zertifikat-ignorieren/</guid>
		<description><![CDATA[Um mal schnell eine SSL/TLS-Datenübertragung zu testen, ist es praktisch, wenn man ein ungültiges SSL-Zertifikat auch mal ignorieren kann. Mit diesem Code hier geht das: using System.Net; ... ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback (IgnoreCertificateErrorHandler); ... private bool IgnoreCertificateErrorHandler (object sender, System.Security.Cryptography.X509Certificates.X509Certificate certificate, System.Security.Cryptography.X509Certificates.X509Chain chain, System.Net.Security.SslPolicyErrors sslPolicyErrors) { return true; } ... Quelle: http://en.csharp-online.net/Invalid_HTTPS_certificate]]></description>
			<content:encoded><![CDATA[<p>Um mal schnell eine SSL/TLS-Datenübertragung zu testen, ist es praktisch, wenn man ein ungültiges SSL-Zertifikat auch mal ignorieren kann. Mit diesem Code hier geht das:</p>
<p><code><br />
using System.Net;<br />
...</p>
<p>   ServicePointManager.ServerCertificateValidationCallback =<br />
      new RemoteCertificateValidationCallback<br />
         (IgnoreCertificateErrorHandler);<br />
...<br />
private bool IgnoreCertificateErrorHandler<br />
   (object sender,<br />
   System.Security.Cryptography.X509Certificates.X509Certificate certificate,<br />
   System.Security.Cryptography.X509Certificates.X509Chain chain,<br />
   System.Net.Security.SslPolicyErrors sslPolicyErrors)<br />
{</p>
<p>   return true;<br />
}<br />
...<br />
</code></p>
<p>Quelle:<br />
<a href="http://en.csharp-online.net/Invalid_HTTPS_certificate">http://en.csharp-online.net/Invalid_HTTPS_certificate</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lanwirt.de/2007/12/07/c-ungultiges-ssl-zertifikat-ignorieren/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE7 does not display Google Maps under W2K3</title>
		<link>http://www.lanwirt.de/2007/11/16/ie7-does-not-display-google-maps-under-w2k3/</link>
		<comments>http://www.lanwirt.de/2007/11/16/ie7-does-not-display-google-maps-under-w2k3/#comments</comments>
		<pubDate>Fri, 16 Nov 2007 15:55:55 +0000</pubDate>
		<dc:creator>Markus</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Win]]></category>
		<category><![CDATA[2003]]></category>
		<category><![CDATA[explorer]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[w2k3]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://markus.renschler.net/2007/11/16/ie7-does-not-display-google-maps-under-w2k3/</guid>
		<description><![CDATA[After I installed Internet Explorer 7 on a Windows Server 2003 machine, Google Maps did not work anymore. The page loaded partly but there maps did not load. After playing around with security zones which did not help anything I discovered that there are special security settings for Internet Explorer which can be disabled easily [...]]]></description>
			<content:encoded><![CDATA[<p>After I installed Internet Explorer 7 on a Windows Server 2003 machine, Google Maps did not work anymore. The page loaded partly but there maps did not load. After playing around with security zones which did not help anything I discovered that there are special security settings for Internet Explorer which can be disabled easily &#8211; if neccessary (believe me, I had a reason):</p>
<ul>
<li>Go to Control Panel</li>
<li>Add or Remove Programs</li>
<li>Add/Remove Windows Components</li>
<li>Disable the entry <strong>Internet Explorer Enhanced Security Configuration</strong></li>
</ul>
<p>Here&#8217;s a screenshot:<br />
<a href='http://markus.renschler.net/wp-content/uploads/2007/11/w2k3-ie7-sec.gif' title='Disable Enhanced Sec for IE7'><img src='http://markus.renschler.net/wp-content/uploads/2007/11/w2k3-ie7-sec.thumbnail.gif' alt='Disable Enhanced Sec for IE7' /></a></p>
<p>After that (re)start IE7 and Google Maps should load.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lanwirt.de/2007/11/16/ie7-does-not-display-google-maps-under-w2k3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

