<?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>Markus Bäker &#187; security</title>
	<atom:link href="http://www.mbaeker.de/tag/security/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mbaeker.de</link>
	<description>Use %~dp0 !!!</description>
	<lastBuildDate>Tue, 31 Jan 2012 10:49:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>SCOM: Notify by ICQ, MSN, Jabber or Facebook</title>
		<link>http://www.mbaeker.de/2011/11/scom-notify-by-icq-msn-jabber-or-facebook/</link>
		<comments>http://www.mbaeker.de/2011/11/scom-notify-by-icq-msn-jabber-or-facebook/#comments</comments>
		<pubDate>Sun, 13 Nov 2011 13:36:18 +0000</pubDate>
		<dc:creator>markus</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Operations Manager]]></category>
		<category><![CDATA[System Center]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[scom]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.mbaeker.de/?p=781</guid>
		<description><![CDATA[On thing I was always missing in System Center Operations Manager (SCOM) was the notification with other instant messaging (IM) protocols than the build in Microsoft Communicator. On friday I had some time to test a solution which I will describe here. On warnung at the beginning: This current solution is experimental. It will run [...]]]></description>
			<content:encoded><![CDATA[<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; float: left; padding-top: 0px; border: 0px;" title="aim" src="http://www.mbaeker.de/wp-content/uploads/2011/11/aim.png" alt="aim" width="84" height="84" align="left" border="0" />On thing I was always missing in System Center Operations Manager (SCOM) was the notification with other instant messaging (IM) protocols than the build in Microsoft Communicator.</p>
<p>On friday I had some time to test a solution which I will describe here.</p>
<p>On warnung at the beginning: This current solution is experimental. It will run a Miranda client in the system context and can be a large security hole for your SCOM server!</p>
<p>The first thing I had to to is finding a client which can be controlled by command line or by a SDK. I stumbled upon the <a href="http://www.eblis.tla.ro/index.php?option=com_content&amp;task=view&amp;id=14&amp;Itemid=26" target="_blank">command line plugin</a> for Miranda IM. Miranda IM is an open source mutli-protocol instant messaging client. With it you can integrate multiple protocols with plugins.</p>
<p><span id="more-781"></span></p>
<p>I created a test ICQ account and a surrounding batch file for miranda:</p>
<pre class="brush: plain; title: ; notranslate">
setlocal

set log=&quot;c:\logging.log&quot;
echo. &gt;&gt; %log%
echo starting %date% %time% &gt;&gt; %log%

rem läuft miranda schon?
tasklist | findstr /i miranda32.exe
if %errorlevel%.==0. goto laeuft
echo Starte Miranda im System Kontext &gt;&gt; %log%
start &quot;&quot; &quot;%~dp0miranda32.exe&quot;
echo 10 sec warten...
ping -w 1000 -n 10 128.0.0.1
goto weiter

:laeuft
echo Miranda laeuft schon  &gt;&gt; %log%

:weiter
echo mimcmd message %~1 &quot;%~2&quot; &gt;&gt; %log%
mimcmd message %~1 &quot;%~2&quot;&gt;&gt; %log%
endlocal
</pre>
<p>First it checks if miranda is already running. The command Tasklist is only available in Windows 2008 and later. If it isn’t running it will be startet (has to be in the same directory as the batch file) and the batch waits for 10 seconds. After that it will use the mimcmd command the send the message.</p>
<p>The batch file takes two parameter: 1. the target of the im (can be more than one) 2. The message to send.</p>
<p>To use this batch file you have to create a Command Notification Channel in SCOM:</p>
<p><a href="http://www.mbaeker.de/wp-content/uploads/2011/11/notificationChannel1.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="notificationChannel1" src="http://www.mbaeker.de/wp-content/uploads/2011/11/notificationChannel1_thumb.png" alt="notificationChannel1" width="345" height="304" border="0" /></a></p>
<p>And here the interesting command line call:</p>
<p><a href="http://www.mbaeker.de/wp-content/uploads/2011/11/notificationChannel2.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="notificationChannel2" src="http://www.mbaeker.de/wp-content/uploads/2011/11/notificationChannel2_thumb.png" alt="notificationChannel2" width="352" height="310" border="0" /></a></p>
<p>I have used only one target. You can define more then one target by surounding the second parameter (everything between 5 and 49) with qoutes like this: “ICQNumber1 ICQNumber2” or if you want to specify the protocol: “ICQNumber1:ICQ MSNAlias:MSN”. For details look into the readme of the command line plugin.</p>
<p>For sending something to this channel you have to create a subscriber:</p>
<p><a href="http://www.mbaeker.de/wp-content/uploads/2011/11/subscriber.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="subscriber" src="http://www.mbaeker.de/wp-content/uploads/2011/11/subscriber_thumb.png" alt="subscriber" width="354" height="312" border="0" /></a></p>
<p>And after that you create a normal subscription with the channel and the subscriber.</p>
<p>If everything worded correctly you will see after the first alert in the process list (task manager):</p>
<p><a href="http://www.mbaeker.de/wp-content/uploads/2011/11/taskmgr.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="taskmgr" src="http://www.mbaeker.de/wp-content/uploads/2011/11/taskmgr_thumb.png" alt="taskmgr" width="446" height="223" border="0" /></a></p>
<p>a miranda process in the system context. And in you IM client:</p>
<p><a href="http://www.mbaeker.de/wp-content/uploads/2011/11/im.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="im" src="http://www.mbaeker.de/wp-content/uploads/2011/11/im_thumb.png" alt="im" width="463" height="146" border="0" /></a></p>
<p>To increase the security you should deactivate and delete all plugins that aren’t necessary. Here is my plugin list:</p>
<p><a href="http://www.mbaeker.de/wp-content/uploads/2011/11/plugins.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="plugins" src="http://www.mbaeker.de/wp-content/uploads/2011/11/plugins_thumb.png" alt="plugins" width="222" height="314" border="0" /></a></p>
<p>Outlook:</p>
<p>I will try to start the miranda process with lower privileges but still in the system context.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mbaeker.de/2011/11/scom-notify-by-icq-msn-jabber-or-facebook/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SCCM und Forefront Client 2010: Definitionsupdates</title>
		<link>http://www.mbaeker.de/2011/07/sccm-und-forefront-client-2010-definitionsupdates/</link>
		<comments>http://www.mbaeker.de/2011/07/sccm-und-forefront-client-2010-definitionsupdates/#comments</comments>
		<pubDate>Mon, 18 Jul 2011 16:34:09 +0000</pubDate>
		<dc:creator>markus</dc:creator>
				<category><![CDATA[Configuration Manager]]></category>
		<category><![CDATA[Deutsch]]></category>
		<category><![CDATA[Forefront]]></category>
		<category><![CDATA[HAL]]></category>
		<category><![CDATA[SCCM]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://www.mbaeker.de/?p=615</guid>
		<description><![CDATA[Eine häufig bemängelte Einschränkung des SCCM 2007 ist es, dass die darin enthaltene Updateverteilung keine Updates automatisch freigeben kann. In größeren Umgebungen ist dies im Allgemeinen auch nicht wünschenswert, da neue Microsoft Updates zuerst getestet und dann erst verteilt werden sollten. Bei Antivirendefinitionen macht ein solches Vorgehen keinen Sinn. Tests gegen alte und neue Viren [...]]]></description>
			<content:encoded><![CDATA[<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; float: left; padding-top: 0px; border: 0px;" title="clasp" src="http://www.mbaeker.de/wp-content/uploads/2011/07/clasp.png" alt="clasp" width="48" height="48" align="left" border="0" />Eine häufig bemängelte Einschränkung des SCCM 2007 ist es, dass die darin enthaltene Updateverteilung keine Updates automatisch freigeben kann. In größeren Umgebungen ist dies im Allgemeinen auch nicht wünschenswert, da neue Microsoft Updates zuerst getestet und dann erst verteilt werden sollten.</p>
<p>Bei Antivirendefinitionen macht ein solches Vorgehen keinen Sinn. Tests gegen alte und neue Viren oder gegen bestimmte Clients, um False-Positives zu erkennen kann man ein paar Mal machen, sobald Updates mehrfach am Tag kommen ist dies nicht mehr sinnvoll.</p>
<p>Forefront Client Security 2010 integriert sich so tief in den SCCM, dass auch für die Definitionsverteilung der SCCM genutzt werden kann. Hat dieser keine aktuellen Definitionen, so kann der Client auf eine Freigabe (UNC-Pfad), einen WSUS oder Microsoft Updates ausweichen. Als WSUS wird natürlich der auf dem Client hinterlegte verwendet, der bei einem SCCM Client immer der vom Server gemanagte WSUS sein muss.</p>
<p>Daher wäre es wünschenswert, wenn dieser die Definitionsupdates automatisch freigibt. Generell ist es nicht empfehlenswert in einen vom SCCM verwalteten WSUS einzugreifen. In diesem Szenario ist es die einzige sinnvolle Lösung.</p>
<p>Um das (von mir ebenfalls schon umgesetzte) Verfahren nicht erneut beschreiben zu müssen, verlinke ich einfach auf den nachfolgenden Blog Post:</p>
<p><a title="http://www.lumagate.se/news.asp?r_id=35551" href="http://www.lumagate.se/news.asp?r_id=35551" target="_blank">Approve updates for Forefront Endpoint Protection 2010</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mbaeker.de/2011/07/sccm-und-forefront-client-2010-definitionsupdates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SCOM: Neue Management Packs Mai 2011</title>
		<link>http://www.mbaeker.de/2011/06/scom-neue-management-packs-mai-2011/</link>
		<comments>http://www.mbaeker.de/2011/06/scom-neue-management-packs-mai-2011/#comments</comments>
		<pubDate>Sun, 05 Jun 2011 10:41:38 +0000</pubDate>
		<dc:creator>markus</dc:creator>
				<category><![CDATA[Deutsch]]></category>
		<category><![CDATA[Operations Manager]]></category>
		<category><![CDATA[System Center]]></category>
		<category><![CDATA[Core]]></category>
		<category><![CDATA[HP]]></category>
		<category><![CDATA[SC Software Updates]]></category>
		<category><![CDATA[scom]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.mbaeker.de/?p=482</guid>
		<description><![CDATA[Neue Management Packs im Zeitraum zwischen 01.05.2011 und 31.05.2011 Aktualisiert wurde das SQL Server Management Pack mit: SQL Server Management Pack version 6.1.400.00 includes the following changes: Documented association of Run As profiles and targets for account mapping. Made minor fixes in string resources. Made security improvements. Hier die direkten Downloadlinks: (Die Word-Dokumente mit den [...]]]></description>
			<content:encoded><![CDATA[<p>Neue Management Packs im Zeitraum zwischen 01.05.2011 und 31.05.2011</p>
<p>Aktualisiert wurde das SQL Server Management Pack mit:</p>
<p>SQL Server Management Pack version 6.1.400.00 includes the following changes:</p>
<ul>
<li>Documented 	association of Run As profiles and targets for account mapping.<span style="font-family: Symbol,serif;"> </span></li>
<li>Made 	minor fixes in string resources.<span style="font-family: Symbol,serif;"> </span></li>
<li>Made 	security improvements.</li>
</ul>
<p>Hier die direkten Downloadlinks: (Die Word-Dokumente mit den Beschreibungen sind ganz am Ende der Liste)</p>
<p><span id="more-482"></span></p>
<ul>
<li><a href="http://download.microsoft.com/download/E/9/A/E9AE974B-F77B-4965-84EF-7158CDBBFC4E/Microsoft.SQLServer.2005.Discovery.ITA.mp" target="_blank">Language Pack di SQL Server 2005 (Individuazione) 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/E/9/A/E9AE974B-F77B-4965-84EF-7158CDBBFC4E/Microsoft.SQLServer.2005.Monitoring.ITA.mp" target="_blank">Language Pack di SQL Server 2005 (Monitoraggio) 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/E/9/A/E9AE974B-F77B-4965-84EF-7158CDBBFC4E/Microsoft.SQLServer.2008.Discovery.ITA.mp" target="_blank">Language Pack di SQL Server 2008 (Individuazione) 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/E/9/A/E9AE974B-F77B-4965-84EF-7158CDBBFC4E/Microsoft.SQLServer.2008.Monitoring.ITA.mp" target="_blank">Language Pack di SQL Server 2008 (Monitoraggio) 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/E/9/A/E9AE974B-F77B-4965-84EF-7158CDBBFC4E/Microsoft.SQLServer.Library.ITA.mp" target="_blank">Language Pack di SQL Server 2008 Core Library 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/5/A/7/5A769F36-E27A-4E42-9E34-B1486153906A/Microsoft.SQLServer.2005.Discovery.FRA.mp" target="_blank">Module linguistique pour SQL Server 2005 (Discovery) 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/5/A/7/5A769F36-E27A-4E42-9E34-B1486153906A/Microsoft.SQLServer.2005.Monitoring.FRA.mp" target="_blank">Module linguistique pour SQL Server 2005 (Monitoring) 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/5/A/7/5A769F36-E27A-4E42-9E34-B1486153906A/Microsoft.SQLServer.2008.Discovery.FRA.mp" target="_blank">Module linguistique pour SQL Server 2008 (Discovery) 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/5/A/7/5A769F36-E27A-4E42-9E34-B1486153906A/Microsoft.SQLServer.2008.Monitoring.FRA.mp" target="_blank">Module linguistique pour SQL Server 2008 (Monitoring) 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/5/A/7/5A769F36-E27A-4E42-9E34-B1486153906A/Microsoft.SQLServer.Library.FRA.mp" target="_blank">Module linguistique SQL Server Core Library 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/D/B/A/DBACFC22-B293-454B-B984-849E1EC666D3/Microsoft.SQLServer.Library.ESN.mp" target="_blank">Módulo de idioma de la biblioteca principal de SQL Server 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/D/D/4/DD4AD044-AD54-4AA7-AA24-6CA5DCE87419/Microsoft.SQLServer.2005.Discovery.PTB.mp" target="_blank">Pacote de Idiomas (de Descoberta) do SQL Server 2005 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/D/D/4/DD4AD044-AD54-4AA7-AA24-6CA5DCE87419/Microsoft.SQLServer.2008.Discovery.PTB.mp" target="_blank">Pacote de Idiomas (de Descoberta) do SQL Server 2008 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/D/D/4/DD4AD044-AD54-4AA7-AA24-6CA5DCE87419/Microsoft.SQLServer.2005.Monitoring.PTB.mp" target="_blank">Pacote de Idiomas (de Monitoramento) do SQL Server 2005 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/D/D/4/DD4AD044-AD54-4AA7-AA24-6CA5DCE87419/Microsoft.SQLServer.2008.Monitoring.PTB.mp" target="_blank">Pacote de Idiomas (de Monitoramento) do SQL Server 2008 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/D/D/4/DD4AD044-AD54-4AA7-AA24-6CA5DCE87419/Microsoft.SQLServer.Library.PTB.mp" target="_blank">Pacote de Idiomas da Biblioteca Principal do SQL Server 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/D/B/A/DBACFC22-B293-454B-B984-849E1EC666D3/Microsoft.SQLServer.2005.Discovery.ESN.mp" target="_blank">Paquete de idioma de SQL Server 2005 (detección) 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/D/B/A/DBACFC22-B293-454B-B984-849E1EC666D3/Microsoft.SQLServer.2005.Monitoring.ESN.mp" target="_blank">Paquete de idioma de SQL Server 2005 (supervisión) 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/D/B/A/DBACFC22-B293-454B-B984-849E1EC666D3/Microsoft.SQLServer.2008.Discovery.ESN.mp" target="_blank">Paquete de idioma de SQL Server 2008 (detección) 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/D/B/A/DBACFC22-B293-454B-B984-849E1EC666D3/Microsoft.SQLServer.2008.Monitoring.ESN.mp" target="_blank">Paquete de idioma de SQL Server 2008 (supervisión) 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/0/7/7/07714012-3B7C-4691-9F2B-7ADE4188E552/Microsoft.SQLServer.2005.Discovery.mp" target="_blank">SQL Server 2005 (Discovery) 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/F/0/3/F031677F-9DAA-4029-9E0D-E666216986BD/Microsoft.SQLServer.2005.Discovery.DEU.mp" target="_blank">SQL Server 2005 (Discovery)-Sprachpaket 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/0/7/7/07714012-3B7C-4691-9F2B-7ADE4188E552/Microsoft.SQLServer.2005.Monitoring.mp" target="_blank">SQL Server 2005 (Monitoring) 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/F/0/3/F031677F-9DAA-4029-9E0D-E666216986BD/Microsoft.SQLServer.2005.Monitoring.DEU.mp" target="_blank">SQL Server 2005 (Monitoring)-Sprachpaket 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/A/9/D/A9D807D2-287E-4900-AC92-564B3241E2B3/Microsoft.SQLServer.2005.Discovery.CHS.mp" target="_blank">SQL Server 2005 (??)??? 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/A/0/2/A027777E-0168-4818-BD51-04AB97C9CA02/Microsoft.SQLServer.2005.Discovery.CHT.mp" target="_blank">SQL Server 2005 (??) ???? 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/4/C/3/4C335BF9-CB8D-4183-AC3A-F3A1BD288277/Microsoft.SQLServer.2005.Discovery.JPN.mp" target="_blank">SQL Server 2005 (??) ????? 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/A/9/D/A9D807D2-287E-4900-AC92-564B3241E2B3/Microsoft.SQLServer.2005.Monitoring.CHS.mp" target="_blank">SQL Server 2005 (??)??? 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/4/C/3/4C335BF9-CB8D-4183-AC3A-F3A1BD288277/Microsoft.SQLServer.2005.Monitoring.JPN.mp" target="_blank">SQL Server 2005 (??) ????? 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/A/0/2/A027777E-0168-4818-BD51-04AB97C9CA02/Microsoft.SQLServer.2005.Monitoring.CHT.mp" target="_blank">SQL Server 2005 (??) ???? 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/6/0/E/60EB4BA0-EE86-418C-86C3-41BCD677EBB6/Microsoft.SQLServer.2005.Discovery.KOR.mp" target="_blank">SQL Server 2005(??) ?? ? 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/6/0/E/60EB4BA0-EE86-418C-86C3-41BCD677EBB6/Microsoft.SQLServer.2005.Monitoring.KOR.mp" target="_blank">SQL Server 2005(????) ?? ? 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/0/7/7/07714012-3B7C-4691-9F2B-7ADE4188E552/Microsoft.SQLServer.2008.Discovery.mp" target="_blank">SQL Server 2008 (Discovery) 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/F/0/3/F031677F-9DAA-4029-9E0D-E666216986BD/Microsoft.SQLServer.2008.Discovery.DEU.mp" target="_blank">SQL Server 2008 (Discovery)-Sprachpaket 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/0/7/7/07714012-3B7C-4691-9F2B-7ADE4188E552/Microsoft.SQLServer.2008.Monitoring.mp" target="_blank">SQL Server 2008 (Monitoring) 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/F/0/3/F031677F-9DAA-4029-9E0D-E666216986BD/Microsoft.SQLServer.2008.Monitoring.DEU.mp" target="_blank">SQL Server 2008 (Monitoring)-Sprachpaket 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/A/9/D/A9D807D2-287E-4900-AC92-564B3241E2B3/Microsoft.SQLServer.2008.Discovery.CHS.mp" target="_blank">SQL Server 2008 (??)??? 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/A/0/2/A027777E-0168-4818-BD51-04AB97C9CA02/Microsoft.SQLServer.2008.Discovery.CHT.mp" target="_blank">SQL Server 2008 (??) ???? 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/4/C/3/4C335BF9-CB8D-4183-AC3A-F3A1BD288277/Microsoft.SQLServer.2008.Discovery.JPN.mp" target="_blank">SQL Server 2008 (??) ????? 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/A/9/D/A9D807D2-287E-4900-AC92-564B3241E2B3/Microsoft.SQLServer.2008.Monitoring.CHS.mp" target="_blank">SQL Server 2008 (??)??? 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/4/C/3/4C335BF9-CB8D-4183-AC3A-F3A1BD288277/Microsoft.SQLServer.2008.Monitoring.JPN.mp" target="_blank">SQL Server 2008 (??) ????? 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/A/0/2/A027777E-0168-4818-BD51-04AB97C9CA02/Microsoft.SQLServer.2008.Monitoring.CHT.mp" target="_blank">SQL Server 2008 (??) ???? 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/6/0/E/60EB4BA0-EE86-418C-86C3-41BCD677EBB6/Microsoft.SQLServer.2008.Discovery.KOR.mp" target="_blank">SQL Server 2008(??) ?? ? 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/6/0/E/60EB4BA0-EE86-418C-86C3-41BCD677EBB6/Microsoft.SQLServer.2008.Monitoring.KOR.mp" target="_blank">SQL Server 2008(????) ?? ? 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/0/7/7/07714012-3B7C-4691-9F2B-7ADE4188E552/Microsoft.SQLServer.Library.mp" target="_blank">SQL Server Core Library 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/A/9/D/A9D807D2-287E-4900-AC92-564B3241E2B3/Microsoft.SQLServer.Library.CHS.mp" target="_blank">SQL Server Core Library ??? 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/F/0/3/F031677F-9DAA-4029-9E0D-E666216986BD/Microsoft.SQLServer.Library.DEU.mp" target="_blank">SQL Server Core Library-Sprachpaket 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/4/C/3/4C335BF9-CB8D-4183-AC3A-F3A1BD288277/Microsoft.SQLServer.Library.JPN.mp" target="_blank">SQL Server ?? ?????????? 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/6/0/E/60EB4BA0-EE86-418C-86C3-41BCD677EBB6/Microsoft.SQLServer.Library.KOR.mp" target="_blank">SQL Server ?? ????? ?? ? 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/A/0/2/A027777E-0168-4818-BD51-04AB97C9CA02/Microsoft.SQLServer.Library.CHT.mp" target="_blank">SQL Server ????????? 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/F/8/0/F8012B3B-2CDC-47A0-851D-6F9B7D1DCD83/Microsoft.SQLServer.2005.Monitoring.RUS.mp" target="_blank">???????? ????? (??????????) SQL Server 2005 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/F/8/0/F8012B3B-2CDC-47A0-851D-6F9B7D1DCD83/Microsoft.SQLServer.2008.Monitoring.RUS.mp" target="_blank">???????? ????? (??????????) SQL Server 2008 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/F/8/0/F8012B3B-2CDC-47A0-851D-6F9B7D1DCD83/Microsoft.SQLServer.2005.Discovery.RUS.mp" target="_blank">???????? ????? (???????????) SQL Server 2005 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/F/8/0/F8012B3B-2CDC-47A0-851D-6F9B7D1DCD83/Microsoft.SQLServer.2008.Discovery.RUS.mp" target="_blank">???????? ????? (???????????) SQL Server 2008 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/F/8/0/F8012B3B-2CDC-47A0-851D-6F9B7D1DCD83/Microsoft.SQLServer.Library.RUS.mp" target="_blank">???????? ????? ?????????? ???? SQL Server 6.1.400.0</a></li>
<li><a href="http://download.microsoft.com/download/A/9/D/A9D807D2-287E-4900-AC92-564B3241E2B3/OM2007_MP_SQLSrvr.doc" target="_blank">MP Guide Chinese Simplified</a></li>
<li><a href="http://download.microsoft.com/download/A/0/2/A027777E-0168-4818-BD51-04AB97C9CA02/OM2007_MP_SQLSrvr.doc" target="_blank">MP Guide Chinese Traditional</a></li>
<li><a href="http://download.microsoft.com/download/5/A/7/5A769F36-E27A-4E42-9E34-B1486153906A/OM2007_MP_SQLSrvr.doc" target="_blank">MP Guide French</a></li>
<li><a href="http://download.microsoft.com/download/F/0/3/F031677F-9DAA-4029-9E0D-E666216986BD/OM2007_MP_SQLSrvr.doc" target="_blank">MP Guide German</a></li>
<li><a href="http://download.microsoft.com/download/E/9/A/E9AE974B-F77B-4965-84EF-7158CDBBFC4E/OM2007_MP_SQLSrvr.doc" target="_blank">MP Guide Italian</a></li>
<li><a href="http://download.microsoft.com/download/4/C/3/4C335BF9-CB8D-4183-AC3A-F3A1BD288277/OM2007_MP_SQLSrvr.doc" target="_blank">MP Guide Japanese</a></li>
<li><a href="http://download.microsoft.com/download/6/0/E/60EB4BA0-EE86-418C-86C3-41BCD677EBB6/OM2007_MP_SQLSrvr.doc" target="_blank">MP Guide Korean</a></li>
<li><a href="http://download.microsoft.com/download/D/D/4/DD4AD044-AD54-4AA7-AA24-6CA5DCE87419/OM2007_MP_SQLSrvr.doc" target="_blank">MP Guide Portuguese-Brazil</a></li>
<li><a href="http://download.microsoft.com/download/F/8/0/F8012B3B-2CDC-47A0-851D-6F9B7D1DCD83/OM2007_MP_SQLSrvr.doc" target="_blank">MP Guide Russian</a></li>
<li><a href="http://download.microsoft.com/download/D/B/A/DBACFC22-B293-454B-B984-849E1EC666D3/OM2007_MP_SQLSrvr.doc" target="_blank">MP Guide Spanish</a></li>
<li><a href="http://download.microsoft.com/download/0/7/7/07714012-3B7C-4691-9F2B-7ADE4188E552/SQLServerMPGuide.doc" target="_blank">MP Guide SQL Server 2005</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.mbaeker.de/2011/06/scom-neue-management-packs-mai-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SCOM ACS over forest borders</title>
		<link>http://www.mbaeker.de/2010/12/scom-acs-over-forest-borders/</link>
		<comments>http://www.mbaeker.de/2010/12/scom-acs-over-forest-borders/#comments</comments>
		<pubDate>Wed, 29 Dec 2010 16:54:16 +0000</pubDate>
		<dc:creator>markus</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Operations Manager]]></category>
		<category><![CDATA[System Center]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[Debug]]></category>
		<category><![CDATA[scom]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.mbaeker.de/?p=361</guid>
		<description><![CDATA[Sometimes the acs forwarder doesn&#8217;t connects successfully to the acs server and states in the operations manager event log, that you have to activate debugging to see more details. You can activate it by following this instruction: Browse to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\AdtAgent\Parameters Create DWORD value = TraceFlags Edit the TraceFlags entry and enter decimal value 524420 Restart [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-364" title="icon-01" src="http://www.mbaeker.de/wp-content/uploads/2010/12/icon-01.png" alt="" width="64" height="64" />Sometimes the acs forwarder doesn&#8217;t connects successfully to the acs server and states in the operations manager event log, that you have to activate debugging to see more details.</p>
<p>You can activate it by following this instruction:</p>
<ol>
<li>Browse to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\AdtAgent\Parameters</li>
<li>Create DWORD value = TraceFlags</li>
<li>Edit the TraceFlags entry and enter decimal value <strong>524420</strong></li>
<li>Restart the AdtAgent service</li>
</ol>
<p>(Source: <a href="http://helpmemanage.blogspot.com/2007/05/enable-detailed-logging-for-acs.html" target="_blank">http://helpmemanage.blogspot.com/2007/05/enable-detailed-logging-for-acs.html</a>)</p>
<p>You can find the log under c:\windows\temp</p>
<p>One cause can be that the acs cannot operate over forest borders or from a workgroup (kerberos authentication &#8211; some reason for the scom agent).</p>
<p>The workaround is a little bit mor complicated that a simple certificate exchange.</p>
<p>A good and working explanation can be found here:</p>
<p><a href="http://www.directtechnology.com/BlogEngine/post/2010/08/17/Problems-with-non-trusted-computers-reporting-to-ACS-%28Audit-Collection-Services%29.aspx" target="_blank">http://www.directtechnology.com/BlogEngine/post/2010/08/17/Problems-with-non-trusted-computers-reporting-to-ACS-%28Audit-Collection-Services%29.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mbaeker.de/2010/12/scom-acs-over-forest-borders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ADDS: Nicht suchen, sondern finden!</title>
		<link>http://www.mbaeker.de/2010/02/adds-nicht-suchen-sondern-finden/</link>
		<comments>http://www.mbaeker.de/2010/02/adds-nicht-suchen-sondern-finden/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 21:00:08 +0000</pubDate>
		<dc:creator>markus</dc:creator>
				<category><![CDATA[Active Directory Domain Service]]></category>
		<category><![CDATA[Deutsch]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[adds]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.mbaeker.de/2010/02/adds-nicht-suchen-sondern-finden/</guid>
		<description><![CDATA[Mir begegnen regelmäßig Situationen, in dem im ADDS und Eventlog bestimmte Dinge nachgeschaut werden müssen. Dabei gehen viele direkt ins Eventlog und suchen nach dem Namen des gesperrten Users oder ähnliches. Gerade in größeren Umgebungen ist diese Vorgehensweise sehr ineffizient und auch nicht präzise, da andere Ereignisse die Suchergebnisse beeinträchtigen können. Daher sollte die Devise [...]]]></description>
			<content:encoded><![CDATA[<p><img title="icon-11" style="border-right: 0px; border-top: 0px; display: inline; margin-left: 0px; border-left: 0px; margin-right: 0px; border-bottom: 0px" height="64" alt="icon-11" src="http://www.mbaeker.de/wp-content/uploads/2010/02/icon11.png" width="64" align="left" border="0" /> Mir begegnen regelmäßig Situationen, in dem im ADDS und Eventlog bestimmte Dinge nachgeschaut werden müssen. Dabei gehen viele direkt ins Eventlog und suchen nach dem Namen des gesperrten Users oder ähnliches. Gerade in größeren Umgebungen ist diese Vorgehensweise sehr ineffizient und auch nicht präzise, da andere Ereignisse die Suchergebnisse beeinträchtigen können.</p>
<p>Daher sollte die Devise sein: Zuerst Zeitpunkt und Ort herausfinden und dann im Eventlog nachschauen.</p>
<p>Solange am Objekt nichts geändert wurde, ist der letzte Änderungszeitpunkt und Ort eigenschaftsgenau kontrollierbar.</p>
<p>Dazu ein kleines Beispiel: Ein Anwender beschwert sich, dass sein Konto ständig gesperrt wird. Er hat vor einigen Stunden sein Kennwort geändert.</p>
<p>Bevor das Konto zurückgesetzt wird, werden noch schnell wichtige Eigenschaften mittels repadmin extrahiert:</p>
<blockquote><p>repadmin /showobjmeta * &quot;CN=User1,OU=Benutzer,,DC=temp,DC=local&quot; &gt; user.txt</p>
</blockquote>
<p>Dabei werden die Metadaten des per DN angegebenen Objektes (CN=…) auf allen Domänenkontrollern (*) ausgelesen und in eine Textdatei gespeichert.</p>
<p>In der Textdatei steht jetzt pro Domänencontroller eine Liste aller Attribute des Objektes und weitere wesentliche Parameter. Für dieses Beispiel relevant ist die LockoutTime:</p>
<blockquote><p>153243532 Standardname-des-ersten-Standorts\dc1&#160;&#160; 1100175 2010-11-23 11:11:11&#160;&#160; 37 lockoutTime</p>
</blockquote>
<p>Dieser Eintrag zeigt deutlich, dass das Attribut lockoutTime (also wann das Konto gesperrt wurde) auf dem Domänencontroller dc1 um 11:11 geändert wurde.</p>
<p>Somit kann man direkt diese Daten nutzen und ins Securitylog vom dc1 um 11:11 schauen.</p>
<p>&#160;</p>
<blockquote><p>Ereignistyp:&#160;&#160;&#160; Fehlerüberw.</p>
<p>Ereignisquelle: Security</p>
<p>Ereigniskategorie:&#160;&#160;&#160;&#160;&#160; (9)</p>
<p>Ereigniskennung:&#160;&#160;&#160;&#160;&#160;&#160;&#160; 675</p>
<p>Datum:&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 23.11.2010</p>
<p>Zeit:&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 11:11:11</p>
<p>Benutzer:&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; NT-AUTORITÄT\SYSTEM</p>
<p>Computer:&#160;&#160;&#160;&#160;&#160;&#160; dc1</p>
<p>Beschreibung:</p>
<p>Fehlgeschlagene Vorbestätigung:</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Benutzername:&#160;&#160; user1</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Benutzerkennung:&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; TEMP\user1</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Dienstname:&#160;&#160;&#160;&#160; krbtgt/TEMP.LOCAL</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Vorauthentifizierungstyp:&#160;&#160;&#160;&#160;&#160;&#160; 0&#215;2</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Fehlercode:&#160;&#160;&#160;&#160; 0&#215;18</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Clientadresse:&#160; 192.2.0.10</p>
</blockquote>
<p>Die Sperrung ging als vom Client 192.2.0.10 aus. Eine Rückfrage beim User ergibt direkt, dass er das Kennwort an einem anderen Client geändert hat, aber an dem oben angegebenen Client schon länger angemeldet ist.</p>
<p>Aufwand: 5 Minuten. Wilde Sucherei: Minimal. Präzision: Hoch <img src='http://www.mbaeker.de/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.mbaeker.de/2010/02/adds-nicht-suchen-sondern-finden/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Versteckte Windows Features Part II</title>
		<link>http://www.mbaeker.de/2009/06/versteckte-windows-features-part-ii/</link>
		<comments>http://www.mbaeker.de/2009/06/versteckte-windows-features-part-ii/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 15:30:59 +0000</pubDate>
		<dc:creator>markus</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.mbaeker.de/?p=132</guid>
		<description><![CDATA[Interessant: Windows kann bereits das Eventlog automatisch in eine Datei sichern und danach löschen. Gerade auf Rechnern, auf denen keine Events verloren gehen sollen, ist das eine bessere Lösung als ein automatisches Herunterfahren bei einem vollen Security Log. Hier die Erklärung wie man es einstellen muss: Support Seite (unter More Information). So sieht es aus, [...]]]></description>
			<content:encoded><![CDATA[<p>Interessant: Windows kann bereits das Eventlog automatisch in eine Datei sichern und danach löschen. Gerade auf Rechnern, auf denen keine Events verloren gehen sollen, ist das eine bessere Lösung als ein automatisches Herunterfahren bei einem vollen Security Log.</p>
<p>Hier die Erklärung wie man es einstellen muss: <a href="http://support.microsoft.com/kb/312571/en-us" target="_blank">Support Seite</a> (unter More Information).</p>
<p>So sieht es aus, wenn Windows ein Log abgeschnitten hat:</p>
<p><a href="http://www.mbaeker.de/wp-content/uploads/2009/06/EventLogAbschneiden.png"><img class="alignnone size-full wp-image-152" title="Eventlog abschneiden" src="http://www.mbaeker.de/wp-content/uploads/2009/06/EventLogAbschneiden.png" alt="Eventlog abschneiden" width="406" height="448" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mbaeker.de/2009/06/versteckte-windows-features-part-ii/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Security: VM kann Code in ESX ausführen</title>
		<link>http://www.mbaeker.de/2009/04/security-vm-kann-code-in-esx-ausfuhren/</link>
		<comments>http://www.mbaeker.de/2009/04/security-vm-kann-code-in-esx-ausfuhren/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 17:40:25 +0000</pubDate>
		<dc:creator>markus</dc:creator>
				<category><![CDATA[VMWare]]></category>
		<category><![CDATA[Batchdatei]]></category>
		<category><![CDATA[ESX]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://www.mbaeker.de/?p=96</guid>
		<description><![CDATA[Ich habe gerade einen interessanten KB Artikel bei VMWare gefunden: http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&#38;cmd=displayKC&#38;externalId=1009852 Darin wird ein Update vorgestellt, dass eine Sicherheitslücke schließt, die es ermöglicht aus einer Virtuellen Maschine (VM) Code auf dem Host System (in diesem Fall ESX 3.5) auszuführen. Leider stehen auch im CVE Eintrag keine Details. Viele Virtualisierungsgegner haben immer genau davor gewarnt. Aber [...]]]></description>
			<content:encoded><![CDATA[<p>Ich habe gerade einen interessanten KB Artikel bei VMWare gefunden: <a href="http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&amp;cmd=displayKC&amp;externalId=1009852" target="_blank">http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&amp;cmd=displayKC&amp;externalId=1009852</a></p>
<p>Darin wird ein Update vorgestellt, dass eine Sicherheitslücke schließt, die es ermöglicht aus einer Virtuellen Maschine (VM) Code auf dem Host System (in diesem Fall ESX 3.5) auszuführen. Leider stehen auch im CVE Eintrag keine Details.</p>
<p>Viele Virtualisierungsgegner haben immer genau davor gewarnt. Aber es hieß immer, dass VMWare ESX so sicher ist, dass so was nicht vorkommen kann.  Der Artikel zeigt jetzt etwas anderes. Wie riskant die Lücke ist, kann ich nicht einschätzen. Aber allein die Existenz ist natürlich Wasser auf die Mühlen der Virtualisierungsskeptiker.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mbaeker.de/2009/04/security-vm-kann-code-in-esx-ausfuhren/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zertifikate von ADDS LDAP/SSL Verbindungen testen</title>
		<link>http://www.mbaeker.de/2009/01/zertifikate-von-adds-ldapssl-verbindungen-testen/</link>
		<comments>http://www.mbaeker.de/2009/01/zertifikate-von-adds-ldapssl-verbindungen-testen/#comments</comments>
		<pubDate>Fri, 16 Jan 2009 07:28:56 +0000</pubDate>
		<dc:creator>markus</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[adds]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[ldap]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[ssl]]></category>

		<guid isPermaLink="false">http://www.mbaeker.de/?p=46</guid>
		<description><![CDATA[Um schnell ein Zertifikat eines ADDS Servers zu überprüfen, bietet sich überraschender Weise ein Webbrowser wie der Firefox auf. Trägt man dort in der Adressleiste https://dns-name-des-domänencontrollers:636 ein. Beim Aufruf erscheint unten links das bekannte SSL-Schloss, dass man zur genaueren Inspektion nutzen kann. Aber: Neuere Firefoxversionen verhindern https Verbindungen auf ungewöhnlichen Ports. Daher muss hier eine [...]]]></description>
			<content:encoded><![CDATA[<p>Um schnell ein Zertifikat eines ADDS Servers zu überprüfen, bietet sich überraschender Weise ein Webbrowser wie der Firefox auf. Trägt man dort in der Adressleiste https://dns-name-des-domänencontrollers:636 ein. Beim Aufruf erscheint unten links das bekannte SSL-Schloss, dass man zur genaueren Inspektion nutzen kann.</p>
<p><strong>Aber:</strong> Neuere Firefoxversionen verhindern https Verbindungen auf ungewöhnlichen Ports. Daher muss hier eine Ausnahme für ldaps eingetragen werden:<br />
Um in die erweiterten Einstellungen des Firefoxes zu gelangen muss man in die Adressleiste <code>about:config</code> eingeben. Dort als zusätzlichen Eintrag network.security.ports.banned.override hinzufügen und als Wert den Port 636 hinterlegen (weitere Ports kann man durch Komma getrennt eingeben):</p>
<p><img class="size-full wp-image-45" title="firefox-ansicht-about-config" src="http://www.mbaeker.de/wp-content/uploads/2009/01/firefox-ansicht-about-config.png" alt="firefox-ansicht-about-config" width="491" height="166" /></p>
<p>Details s.a. <a href="http://kb.mozillazine.org/Network.security.ports.banned.override">http://kb.mozillazine.org/Network.security.ports.banned.override</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mbaeker.de/2009/01/zertifikate-von-adds-ldapssl-verbindungen-testen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

