<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Kevin Decherf's blog</title>
	
	<link>http://blog.kdecherf.com</link>
	<description>Technologies de l'information ... et plus si affinité</description>
	<lastBuildDate>Mon, 01 Mar 2010 01:10:53 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/kdecherf_blog" /><feedburner:info uri="kdecherf_blog" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>DNS/SPF – Spam : limitez l’usurpation de vos domaines</title>
		<link>http://feedproxy.google.com/~r/kdecherf_blog/~3/mZzrJ0D6F6A/</link>
		<comments>http://blog.kdecherf.com/2010/03/01/dns-spf-spam-limitez-lusurpation-de-vos-domaines/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 01:10:53 +0000</pubDate>
		<dc:creator>Kevin Decherf</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Sécurité]]></category>

		<guid isPermaLink="false">http://blog.kdecherf.com/?p=1305</guid>
		<description><![CDATA[
De nos jours, les pirates n&#8217;hésitent pas à usurper des noms de domaine pour envoyer du spam. Outre le fait d&#8217;embêter les filtres cela amène parfois à un blocage pur et simple du domaine incriminé, ce qui n&#8217;est pas négligeable dans un contexte professionnel : altération et blocage des communications &#8230; Une norme expérimentale existe [...]]]></description>
			<content:encoded><![CDATA[
<p>De nos jours, les pirates n&#8217;hésitent pas à usurper des noms de domaine pour envoyer du spam. Outre le fait d&#8217;embêter les filtres cela amène parfois à un blocage pur et simple du domaine incriminé, ce qui n&#8217;est pas négligeable dans un contexte professionnel : altération et blocage des communications &#8230; Une norme expérimentale existe depuis 2006 pour limiter cet impact : <strong>Sender Policy Framework</strong> (SPF), <em><a href="http://tools.ietf.org/html/rfc4408">RFC 4408</a></em>.</p>
<p>Cette norme n&#8217;est autre qu&#8217;une entrée DNS qui va permettre de dresser une liste des adresses IP autorisées ou non à envoyer du courriel pour un domaine donné.</p>
<p>De manière plus détaillées, du type TXT (<em>pour la rétrocompatibilité</em>) ou SPF, cette entrée se présente sous cette forme (<em>exemple avec devaproxis.fr</em>) :</p>
<pre>devaproxis.fr.          86400   IN      TXT     "v=spf1 +a +mx ~all"</pre>
<p>&nbsp;</p>

<p>Un ensemble (<em>exemple : +mx:192.168.23.12</em>) comprend une action (<em>ici, +</em>), un sélecteur (<em>ici, mx</em>) et une valeur facultative (<em>ici, 192.168.23.12</em>).</p>
<p>Selon la norme, nous retrouvons 4 actions :</p>
<ul>
	<li>+ : autorisé (<em>pass</em>)</li>
	<li>? : neutre (<em>neutral</em>)</li>
	<li>~ : suspect (<em>soft fail</em>)</li>
	<li>- : interdit (<em>fail</em>)</li>
</ul>
<p>Ces actions sont à utiliser avec une liste de sélecteurs. En voici quelques uns :</p>
<ul>
	<li>a : se réfère aux enregistrements DNS de type A</li>
	<li>mx : se réfère aux enregistrements DNS de type MX</li>
	<li>ip4 : se réfère à une adresse IPv4</li>
	<li>ip6 : idem, pour une adresse IPv6</li>
	<li>all : désigne tout</li>
</ul>
<p>La valeur est facultative pour les sélecteurs <em>a</em> et <em>mx</em>, auquel cas le domaine courant est sélectionné de manière implicite.</p>
<p>Ce n&#8217;est pas clair ? Petite traduction de l&#8217;exemple :</p>
<ul>
	<li><em>+a</em> : autorise toutes les entrées DNS de type A du domaine devaproxis.fr (<em>utile pour les serveurs web</em>)</li>
	<li>+<em>mx </em>: autorise toutes les entrées DNS de type MX du domaine devaproxis.fr (<em>utile, non ? <img src='http://blog.kdecherf.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </em>)</li>
	<li><em>~all</em> : n&#8217;autorise pas (<em>soft fail</em>) les autres adresses IP envoyant du courriel au nom de devaproxis.fr</li>
</ul>
<p>&nbsp;</p>

<p>Vous pouvez, bien entendu, mélanger les sélécteurs à votre guise. Autre exemple :</p>
<pre>domaine1.org IN v=spf1 +a +a:domaine2.com +mx +ip4:1.1.1.1 ~ip4:8.4.4.8 -all</pre>
<p>&nbsp;</p>

<p>Dans ce cas, nous autorisons toutes les entrées DNS de type A des domaines <em>domaine1.org</em> et <em>domaine2.com</em> ainsi que les entrées DNS de type MX et l&#8217;adresse IP 1.1.1.1 à envoyer du courriel au nom de <em>domaine1.org</em>. Cependant, nous n&#8217;autorisons pas <em>(soft fail</em>) l&#8217;adresse IP 8.4.4.8 et nous rejetons toutes les autres adresses IPs.</p>
<p>&nbsp;</p>

<p>Tout comme pour le spam, la norme SPF en action se présente sous la forme d&#8217;un marquage dans l&#8217;en-tête d&#8217;un email, calculé par le serveur à la réception. Ainsi, libre à l&#8217;administrateur d&#8217;appliquer différentes règles : tout marquer mais laisser passer, rejeter le &#8216;<em>fail</em>&#8216; ou encore rejeter tout ce qui ne passe pas &#8230; Pour exemple, Gmail marque les mails mais ne semble pas filtrer.</p>
<p>Si je n&#8217;ai pas été assez (<em>ou pas du tout &#8230;</em>) clair ou si vous souhaitez de plus amples informations, visitez <a href="http://www.openspf.org/SPF_Record_Syntax">cette page</a>.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblog.kdecherf.com%2F2010%2F03%2F01%2Fdns-spf-spam-limitez-lusurpation-de-vos-domaines%2F&amp;linkname=DNS%2FSPF%20%26%238211%3B%20Spam%20%3A%20limitez%20l%26%238217%3Busurpation%20de%20vos%20domaines"><img src="http://blog.kdecherf.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kdecherf_blog?a=mZzrJ0D6F6A:c3VfJd9DbhY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kdecherf_blog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kdecherf_blog?a=mZzrJ0D6F6A:c3VfJd9DbhY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/kdecherf_blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kdecherf_blog?a=mZzrJ0D6F6A:c3VfJd9DbhY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/kdecherf_blog?i=mZzrJ0D6F6A:c3VfJd9DbhY:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/kdecherf_blog/~4/mZzrJ0D6F6A" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.kdecherf.com/2010/03/01/dns-spf-spam-limitez-lusurpation-de-vos-domaines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.kdecherf.com/2010/03/01/dns-spf-spam-limitez-lusurpation-de-vos-domaines/</feedburner:origLink></item>
		<item>
		<title>Microsoft : 5 000 serveurs tout équipés gratuits</title>
		<link>http://feedproxy.google.com/~r/kdecherf_blog/~3/Q7FIF_pPqoQ/</link>
		<comments>http://blog.kdecherf.com/2010/02/26/microsoft-5-000-serveurs-tout-equipes-gratuits/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 17:01:38 +0000</pubDate>
		<dc:creator>Kevin Decherf</dc:creator>
				<category><![CDATA[Actualité]]></category>
		<category><![CDATA[microsoft]]></category>

		<guid isPermaLink="false">http://blog.kdecherf.com/?p=1340</guid>
		<description><![CDATA[
Vous avez des préjugés sur la plateforme d&#8217;hébergement Windows ? Vous souhaitez découvrir l&#8217;environnement Windows ou tester l&#8217;efficacité de PHP dessus sans en payer le prix ? Microsoft met à votre disposition 5 000 serveurs tout équipés gratuits jusqu&#8217;au 30 juin 2010.
&#160;


&#160;

Même si vous n&#8217;êtes pas sysadmin, profitez de l&#8217;offre et des différents pas-à-pas en [...]]]></description>
			<content:encoded><![CDATA[
<p>Vous avez des préjugés sur la plateforme d&#8217;hébergement Windows ? Vous souhaitez découvrir l&#8217;environnement Windows ou tester l&#8217;efficacité de PHP dessus sans en payer le prix ? Microsoft met à votre disposition <strong>5 000 serveurs tout équipés gratuits jusqu&#8217;au 30 juin 2010</strong>.</p>
<p>&nbsp;</p>

<p><a href="http://www.maplateformeweb.com"><img class="aligncenter size-full wp-image-1343" title="100212_480x325" src="http://blog.kdecherf.com/wp-content/uploads/2010/02/100212_480x325.jpg" alt="" width="480" height="325" /></a></p>
<p>&nbsp;</p>

<p>Même si vous n&#8217;êtes pas <em>sysadmin</em>, profitez de l&#8217;offre et des différents pas-à-pas en ligne pour découvrir les solutions d&#8217;hébergement sous Windows.</p>
<p>Deux scénarios principaux sont disponibles :</p>
<ul>
	<li>Apprendre à gérer son serveur Web (<em>Windows Server 2008 R2</em>)</li>
	<li>Créer son site avec un gestionnaire de contenu (<em>Drupal, Joomla, Wordpress et DotnetNuke</em>)</li>
</ul>
<p>&nbsp;</p>

<p><strong>C&#8217;est par ici : </strong><strong><a href="http://www.maplateformeweb.com">Ma Plateforme Web</a></strong></p>
<p><em>Au delà du 30 juin, vous pourrez migrer sur une offre commerciale ou tout simplement récupérer la machine virtuelle et la monter chez vous.</em></p>
<p>&nbsp;</p>

<p><em>Enjoy it !</em></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblog.kdecherf.com%2F2010%2F02%2F26%2Fmicrosoft-5-000-serveurs-tout-equipes-gratuits%2F&amp;linkname=Microsoft%20%3A%205%20000%20serveurs%20tout%20%C3%A9quip%C3%A9s%20gratuits"><img src="http://blog.kdecherf.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kdecherf_blog?a=Q7FIF_pPqoQ:POfkG1pYNC8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kdecherf_blog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kdecherf_blog?a=Q7FIF_pPqoQ:POfkG1pYNC8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/kdecherf_blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kdecherf_blog?a=Q7FIF_pPqoQ:POfkG1pYNC8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/kdecherf_blog?i=Q7FIF_pPqoQ:POfkG1pYNC8:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/kdecherf_blog/~4/Q7FIF_pPqoQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.kdecherf.com/2010/02/26/microsoft-5-000-serveurs-tout-equipes-gratuits/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://blog.kdecherf.com/2010/02/26/microsoft-5-000-serveurs-tout-equipes-gratuits/</feedburner:origLink></item>
		<item>
		<title>Magento : ajouter un préfixe aux URLs auto-générées</title>
		<link>http://feedproxy.google.com/~r/kdecherf_blog/~3/KSLk0yM03SM/</link>
		<comments>http://blog.kdecherf.com/2010/01/29/magento-ajouter-un-prefixe-aux-urls-auto-generees/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 23:49:32 +0000</pubDate>
		<dc:creator>Kevin Decherf</dc:creator>
				<category><![CDATA[Astuces]]></category>
		<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://blog.kdecherf.com/?p=1312</guid>
		<description><![CDATA[Ah Magento et ses joies &#8230; ou pas. Avouez que les URLs auto-générées du style /category.html ou /product.html c&#8217;est frustrant si on veut une boutique un tant soit peu &#8220;hiérarchisée&#8221;.
Dans mon exemple, je dois ajouter collection/ devant les noms de catégories et de produits (exemples : collection/femme, collection/femme/vestes, collection/produit/produit1 &#8230;). Première solution : modification à [...]]]></description>
			<content:encoded><![CDATA[<p>Ah Magento et ses joies &#8230; ou pas. Avouez que les URLs auto-générées du style <em>/category.html</em> ou <em>/product.html</em> c&#8217;est frustrant si on veut une boutique un tant soit peu &#8220;hiérarchisée&#8221;.</p>
<p>Dans mon exemple, je dois ajouter collection/ devant les noms de catégories et de produits (<em>exemples : collection/femme, collection/femme/vestes, collection/produit/produit1 &#8230;</em>). Première solution : modification à la main &#8230; Oubliez, les URLs sont recalculées à chaque vidage du cache. L&#8217;unique solution (<em>à défaut d&#8217;avoir un paramètre dans le config.xml</em>) reste un petit <em>hack</em> dans le core de Magento. Oui, cela fait peur à première vue mais le résultat tient sur 2 lignes.</p>
<p>Le fichier à modifier est <em>app/code/core/Mage/Catalog/Model/Url.php</em></p>
<p>Remplacez, <em>ligne 551</em></p>
<pre class="brush: php">return $this-&gt;getUnusedPath($category-&gt;getStoreId(), $prefix . $parentPath . $urlKey . $categoryUrlSuffix,</pre>
<p>&nbsp;</p>

<p>Par</p>
<pre class="brush: php">$prefix = ( $category-&gt;getParentId() == x ) ? &#039;votreprefixe/&#039; : &#039;&#039; ;
return $this-&gt;getUnusedPath($category-&gt;getStoreId(), $prefix . $parentPath . $urlKey . $categoryUrlSuffix,</pre>
<p>Remplacez &#8216;x&#8217; par l&#8217;id de votre catégorie racine et &#8216;votreprefixe&#8217; par &#8230; votre préfixe.</p>
<p>&nbsp;</p>

<p>Cela ne gère que les URLs de catégories et produits associés [aux catégories]. Pour les produits seuls, veuillez modifier la ligne 577 par :</p>
<pre class="brush: php">return $this-&gt;getUnusedPath($category-&gt;getStoreId(), &#039;votreprefixeproduit/&#039; . $urlKey . $productUrlSuffix,</pre>
<p>&nbsp;</p>

<p><strong>*** ATTENTION ***</strong>, il est très important de garder à l&#8217;esprit que ces modifications sont susceptibles d&#8217;être perdues lors d&#8217;une mise à jour de votre installation.</p>
<p>Il est évident que le mieux pour faire ceci serait que le Core intègre une directive de configuration permettant d&#8217;assigner des préfixes (<em>au même titre que les suffixes et extensions</em>) mais bon, on fait avec ce que l&#8217;on a. <em>Enjoy it !</em></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblog.kdecherf.com%2F2010%2F01%2F29%2Fmagento-ajouter-un-prefixe-aux-urls-auto-generees%2F&amp;linkname=Magento%20%3A%20ajouter%20un%20pr%C3%A9fixe%20aux%20URLs%20auto-g%C3%A9n%C3%A9r%C3%A9es"><img src="http://blog.kdecherf.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kdecherf_blog?a=KSLk0yM03SM:XZuZbbR00j8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kdecherf_blog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kdecherf_blog?a=KSLk0yM03SM:XZuZbbR00j8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/kdecherf_blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kdecherf_blog?a=KSLk0yM03SM:XZuZbbR00j8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/kdecherf_blog?i=KSLk0yM03SM:XZuZbbR00j8:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/kdecherf_blog/~4/KSLk0yM03SM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.kdecherf.com/2010/01/29/magento-ajouter-un-prefixe-aux-urls-auto-generees/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.kdecherf.com/2010/01/29/magento-ajouter-un-prefixe-aux-urls-auto-generees/</feedburner:origLink></item>
		<item>
		<title>Sunday Security Summary #5</title>
		<link>http://feedproxy.google.com/~r/kdecherf_blog/~3/5e4nxEVlhRM/</link>
		<comments>http://blog.kdecherf.com/2010/01/24/sunday-security-summary-5/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 16:30:25 +0000</pubDate>
		<dc:creator>Kevin Decherf</dc:creator>
				<category><![CDATA[Sécurité]]></category>

		<guid isPermaLink="false">http://blog.kdecherf.com/?p=1302</guid>
		<description><![CDATA[
Cette semaine s&#8217;est placée sous le signe d&#8217;une faille de sécurité très critiquée sur Internet Explorer ce qui a valu à Microsoft de sortir un patch plus tôt que prévu. Flash, BIND, Linux et PHPMyAdmin l&#8217;accompagnent.
&#160;


&#160;

Système et applicatif




CVE

Application

Version(s)

Détail


CVE-2010-0007
Linux kernel
&#60; 2.6.33-rc4
Détournement de privilèges permettant la libre modification des règles de filtrage d&#8217;ebtables


CVE-2009-4141
Linux kernel
&#60; 2.6.33-rc4-git1
Gain de privilège


CVE-2010-0244, [...]]]></description>
			<content:encoded><![CDATA[
<p>Cette semaine s&#8217;est placée sous le signe d&#8217;une faille de sécurité très critiquée sur Internet Explorer ce qui a valu à Microsoft de sortir un patch plus tôt que prévu. Flash, BIND, Linux et PHPMyAdmin l&#8217;accompagnent.</p>
<p>&nbsp;</p>

<p><a href="http://blog.kdecherf.com/wp-content/uploads/2009/12/3S.png"><img class="aligncenter size-full wp-image-1189" title="3S" src="http://blog.kdecherf.com/wp-content/uploads/2009/12/3S.png" alt="" width="300" height="125" /></a></p>
<p>&nbsp;</p>

<p><strong>Système et applicatif</strong></p>
<table border="0" cellspacing="0" cellpadding="2" width="660">
<tbody>
<tr>
<td width="113" valign="top">
<p><strong>CVE</strong></p></td>
<td width="139" valign="top">
<p><strong>Application</strong></p></td>
<td width="98" valign="top">
<p><strong>Version(s)</strong></p></td>
<td width="308" valign="top">
<p><strong>Détail</strong></p></td>
</tr>
<tr>
<td width="113" valign="top"><a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0007">CVE-2010-0007</a></td>
<td width="139" valign="top">Linux kernel</td>
<td width="99" valign="top">&lt; 2.6.33-rc4</td>
<td width="307" valign="top">Détournement de privilèges permettant la libre modification des règles de filtrage d&#8217;<em>ebtables</em></td>
</tr>
<tr>
<td width="113" valign="top"><a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2009-4141">CVE-2009-4141</a></td>
<td width="139" valign="top">Linux kernel</td>
<td width="99" valign="top">&lt; 2.6.33-rc4-git1</td>
<td width="307" valign="top">Gain de privilège</td>
</tr>
<tr>
<td width="113" valign="top"><a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0244">CVE-2010-0244</a>, <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0245">CVE-2010-0245</a>, <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0246">CVE-2010-0246</a>, <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0247">CVE-2010-0247</a>, <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0248">CVE-2010-0248</a></td>
<td width="139" valign="top">Internet Explorer</td>
<td width="99" valign="top">5.01 SP4, 6, 6 SP1, 7, 8</td>
<td width="307" valign="top">Exécution de code arbitraire et corruption de mémoire</td>
</tr>
<tr>
<td width="113" valign="top"><a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0027">CVE-2010-0027</a></td>
<td width="139" valign="top">Internet Explorer</td>
<td width="99" valign="top">7, 8</td>
<td width="307" valign="top">Exécution de programme local via l&#8217;outil de validation des URLs</td>
</tr>
<tr>
<td width="113" valign="top"><a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0097">CVE-2010-0097</a></td>
<td width="139" valign="top">ISC BIND</td>
<td width="99" valign="top">9.0.x à 9.3.x, &lt; 9.4.3-P5, &lt; 9.5.2-P2, &lt; 9.6.1-P3, 9.7.0b</td>
<td width="307" valign="top">Injection de données (<em>AD flag</em>) sur des réponses valides</td>
</tr>
<tr>
<td width="113" valign="top"><a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0290">CVE-2010-0290</a></td>
<td width="139" valign="top">ISC BIND</td>
<td width="99" valign="top">9.0.x à 9.3.x, &lt; 9.4.3-P5, &lt; 9.5.2-P2, &lt; 9.6.1-P3, 9.7.0b</td>
<td width="307" valign="top"><em>DNS cache poisoning</em></td>
</tr>
<tr>
<td width="113" valign="top"><a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0382">CVE-2010-0382</a></td>
<td width="139" valign="top">ISC BIND</td>
<td width="99" valign="top">9.0.x à 9.3.x, &lt; 9.4.3-P5, &lt; 9.5.2-P2, &lt; 9.6.1-P3, 9.7.0b</td>
<td width="307" valign="top">Faille de sécurité générée par la correction de CVE-2009-4022, impact inconnu</td>
</tr>
<tr>
<td width="113" valign="top"><a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0379">CVE-2010-0379</a></td>
<td width="139" valign="top">Flash Player</td>
<td width="99" valign="top">6</td>
<td width="307" valign="top">Exécution de code arbitraire          <br /><em>Note : ActiveX distribué avec Windows XP SP2 et SP3</em></td>
</tr>
<tr>
<td width="113" valign="top"><a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0378">CVE-2010-0378</a></td>
<td width="139" valign="top">Flash Player</td>
<td width="99" valign="top">6.0.79</td>
<td width="307" valign="top">Exécution de code arbitraire          <br /><em>Note : ActiveX distribué avec Windows XP SP2 et SP3</em></td>
</tr>
<tr>
<td width="113" valign="top"><a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0037">CVE-2010-0037</a></td>
<td width="139" valign="top">Apple Mac OS X</td>
<td width="99" valign="top">10.5.8, 10.6.2</td>
<td width="307" valign="top">Exécution de code arbitraire ou déni de service via l&#8217;application Image RAW</td>
</tr>
<tr>
<td width="113" valign="top"><a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0036">CVE-2010-0036</a></td>
<td width="139" valign="top">Apple Mac OS X</td>
<td width="99" valign="top">10.5.8, 10.6.2</td>
<td width="307" valign="top">Exécution de code arbitraire ou déni de service via l&#8217;application CoreAudio</td>
</tr>
</tbody></table>
<p>&nbsp;</p>

<p><strong>Applications web</strong></p>
<table border="0" cellspacing="0" cellpadding="2" width="660">
<tbody>
<tr>
<td width="113" valign="top">
<p><strong>CVE</strong></p></td>
<td width="139" valign="top">
<p><strong>Application</strong></p></td>
<td width="98" valign="top">
<p><strong>Version(s)</strong></p></td>
<td width="308" valign="top">
<p><strong>Détail</strong></p></td>
</tr>
<tr>
<td width="113" valign="top"><a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2009-4605">CVE-2009-4605</a>, <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2008-7252">CVE-2008-7252</a>, <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2008-7251">CVE-2010-7251</a></td>
<td width="139" valign="top">phpMyAdmin</td>
<td width="99" valign="top">2.11.x &lt; 2.11.10</td>
<td width="307" valign="top">Attaque CSRF et failles de sécurité à impact inconnu</td>
</tr>
</tbody></table>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblog.kdecherf.com%2F2010%2F01%2F24%2Fsunday-security-summary-5%2F&amp;linkname=Sunday%20Security%20Summary%20%235"><img src="http://blog.kdecherf.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kdecherf_blog?a=5e4nxEVlhRM:LQCvNxOjJLM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kdecherf_blog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kdecherf_blog?a=5e4nxEVlhRM:LQCvNxOjJLM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/kdecherf_blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kdecherf_blog?a=5e4nxEVlhRM:LQCvNxOjJLM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/kdecherf_blog?i=5e4nxEVlhRM:LQCvNxOjJLM:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/kdecherf_blog/~4/5e4nxEVlhRM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.kdecherf.com/2010/01/24/sunday-security-summary-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.kdecherf.com/2010/01/24/sunday-security-summary-5/</feedburner:origLink></item>
		<item>
		<title>TechDays 2010 : j’y serai … et vous ?</title>
		<link>http://feedproxy.google.com/~r/kdecherf_blog/~3/mEozixhBHJY/</link>
		<comments>http://blog.kdecherf.com/2010/01/23/techdays-2010-jy-serai-et-vous/#comments</comments>
		<pubDate>Sat, 23 Jan 2010 18:25:54 +0000</pubDate>
		<dc:creator>Kevin Decherf</dc:creator>
				<category><![CDATA[Actualité]]></category>
		<category><![CDATA[techdays]]></category>

		<guid isPermaLink="false">http://blog.kdecherf.com/?p=1272</guid>
		<description><![CDATA[
Pour la quatrième année consécutive, les TechDays prendront place au Palais des Congrès de Paris pour 3 jours de folie. Microsoft France vous donne rendez-vous les 8, 9 et 10 février prochains.
&#160;


&#160;

Venez découvrir de nouvelles technologies ou vous perfectionner sur les produits Microsoft grâce à plus de 300 conférences : de la découverte des nouveautés [...]]]></description>
			<content:encoded><![CDATA[
<p>Pour la quatrième année consécutive, les <strong>TechDays</strong> prendront place au Palais des Congrès de Paris pour 3 jours de folie. Microsoft France vous donne rendez-vous les <strong>8, 9 et 10 février</strong> prochains.</p>
<p>&nbsp;</p>

<p><img class="aligncenter size-full wp-image-1295" title="TechDays2010_Wallpaper_1024x768" src="http://blog.kdecherf.com/wp-content/uploads/2010/01/TechDays2010_Wallpaper_1024x768.png" alt="" width="406" height="112" /></p>
<p>&nbsp;</p>

<p>Venez découvrir de nouvelles technologies ou vous perfectionner sur les produits Microsoft grâce à plus de <strong>300 conférences</strong> : de la découverte des nouveautés de <strong>Windows 7</strong> en passant par <strong>Office 2010</strong> sans oublier le futur de <strong>Visual Studio</strong> ou encore les solutions de Cloud Computing de Microsoft.</p>
<p>Et si les conférences ne vous suffisent pas, retrouvez près de <strong>140 exposants</strong> sur <strong>5 000 m²</strong> d&#8217;exposition pour découvrir d&#8217;autres produits ou faire de nouvelles rencontres professionnelles. Venez également rencontrer les communautés qui partagent leurs passions pour les technologies Microsoft : <em>Microsoft Student Partners, Most Valuable Professional, Microsoft Users Groups, …</em></p>
<p>L&#8217;accès à cet évènement est <strong>entièrement gratuit </strong>et ouvert à tous !</p>
<p>Plus d&#8217;informations et inscription sur <a href="http://www.techdays2010.fr/">http://www.techdays2010.fr/</a></p>
<p><img class="size-full wp-image-1296 alignleft" title="Vignette_Jyserai_H" src="http://blog.kdecherf.com/wp-content/uploads/2010/01/Vignette_Jyserai_H.gif" alt="" width="180" height="100" /></p>
<p>&nbsp;</p>

<p>&nbsp;</p>

<p>&nbsp;</p>

<p>&nbsp;</p>

<p><em>&#8230; Et vous ? <img src='http://blog.kdecherf.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </em></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblog.kdecherf.com%2F2010%2F01%2F23%2Ftechdays-2010-jy-serai-et-vous%2F&amp;linkname=TechDays%202010%20%3A%20j%26%238217%3By%20serai%20%26%238230%3B%20et%20vous%20%3F"><img src="http://blog.kdecherf.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kdecherf_blog?a=mEozixhBHJY:ap5ah3_x7eI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kdecherf_blog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kdecherf_blog?a=mEozixhBHJY:ap5ah3_x7eI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/kdecherf_blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kdecherf_blog?a=mEozixhBHJY:ap5ah3_x7eI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/kdecherf_blog?i=mEozixhBHJY:ap5ah3_x7eI:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/kdecherf_blog/~4/mEozixhBHJY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.kdecherf.com/2010/01/23/techdays-2010-jy-serai-et-vous/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.kdecherf.com/2010/01/23/techdays-2010-jy-serai-et-vous/</feedburner:origLink></item>
		<item>
		<title>Sunday Security Summary #4</title>
		<link>http://feedproxy.google.com/~r/kdecherf_blog/~3/T-V9YAkZQOk/</link>
		<comments>http://blog.kdecherf.com/2010/01/18/sunday-security-summary-4/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 22:59:39 +0000</pubDate>
		<dc:creator>Kevin Decherf</dc:creator>
				<category><![CDATA[Sécurité]]></category>

		<guid isPermaLink="false">http://blog.kdecherf.com/?p=1274</guid>
		<description><![CDATA[
Petit point habituel de la semaine passée en matière de sécurité, nous avons eu le droit à un Patch Day très court chez Microsoft tandis que la glibc s&#8217;invite exceptionnellement avec Windows Live Messenger aux côtés de Joomla et nginx. Ceci étant, je vous épargne le Patch day Oracle ainsi que celui de TYPO3.
&#160;


&#160;

Système et [...]]]></description>
			<content:encoded><![CDATA[
<p>Petit point habituel de la semaine passée en matière de sécurité, nous avons eu le droit à un Patch Day très court chez Microsoft tandis que la glibc s&#8217;invite exceptionnellement avec Windows Live Messenger aux côtés de Joomla et nginx. Ceci étant, je vous épargne le Patch day Oracle ainsi que celui de TYPO3.</p>
<p>&nbsp;</p>

<p><a href="http://blog.kdecherf.com/wp-content/uploads/2009/12/3S.png"><img class="aligncenter size-full wp-image-1189" title="3S" src="http://blog.kdecherf.com/wp-content/uploads/2009/12/3S.png" alt="" width="300" height="125" /></a></p>
<p>&nbsp;</p>

<p><strong>Système et applicatif</strong></p>
<table border="0" cellspacing="0" cellpadding="2" width="660">
<tbody>
<tr>
<td width="113" valign="top">
<p><strong>CVE</strong></p></td>
<td width="139" valign="top">
<p><strong>Application</strong></p></td>
<td width="98" valign="top">
<p><strong>Version(s)</strong></p></td>
<td width="308" valign="top">
<p><strong>Détail</strong></p></td>
</tr>
<tr>
<td width="113" valign="top"><a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2009-4536">CVE-2009-4536</a>, <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2009-4538">CVE-2009-4538</a></td>
<td width="139" valign="top">Linux kernel</td>
<td width="99" valign="top">&lt;= 2.6.32.3</td>
<td width="307" valign="top">Détournement de filtre par un paquet surchargé (driver e1000)</td>
</tr>
<tr>
<td width="113" valign="top"><a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2009-4537">CVE-2009-4537</a></td>
<td width="139" valign="top">Linux kernel</td>
<td width="99" valign="top">&lt;= 2.6.32.3</td>
<td width="307" valign="top">Faille de sécurité permettant un déni de service (driver r8169)</td>
</tr>
<tr>
<td width="113" valign="top"><a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2009-4355">CVE-2009-4355</a></td>
<td width="139" valign="top">
<p>OpenSSL</p></td>
<td width="99" valign="top">
<p>&lt;= 0.9.8l,            <br />&lt;= 1.0.0b4</p></td>
<td width="307" valign="top">
<p>Fuite mémoire permettant un déni de service</p></td>
</tr>
<tr>
<td width="113" valign="top"><a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2009-4489">CVE-2009-4489</a></td>
<td width="139" valign="top">Cherokee</td>
<td width="99" valign="top">&lt; 0.99.32</td>
<td width="307" valign="top">Exécution de code à distance via une requête HTTP mal formée</td>
</tr>
<tr>
<td width="113" valign="top"><a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2009-4487">CVE-2009-4487</a></td>
<td width="139" valign="top">nginx</td>
<td width="99" valign="top">0.7.64</td>
<td width="307" valign="top">Exécution de code à distance via une requête HTTP mal formée</td>
</tr>
<tr>
<td width="113" valign="top"><a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2009-3953">CVE-2009-3953</a>, <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2009-3954">CVE-2009-3954</a>, <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2009-3955">CVE-2009-3955</a>, <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2009-3956">CVE-2009-3956</a>, <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2009-3957">CVE-2009-3957</a>, <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2009-3958">CVE-2009-3958</a>, <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2009-3959">CVE-2009-3959</a></td>
<td width="139" valign="top">Adobe Reader, Acrobar</td>
<td width="99" valign="top">&lt; 8.2, &lt; 9.3</td>
<td width="307" valign="top">Exécution de code arbitraire et déni de service</td>
</tr>
<tr>
<td width="113" valign="top"><a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0278">CVE-2010-0278</a></td>
<td width="139" valign="top">Windows Live Messenger</td>
<td width="99" valign="top">14.0.8089.726</td>
<td width="307" valign="top">Faille de sécurité permettant un déni de service (crash applicatif)</td>
</tr>
<tr>
<td width="113" valign="top"><a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0015">CVE-2010-0015</a></td>
<td width="139" valign="top">GNU C Library (glibc, libc6)</td>
<td width="99" valign="top">2.7</td>
<td width="307" valign="top">Détournement d&#8217;informations des comptes NIS (mots de passe chiffrés)</td>
</tr>
<tr>
<td width="113" valign="top"><a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0310">CVE-2010-0310</a></td>
<td width="139" valign="top">Solaris</td>
<td width="99" valign="top">10</td>
<td width="307" valign="top">Gain de privilège via <em>Trusted Extensions</em></td>
</tr>
<tr>
<td width="113" valign="top"><a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0314">CVE-2010-0314</a></td>
<td width="139" valign="top">Apple Safari</td>
<td width="99" valign="top"></td>
<td width="307" valign="top">Accès à des données sensibles via la balise &lt;link&gt; dans un contexte d&#8217;appel CSS</td>
</tr>
<tr>
<td width="113" valign="top"><a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0315">CVE-2010-0315</a></td>
<td width="139" valign="top">Google Chrome</td>
<td width="99" valign="top"></td>
<td width="307" valign="top">Accès à des données sensibles via la balise &lt;link&gt; dans un contexte d&#8217;appel CSS</td>
</tr>
<tr>
<td width="113" valign="top"><a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0249">CVE-2010-0249</a></td>
<td width="139" valign="top">Microsoft Internet Explorer</td>
<td width="99" valign="top">6 &#8211; 8</td>
<td width="307" valign="top">Exécution de code arbitraire, <em><span style="text-decoration: underline;">faille 0-day exploitée courant Janvier</span></em></td>
</tr>
<tr>
<td width="113" valign="top"><a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0318">CVE-2010-0318</a></td>
<td width="139" valign="top">FreeBSD</td>
<td width="99" valign="top">7.1, 7.2 et 8.0</td>
<td width="307" valign="top">Possibilité de lire ou modifier des fichiers sans autorisation dans un contexte particulier (ZFS)</td>
</tr>
<tr>
<td width="113" valign="top"><a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0018">CVE-2010-0018</a></td>
<td width="139" valign="top">Microsoft Windows</td>
<td width="99" valign="top">2000 SP4, XP SP2-SP3, 2003 SP2, Vista, 2008, 2008 R2 et 7</td>
<td width="307" valign="top"><em>Patch Day</em> - Exécution de code arbitraire via le moteur de polices de caractères Embedded OpenType (EOT)</td>
</tr>
</tbody></table>
<p>&nbsp;</p>

<p><strong>Web</strong></p>
<table border="0" cellspacing="0" cellpadding="2" width="658">
<tbody>
<tr>
<td width="112" valign="top">
<p><strong>CVE</strong></p></td>
<td width="141" valign="top">
<p><strong>Application / Module</strong></p></td>
<td width="101" valign="top">
<p><strong>Version(s)</strong></p></td>
<td width="302" valign="top">
<p><strong>Détail</strong></p></td>
</tr>
<tr>
<td width="112" valign="top"><a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2009-4598">CVE-2009-4598</a></td>
<td width="141" valign="top">Joomla / JPhoto</td>
<td width="101" valign="top">1.0</td>
<td width="302" valign="top">Injection SQL via le paramètre <em>id</em></td>
</tr>
<tr>
<td width="112" valign="top"><a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2009-4599">CVE-2009-4599</a></td>
<td width="141" valign="top">Joomla / JS Jobs</td>
<td width="101" valign="top">1.0.5.6</td>
<td width="302" valign="top">Injections SQL multiples via les paramètres <em>md</em> et <em>oi</em></td>
</tr>
<tr>
<td width="112" valign="top"><a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2009-4604">CVE-2009-4604</a></td>
<td width="141" valign="top">Joomla / Fernando Soares Mamboleto</td>
<td width="101" valign="top">2.0 RC3</td>
<td width="302" valign="top">Injection de fichiers PHP via une faille <em>include</em></td>
</tr>
</tbody></table>
<p>&nbsp;</p>

<p>Voilà pour le 4ème volume du 3S … <em>Have a nice week</em>.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblog.kdecherf.com%2F2010%2F01%2F18%2Fsunday-security-summary-4%2F&amp;linkname=Sunday%20Security%20Summary%20%234"><img src="http://blog.kdecherf.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kdecherf_blog?a=T-V9YAkZQOk:AutuToc4TFE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kdecherf_blog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kdecherf_blog?a=T-V9YAkZQOk:AutuToc4TFE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/kdecherf_blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kdecherf_blog?a=T-V9YAkZQOk:AutuToc4TFE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/kdecherf_blog?i=T-V9YAkZQOk:AutuToc4TFE:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/kdecherf_blog/~4/T-V9YAkZQOk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.kdecherf.com/2010/01/18/sunday-security-summary-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.kdecherf.com/2010/01/18/sunday-security-summary-4/</feedburner:origLink></item>
		<item>
		<title>RSA : 768 bits c’est has been, passe à 1024</title>
		<link>http://feedproxy.google.com/~r/kdecherf_blog/~3/HXmNaj2imKs/</link>
		<comments>http://blog.kdecherf.com/2010/01/17/rsa-768-bits-cest-has-been-passe-1024/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 18:21:13 +0000</pubDate>
		<dc:creator>Kevin Decherf</dc:creator>
				<category><![CDATA[Actualité]]></category>
		<category><![CDATA[Sécurité]]></category>

		<guid isPermaLink="false">http://blog.kdecherf.com/?p=1247</guid>
		<description><![CDATA[Il fallait s&#8217;y attendre, le 12 décembre dernier une équipe de chercheurs dirigée par T. Kleinjung a réussi à factoriser une clé RSA de 768 bits, le projet aura duré un an et demi.  Pour ceux qui ne connaissent pas, l&#8217;algorithme RSA (Rivest Shamir Adleman) est un algorithme de chiffrement asymétrique à clé publique. [...]]]></description>
			<content:encoded><![CDATA[<p>Il fallait s&#8217;y attendre, le 12 décembre dernier une équipe de chercheurs dirigée par T. Kleinjung a réussi à factoriser une clé RSA de <strong>768 bits</strong>, le projet aura duré <strong>un an et demi</strong>.</p>  <p>Pour ceux qui ne connaissent pas, l&#8217;algorithme <strong>RSA</strong> (<em>Rivest Shamir Adleman</em>) est un algorithme de chiffrement asymétrique à clé publique. Cet algorithme a été introduit en 1977 par<em> </em><a href="http://fr.wikipedia.org/wiki/Ron_Rivest"><em>Ron Rivest</em></a><em>, </em><a href="http://fr.wikipedia.org/wiki/Adi_Shamir"><em>Adi Shamir</em></a><em> </em>et<em> </em><a href="http://fr.wikipedia.org/wiki/Len_Adleman"><em>Len Adleman</em></a>.</p>  <p>Je ne vais pas m&#8217;étendre sur la présentation de cet algorithme, <a href="http://fr.wikipedia.org/wiki/Rivest_Shamir_Adleman">Wikipedia</a> le fait très bien. Si vous voulez en savoir plus sur le mechanisme de fonctionnement, vous pouvez toujours vous référer à <a href="http://www.siteduzero.com/tutoriel-3-2170-la-cryptographie-asymetrique-rsa.html">l&#8217;article</a> du Site du Zéro.</p>  <p>Partant de ce principe, nous ne pouvons pas parler de &quot;casser&quot; l&#8217;algorithme mais de factorisation de clé. La consommation en ressources dépend directement de la taille de clé, sachant que pour une clé 768 bits il faut approximativement <strong>1 500 ans</strong> pour la factoriser à l&#8217;aide un Opteron 2.20 Ghz. Le résultat final occupe pas moins de 5 To et a demandé plusieurs centaines de machines. Vous trouverez le PDF du projet <a href="http://eprint.iacr.org/2010/006.pdf">ici</a>.</p>  <p>Jusqu&#8217;en mai 2007, les laboratoires RSA organisaient le <strong>concours de factorisation RSA</strong> avec un bon prix selon la taille de clé factorisée. Si le concours était encore d&#8217;actualité, T. Kleinjung et son équipe auraient touché <a href="http://fr.wikipedia.org/wiki/Comp%C3%A9tition_de_factorisation_RSA">50 000 dollars</a>.</p>  <p>Le NIST recommande donc de passer sur des clés d&#8217;une taille minimale de 1024 bits. Une hypothèse très controversée indique que les clés de 1024 bits pourraient être factorisées d&#8217;ici la fin de l&#8217;année étant donné que le rapport puissance de calcul / machine augmente sensiblement. La taille la plus répandue reste 2048 bits, et pour les paranos vive les clés de 4096 bits <img src='http://blog.kdecherf.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>  <p>&#160;</p>  <p>Petite information à part pour les personnes qui se posent des questions au regard de la loi française : sachez que depuis le 21 juin 2004, la <a href="http://fr.wikipedia.org/wiki/Loi_pour_la_confiance_dans_l'%C3%A9conomie_num%C3%A9rique">Loi pour la Confiance dans l&#8217;Economie Numérique</a> a totalement libéralisé l&#8217;utilisation des algorithmes de chiffrement à l&#8217;intérieur du pays (l&#8217;import / export est soumis à certaines règles). Pour plus d&#8217;informations sur les règlementations en matière de sécurité des données en France, visitez le <a href="http://www.ssi.gouv.fr/">site</a> de l&#8217;Agence Nationale de la Sécurité des Systèmes d&#8217;Information.</p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblog.kdecherf.com%2F2010%2F01%2F17%2Frsa-768-bits-cest-has-been-passe-1024%2F&amp;linkname=RSA%20%3A%20768%20bits%20c%26%238217%3Best%20has%20been%2C%20passe%20%26agrave%3B%201024"><img src="http://blog.kdecherf.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kdecherf_blog?a=HXmNaj2imKs:7SPM7LkfiBY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kdecherf_blog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kdecherf_blog?a=HXmNaj2imKs:7SPM7LkfiBY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/kdecherf_blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kdecherf_blog?a=HXmNaj2imKs:7SPM7LkfiBY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/kdecherf_blog?i=HXmNaj2imKs:7SPM7LkfiBY:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/kdecherf_blog/~4/HXmNaj2imKs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.kdecherf.com/2010/01/17/rsa-768-bits-cest-has-been-passe-1024/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://blog.kdecherf.com/2010/01/17/rsa-768-bits-cest-has-been-passe-1024/</feedburner:origLink></item>
		<item>
		<title>PatchDay : Microsoft commence l’année doucement</title>
		<link>http://feedproxy.google.com/~r/kdecherf_blog/~3/zs8caPGX_sQ/</link>
		<comments>http://blog.kdecherf.com/2010/01/12/patchday-microsoft-commence-lannee-doucement/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 21:20:57 +0000</pubDate>
		<dc:creator>Kevin Decherf</dc:creator>
				<category><![CDATA[Sécurité]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[patchday]]></category>

		<guid isPermaLink="false">http://blog.kdecherf.com/?p=1258</guid>
		<description><![CDATA[
Les failles seraient-elles en vacances chez Microsoft ? En tout cas, c&#8217;est ce qu&#8217;on pourrait croire à la vue de cette première compilation mensuelle de bulletins de sécurité  de l&#8217;année qui ne comprend &#8230; qu&#8217;un seul bulletin.
&#160;


&#160;

Bien que noté comme critique, ce bulletin reste en sévérité faible pour toutes les versions de Windows sauf Windows [...]]]></description>
			<content:encoded><![CDATA[
<p>Les failles seraient-elles en vacances chez Microsoft ? En tout cas, c&#8217;est ce qu&#8217;on pourrait croire à la vue de cette première compilation mensuelle de bulletins de sécurité  de l&#8217;année qui ne comprend &#8230; qu&#8217;un seul bulletin.</p>
<p>&nbsp;</p>

<p><a href="http://blog.kdecherf.com/wp-content/uploads/2009/08/PatchDay1.png"><img class="aligncenter size-full wp-image-1052" title="PatchDay" src="http://blog.kdecherf.com/wp-content/uploads/2009/08/PatchDay1.png" alt="" width="300" height="175" /></a></p>
<p>&nbsp;</p>

<p><em>Bien que noté comme critique, ce bulletin reste en sévérité faible pour toutes les versions de Windows sauf Windows 2000 SP4 :</em></p>
<ul>
	<li><strong><a href="http://www.microsoft.com/technet/security/bulletin/ms10-001.mspx">MS10-001</a> &#8211; Critique</strong> : Vulnérabilité dans le moteur de rendu des polices <em>Embedded OpenType</em> (EOT) permettant l&#8217;exécution de code à distance. Cette faille concerne des applications telles qu&#8217;Internet Explorer, Office PowerPoint ou encore Word. Ce bulletin remplace le précédant bulletin <strong>MS09-029</strong>.</li>
</ul>
<p>&nbsp;</p>

<p>Bon patch day <img src='http://blog.kdecherf.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>&nbsp;</p>

<p><em>Source : </em><a href="http://www.microsoft.com/technet/security/bulletin/ms10-jan.mspx"><em>Microsoft Security Response Center</em></a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblog.kdecherf.com%2F2010%2F01%2F12%2Fpatchday-microsoft-commence-lannee-doucement%2F&amp;linkname=PatchDay%20%3A%20Microsoft%20commence%20l%26%238217%3Bann%C3%A9e%20doucement"><img src="http://blog.kdecherf.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kdecherf_blog?a=zs8caPGX_sQ:8azfgGYjnUI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kdecherf_blog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kdecherf_blog?a=zs8caPGX_sQ:8azfgGYjnUI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/kdecherf_blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kdecherf_blog?a=zs8caPGX_sQ:8azfgGYjnUI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/kdecherf_blog?i=zs8caPGX_sQ:8azfgGYjnUI:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/kdecherf_blog/~4/zs8caPGX_sQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.kdecherf.com/2010/01/12/patchday-microsoft-commence-lannee-doucement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.kdecherf.com/2010/01/12/patchday-microsoft-commence-lannee-doucement/</feedburner:origLink></item>
		<item>
		<title>Zend Framework : Sortie des versions 1.9.7, 1.8.5 et 1.7.9</title>
		<link>http://feedproxy.google.com/~r/kdecherf_blog/~3/CfLmaPa4cR0/</link>
		<comments>http://blog.kdecherf.com/2010/01/12/zend-framework-sortie-des-versions-1-9-7-1-8-5-et-1-7-9/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 21:05:16 +0000</pubDate>
		<dc:creator>Kevin Decherf</dc:creator>
				<category><![CDATA[Actualité]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[zend]]></category>

		<guid isPermaLink="false">http://blog.kdecherf.com/?p=1252</guid>
		<description><![CDATA[
L&#8217;équipe en charge du développement du célèbre framework PHP vient d&#8217;annoncer la disponibilité d&#8217;une mise à jour pour ses trois branches 1.9, 1.8 et 1.7.
&#160;


Estampillées 1.9.7, 1.8.5 et 1.7.9, ces mises à jour corrigent 6 failles de sécurité découvertes il y a quelques semaines ainsi que près de 40 bugs. Vous retrouverez les changelogs ici, [...]]]></description>
			<content:encoded><![CDATA[
<p>L&#8217;équipe en charge du développement du célèbre framework PHP vient d&#8217;annoncer la disponibilité d&#8217;une mise à jour pour ses trois branches <strong>1.9</strong>, <strong>1.8</strong> et <strong>1.7</strong>.</p>
<p>&nbsp;</p>

<p><a href="http://blog.kdecherf.com/wp-content/uploads/2009/05/zend-framework.png"><img class="aligncenter size-full wp-image-691" title="zend-framework" src="http://blog.kdecherf.com/wp-content/uploads/2009/05/zend-framework.png" alt="" width="185" height="187" /></a></p>
<p>Estampillées <strong>1.9.7</strong>, <strong>1.8.5</strong> et <strong>1.7.9</strong>, ces mises à jour corrigent <strong>6 failles de sécurité</strong> découvertes il y a quelques semaines ainsi que près de <strong>40 bugs</strong>. Vous retrouverez les changelogs <a href="http://framework.zend.com/changelog/1.9.7"><em>ici</em></a>, <a href="http://framework.zend.com/changelog/1.8.5"><em>ici</em></a> et <a href="http://framework.zend.com/changelog/1.7.9"><em>là</em></a>.</p>
<p>Cinq failles de sécurité, principalement des injections XSS et une injection MIME-type, concernent les modules <a href="http://framework.zend.com/security/advisory/ZF2010-06">Zend_Json</a>, <a href="http://framework.zend.com/security/advisory/ZF2010-05">Zend_Service_ReCaptcha_MailHide</a>, <a href="http://framework.zend.com/security/advisory/ZF2010-04">Zend_File_Transfer</a>, <a href="http://framework.zend.com/security/advisory/ZF2010-03">Zend_Filter_StripTags</a> et <a href="http://framework.zend.com/security/advisory/ZF2010-02">Zend_Dojo_View_Helper_Editor</a>. La sixième faille concerne une <a href="http://framework.zend.com/security/advisory/ZF2010-01">inconsistance</a> au niveau de l&#8217;encodage utilisé dans de nombreux modules.</p>
<p>La compagnie ajoute que la version 1.9.7 est la dernière <em>release</em> de la branche 1.9 avant la sortie de la version <strong>1.10</strong>. Version 1.10 qui, actuellement en <a href="http://devzone.zend.com/article/11503-Zend-Framework-1.10.0alpha1-Released">alpha</a>, devrait sortir en beta cette semaine puis en version finale un peu plus tard dans le mois.</p>
<p>&nbsp;</p>

<p><em>Source : </em><a href="http://devzone.zend.com/article/11622-Zend-Framework-1.9.7-1.8.5-and-1.7.9-Released"><em>Zend Developer Zone</em></a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblog.kdecherf.com%2F2010%2F01%2F12%2Fzend-framework-sortie-des-versions-1-9-7-1-8-5-et-1-7-9%2F&amp;linkname=Zend%20Framework%20%3A%20Sortie%20des%20versions%201.9.7%2C%201.8.5%20et%201.7.9"><img src="http://blog.kdecherf.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kdecherf_blog?a=CfLmaPa4cR0:zcLdiGVK-k8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kdecherf_blog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kdecherf_blog?a=CfLmaPa4cR0:zcLdiGVK-k8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/kdecherf_blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kdecherf_blog?a=CfLmaPa4cR0:zcLdiGVK-k8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/kdecherf_blog?i=CfLmaPa4cR0:zcLdiGVK-k8:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/kdecherf_blog/~4/CfLmaPa4cR0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.kdecherf.com/2010/01/12/zend-framework-sortie-des-versions-1-9-7-1-8-5-et-1-7-9/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.kdecherf.com/2010/01/12/zend-framework-sortie-des-versions-1-9-7-1-8-5-et-1-7-9/</feedburner:origLink></item>
		<item>
		<title>Magento : encadrer un bloc via les layouts</title>
		<link>http://feedproxy.google.com/~r/kdecherf_blog/~3/BGmmR_l1QHw/</link>
		<comments>http://blog.kdecherf.com/2010/01/11/magento-encadrer-un-bloc-via-les-layouts/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 13:11:32 +0000</pubDate>
		<dc:creator>Kevin Decherf</dc:creator>
				<category><![CDATA[Astuces]]></category>
		<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://blog.kdecherf.com/?p=1236</guid>
		<description><![CDATA[
Magento, mastodonte de l&#8217;e-Commerce, se veut être (sans aucun doute) la plateforme la moins bien documentée officiellement. Travaillant actuellement dessus, je ferai part ici de mes quelques astuces qui peuvent vous aider &#8230;

Ma première astuce concerne les blocs et les superbes layouts XML. Considérons le bloc statique left_anchor déclaré dans le layout comme suit :
 [...]]]></description>
			<content:encoded><![CDATA[
<p><strong>Magento</strong>, mastodonte de l&#8217;<em>e-Commerce</em>, se veut être (<em>sans aucun doute</em>) la plateforme la moins bien documentée officiellement. Travaillant actuellement dessus, je ferai part ici de mes quelques astuces qui peuvent vous aider &#8230;</p>
<p><a href="http://blog.kdecherf.com/wp-content/uploads/2010/01/magento_logo.gif"><img class="aligncenter size-full wp-image-1237" title="magento_logo" src="http://blog.kdecherf.com/wp-content/uploads/2010/01/magento_logo.gif" alt="" width="140" height="140" /></a></p>
<p>Ma première astuce concerne les blocs et les superbes layouts XML. Considérons le bloc statique <em>left_anchor</em> déclaré dans le layout comme suit :</p>
<pre class="brush: xml"> 
      &lt;block type=&quot;cms/block&quot; name=&quot;left_anchor&quot; as=&quot;left_anchor&quot;&gt;
       &lt;action method=&quot;setBlockId&quot;&gt; &lt;block_id&gt;left_anchor &lt;/block_id&gt;
      &lt;/action&gt;</pre>
<p>Au niveau design, vous devez impérativement encadrer le contenu par un <em>&lt;div id=&#8217;LeftAnchor&#8217;&gt;&lt;/div&gt;</em>.</p>
<p>Deux possibilités &#8216;rapides&#8217; s&#8217;offrent à vous : ajouter le conteneur directement dans le contenu du bloc statique ou encore encadrer le <em>$this-&gt;getChildHtml(&#8216;left_anchor&#8217;)</em> dans le template HTML si vous le pouvez.</p>
<p>Si vous ne pouvez ou ne voulez pas utiliser ces options, il vous reste une troisième alternative : le layout XML. On a à notre disposition un template <em>wrapper.phtml</em> et un type de bloc associé qui nous permet d&#8217;encadrer tout et n&#8217;importe quoi &#8230; Ainsi le layout donne :</p>
<pre class="brush: xml">&lt;block type=&quot;core/template&quot; name=&quot;leftanchor&quot; as=&quot;leftanchor&quot; template=&quot;page/html/wrapper.phtml&quot;&gt;
  &lt;block type=&quot;cms/block&quot; name=&quot;left_anchor&quot; as=&quot;left_anchor&quot;&gt;
      &lt;action method=&quot;setBlockId&quot;&gt;&lt;block_id&gt;left_anchor&lt;/block_id&gt;&lt;/action&gt;
  &lt;/block&gt;
  &lt;action method=&quot;setId&quot;&gt;&lt;id&gt;LeftAnchor&lt;/id&gt;&lt;/action&gt;
&lt;/block&gt;</pre>
<p>&nbsp;</p>

<p>Concrètement, l&#8217;action <em>setId</em> permet de déclarer l&#8217;id de la balise. De la même manière, vous avez les actions <em>setTag</em> si vous souhaitez utiliser autre chose que des <em>div</em>s et <em>setParams</em> pour ajouter des paramètres HTML personnalisés (<em>comme une classe CSS, par exemple</em>).</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblog.kdecherf.com%2F2010%2F01%2F11%2Fmagento-encadrer-un-bloc-via-les-layouts%2F&amp;linkname=Magento%20%3A%20encadrer%20un%20bloc%20via%20les%20layouts"><img src="http://blog.kdecherf.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kdecherf_blog?a=BGmmR_l1QHw:TlaWuAXqEvs:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kdecherf_blog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kdecherf_blog?a=BGmmR_l1QHw:TlaWuAXqEvs:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/kdecherf_blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kdecherf_blog?a=BGmmR_l1QHw:TlaWuAXqEvs:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/kdecherf_blog?i=BGmmR_l1QHw:TlaWuAXqEvs:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/kdecherf_blog/~4/BGmmR_l1QHw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.kdecherf.com/2010/01/11/magento-encadrer-un-bloc-via-les-layouts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.kdecherf.com/2010/01/11/magento-encadrer-un-bloc-via-les-layouts/</feedburner:origLink></item>
	</channel>
</rss>
