<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>SÃ©curitÃ© on To Linux and beyond !</title>
    <link>https://home.regit.org/tags/s%C3%A3curit%C3%A3/</link>
    <description>Recent content in SÃ©curitÃ© on To Linux and beyond !</description>
    <generator>Hugo</generator>
    <language>fr</language>
    <lastBuildDate>Sun, 17 Apr 2011 08:17:35 +0000</lastBuildDate>
    <atom:link href="https://home.regit.org/feed/tags/s%C3%A3curit%C3%A3/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Building Suricata under OpenBSD</title>
      <link>https://home.regit.org/2011/04/building-suricata-under-openbsd/</link>
      <pubDate>Sun, 17 Apr 2011 08:17:35 +0000</pubDate>
      <guid>https://home.regit.org/2011/04/building-suricata-under-openbsd/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://www.openinfosecfoundation.org/index.php/component/content/article/1-latest-news/121-suricata-11beta2-available&#34;&gt;Suricata 1.1beta2&lt;/a&gt; has brought &lt;a href=&#34;http://www.openbsd.org/&#34;&gt;OpenBSD&lt;/a&gt; to the list of supported operating system. I’m a total newbie to OpenBSD so excuse me for the lack of respect of OpenBSD standards and usages in this documentation.&lt;/p&gt;
&lt;p&gt;Here’s the different step, I’ve used to finalize the port starting from a fresh install of OpenBSD.&lt;/p&gt;
&lt;p&gt;If you want to use source taken from git, you will need to install building tools:&lt;/p&gt;
&lt;pre&gt;pkg_add git libtool&lt;/pre&gt;
&lt;p&gt;automake and autoconf need to be installed to. For a OpenBSD 4.8, one can run:&lt;/p&gt;</description>
    </item>
    <item>
      <title>Some new features of IPS mode in Suricata 1.1beta2</title>
      <link>https://home.regit.org/2011/04/some-new-features-of-ips-mode-in-suricata-1-1beta2/</link>
      <pubDate>Wed, 13 Apr 2011 22:37:12 +0000</pubDate>
      <guid>https://home.regit.org/2011/04/some-new-features-of-ips-mode-in-suricata-1-1beta2/</guid>
      <description>&lt;p&gt;The IDS/IPS suricata has a native support for Netfilter queue. This brings IPS functionnalities to users running Suricata on Linux.&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;http://www.openinfosecfoundation.org/index.php/component/content/article/1-latest-news/121-suricata-11beta2-available&#34;&gt;Suricata 1.1beta2&lt;/a&gt; introduces a lot of new features related to the NFQ mode.&lt;/p&gt;
&lt;h2 id=&#34;new-stream-inline-mode&#34;&gt;New stream inline mode&lt;/h2&gt;
&lt;p&gt;One of the main improvement of Suricata IPS mode is related with the new stream engine dedicated to inline. Victor Julien has a &lt;a href=&#34;http://www.inliniac.net/blog/2011/01/31/suricata-ips-improvements.html&#34;&gt;great blog post about it&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&#34;multiqueue-support&#34;&gt;Multiqueue support&lt;/h2&gt;
&lt;p&gt;Suricata can now be started on multiple queue by using a comma separated list of queue identifier on the command line. The following syntax:&lt;/p&gt;</description>
    </item>
    <item>
      <title>More about Suricata multithread performance</title>
      <link>https://home.regit.org/2011/02/more-about-suricata-multithread-performance/</link>
      <pubDate>Tue, 15 Feb 2011 23:30:49 +0000</pubDate>
      <guid>https://home.regit.org/2011/02/more-about-suricata-multithread-performance/</guid>
      <description>&lt;p&gt;Following my &lt;a href=&#34;http://home.regit.org/?p=438&#34;&gt;preceding post&lt;/a&gt; on suricata multithread performance I’ve decided to continue to work on the subject.&lt;/p&gt;
&lt;p&gt;By using perf-tool, I found out that when the number of detect threads was increasing, more and more time was used in a spin lock. One of the possible explanation is that the default running mode for pcap file (RunModeFilePcapAuto) is not optimal. The only decode thread take some time to treat the packets and he is not fast enough to send data to the multiple detect threads. This is triggering a lot of wait and a CPU usage increase. Following a discussion with Victor Julien, I decide to give a try to an alternate run mode for working on pcap file, RunModeFilePcapAutoFp.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Using Suricata with CUDA</title>
      <link>https://home.regit.org/2010/05/using-suricata-with-cuda/</link>
      <pubDate>Sun, 23 May 2010 19:10:25 +0000</pubDate>
      <guid>https://home.regit.org/2010/05/using-suricata-with-cuda/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://www.openinfosecfoundation.org/&#34; target=&#34;_blank&#34;&gt;Suricata&lt;/a&gt; is a next generation IDS/IPS engineÂ developedÂ by the &lt;a href=&#34;http://www.openinfosecfoundation.org/index.php/consortium-members&#34;&gt;Open Information Security Foundation&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;This article describes the installation, setup and usage of &lt;a href=&#34;http://www.openinfosecfoundation.org/&#34; target=&#34;_blank&#34;&gt;Suricata&lt;/a&gt; with CUDA support on a &lt;a href=&#34;http://www.ubuntu.com&#34; target=&#34;_blank&#34;&gt;Ubuntu&lt;/a&gt; 10.04 64bit. For 32 bit users, simply remove 64 occurances where you find them.&lt;/p&gt;
&lt;h2 id=&#34;preparation&#34;&gt;Preparation&lt;/h2&gt;
&lt;p&gt;You need to download &lt;span style=&#34;text-decoration: underline;&#34;&gt;both&lt;/span&gt; Developper driver and Cuda driver from &lt;a title=&#34;Nvidia Download&#34; href=&#34;http://developer.nvidia.com/object/cuda_3_0_downloads.html#Linux&#34; target=&#34;_blank&#34;&gt;nvidia website&lt;/a&gt;. I really mean both because Ubuntu nvidia drivers are not working with CUDA.&lt;/p&gt;
&lt;p&gt;I’ve first downloaded and installed CUDA toolkit for Ubuntu 9.04. It was straightforward:&lt;/p&gt;</description>
    </item>
    <item>
      <title>Lutter contre la faille DNS avec Netfilter</title>
      <link>https://home.regit.org/2008/07/lutter-contre-la-faille-dns-avec-netfilter/</link>
      <pubDate>Mon, 14 Jul 2008 16:53:02 +0000</pubDate>
      <guid>https://home.regit.org/2008/07/lutter-contre-la-faille-dns-avec-netfilter/</guid>
      <description>&lt;p&gt;La dÃ©couverte rÃ©cente d’une mÃ©thode permettant d’exploiter des failles dans la plupart des implÃ©mentations DNS Ã  fait beaucoup de bruits. J’en tiens pour preuve des articles dans ZDNET (&lt;a href=&#34;http://www.zdnet.fr/actualites/informatique/0,39040745,39382233,00.htm&#34;&gt;Colmatage d’une faille de grande envergure sur les serveurs DNS&lt;/a&gt;), Le Monde et les Ã©chos.&lt;/p&gt;
&lt;p&gt;Si l’on Ã©tudie ce qu’Ã©crit le CERT dans l’article &lt;a href=http://www.kb.cert.org/vuls/id/800113&gt;Multiple DNS implementations vulnerable to cache poisoning&lt;/a&gt;, une mÃ©thode de contournement de la faille consiste Ã  rendre alÃ©atoire le port source utilisÃ© pour les requÃªtes DNS.&lt;/p&gt;</description>
    </item>
    <item>
      <title>PrÃ©sentation de ulogd2 et nf3d au SSTIC 2008</title>
      <link>https://home.regit.org/2008/06/presentation-de-ulogd2-et-nf3d-au-sstic-2008/</link>
      <pubDate>Tue, 10 Jun 2008 16:35:27 +0000</pubDate>
      <guid>https://home.regit.org/2008/06/presentation-de-ulogd2-et-nf3d-au-sstic-2008/</guid>
      <description>&lt;p&gt;J’ai prÃ©sentÃ© Ulogd2 et nf3d lors de la rump session du &lt;a href=&#34;http://www.sstic.org/SSTIC08/info.do&#34;&gt;SSTIC 2008&lt;/a&gt;.&lt;br&gt;
AprÃ¨s une brÃ¨ve introduction sur l’architecture de ulogd2, j’ai montrÃ© le rÃ©sultat de mon travail sur la visualisation des connexions et des paquets logguÃ©s, &lt;a href=&#34;https://github.com/regit/nf3d&#34;&gt;nf3d&lt;/a&gt;.&lt;br&gt;
Les &lt;a href=&#34;http://home.regit.org/~regit/data/ulogd2-nf3d.pdf&#34;&gt;slides sont disponibles&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Je me rend compte que je n’ai pas encore parlÃ© de nf3d ici. Il s’agit d’un logiciel reprÃ©sentant sur une vue 3D les connexions Netfilter et les paquets logguÃ©s. Comme une image vaut mieux qu’un long discours :&lt;/p&gt;</description>
    </item>
    <item>
      <title>Wolfotrack ou comment gÃ©rer les connexions de Netfilter</title>
      <link>https://home.regit.org/2008/04/wolfotrack-ou-comment-gerer-les-connexions-de-netfilter/</link>
      <pubDate>Wed, 30 Apr 2008 21:57:17 +0000</pubDate>
      <guid>https://home.regit.org/2008/04/wolfotrack-ou-comment-gerer-les-connexions-de-netfilter/</guid>
      <description>&lt;p&gt;AprÃ¨s des annÃ©es de dÃ©veloppements acharnÃ©s, l’interface ultime de gestion du suivi de connexions de Netfilter est enfin disponible :&lt;/p&gt;
&lt;center&gt;
  &lt;br /&gt;
&lt;/center&gt;
&lt;p&gt;&lt;a href=&#34;http://software.inl.fr/trac/wiki/Wolfotrack&#34;&gt;Wolfotrack&lt;/a&gt;, c’est son nom, est une interface de gestion du suivi de connexions basÃ© sur wolfeinstein 3D. Chaque soldat rÃ©prÃ©sente une connexion et pour tuer une connexion, il suffit de tuer le soldat correspondant.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Interview dans le cadre des RMLLs</title>
      <link>https://home.regit.org/2008/04/une-interview-dans-le-cadre-des-rmlls/</link>
      <pubDate>Fri, 25 Apr 2008 13:50:58 +0000</pubDate>
      <guid>https://home.regit.org/2008/04/une-interview-dans-le-cadre-des-rmlls/</guid>
      <description>&lt;p&gt;Je vais donner une &lt;a href=&#34;http://2008.rmll.info/Conference-Presentation-de-NuFW-le.html&#34;&gt;confÃ©rence sur NuFW&lt;/a&gt; et les interactions entre espace utilisateur et noyau dans Netfilter lors des &lt;a href=&#34;http://2008.rmll.info/&#34;&gt;rencontres mondiales du logiciel libre 2008&lt;/a&gt; Ã  Mont-de-Marsans.&lt;/p&gt;
&lt;p&gt;Dans ce cadre, Christophe Brocas m’a gentillement interviewÃ© par mail. L’interview est en ligne sur le site des RMLLs : &lt;a href=&#34;http://2008.rmll.info/Interview-Eric-Leblond-NuFW.html&#34;&gt;Interview Ã‰ric Leblond&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Ã€ noter qu’une &lt;a href=&#34;http://2008.rmll.info/Interview-Pablo-Neira-Ayuso.html&#34;&gt;interview de l’excellent Pablo Neira&lt;/a&gt; est elle aussi disponible sur le site.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Spam et astuce d’affichage</title>
      <link>https://home.regit.org/2008/04/spam-et-astuce-daffichage/</link>
      <pubDate>Fri, 25 Apr 2008 07:21:55 +0000</pubDate>
      <guid>https://home.regit.org/2008/04/spam-et-astuce-daffichage/</guid>
      <description>&lt;p&gt;J’ai reÃ§u ce spam qui semblait Ã  premiÃ¨re vue avoir complÃ¨tement passÃ© indemne mes logiciels anti-spams. Le sujet notamment n’Ã©tait pas tagguÃ© *SPAM*. Enfin, je ne voyais pas qu’il Ã©tait tagguÃ© :&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Received: by d10.nt.com (Postfix, from userid 0)&lt;br&gt;
id D73C21E4490; Thu, 24 Apr 2008 23:03:13 +0200 (CEST)&lt;br&gt;
To: &lt;a href=&#34;mailto:XXXXXXXX@XXX.fr&#34;&gt;XXXXXXXX@XXX.fr&lt;/a&gt;&lt;br&gt;
Subject: Invitation XXXXXXXX 2008&lt;br&gt;
Date: Thu, 24 Apr 2008 23:03:13 +0200&lt;br&gt;
From: SPAMMER &lt;a href=&#34;mailto:noreply@mailing.spam.com&#34;&gt;noreply@mailing.spam.com&lt;/a&gt;&lt;br&gt;
Message-ID: &lt;a href=&#34;mailto:67190e93d75ec77aea41896d6c6d6f89@localhost.localdomain&#34;&gt;67190e93d75ec77aea41896d6c6d6f89@localhost.localdomain&lt;/a&gt;&lt;br&gt;
X-Priority: 3&lt;br&gt;
X-Mailer: EmailingSoft Powered [version 1.73]&lt;br&gt;
MIME-Version: 1.0&lt;br&gt;
Content-Type: text/html; charset=”iso-8859-1″&lt;br&gt;
Content-Transfer-Encoding: quoted-printable&lt;br&gt;
X-Spam-Score: 7.7 (+++++++)&lt;br&gt;
Subject: *SPAM* Invitation XXXXXXXXX 2008&lt;/p&gt;</description>
    </item>
    <item>
      <title>Fatiguant de gÃ©rer son pare-feu</title>
      <link>https://home.regit.org/2008/04/fatiguant-de-gerer-son-pare-feu/</link>
      <pubDate>Fri, 25 Apr 2008 05:49:02 +0000</pubDate>
      <guid>https://home.regit.org/2008/04/fatiguant-de-gerer-son-pare-feu/</guid>
      <description>&lt;p&gt;Jusqu’ici la gestion de pare-feu c’Ã©tait difficille, il fallait gratter gratter :&lt;/p&gt;
&lt;p style=&#34;text-align: center;&#34;&gt;
  &lt;a href=&#34;http://home.regit.org/uploads/2008/04/gratter.jpeg&#34;&gt;&lt;img loading=&#34;lazy&#34; decoding=&#34;async&#34; class=&#34;aligncenter size-full wp-image-99&#34; title=&#34;gratter&#34; src=&#34;http://home.regit.org/uploads/2008/04/gratter.jpeg&#34; alt=&#34;&#34; width=&#34;112&#34; height=&#34;83&#34; /&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;Ã€ partir de lundi, Ã§a sera facile et amusant :&lt;br&gt;
&lt;a href=&#34;http://home.regit.org/uploads/2008/04/conntrack-teaser.png&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p style=&#34;text-align: center;&#34;&gt;
  &lt;img loading=&#34;lazy&#34; decoding=&#34;async&#34; class=&#34;alignnone size-medium wp-image-98&#34; title=&#34;conntrack-teaser&#34; src=&#34;http://home.regit.org/uploads/2008/04/conntrack-teaser.png&#34; alt=&#34;&#34; width=&#34;95&#34; height=&#34;92&#34; /&gt;
&lt;/p&gt;
&lt;p&gt;Plus d’informations Ã  venir trÃ¨s bientÃ´t ! Les abonnÃ©s de la liste Netfilter seront les premiers avertis 😉&lt;/p&gt;</description>
    </item>
    <item>
      <title>NuFW.Live fourni avec Linux Magazin Allemagne</title>
      <link>https://home.regit.org/2008/04/nufwlive-fourni-avec-linux-magazin-allemagne/</link>
      <pubDate>Fri, 25 Apr 2008 00:10:13 +0000</pubDate>
      <guid>https://home.regit.org/2008/04/nufwlive-fourni-avec-linux-magazin-allemagne/</guid>
      <description>&lt;p&gt;Presque tout est dans le titre : &lt;a href=&#34;http://live.nufw.org/&#34; target=&#34;_blank&#34;&gt;NuFW.live&lt;/a&gt; 1.0.2 est le CD fourni avec le magazine &lt;a href=&#34;https://shop.linuxnewmedia.de/store/sh02/SH20024/de&#34; target=&#34;_blank&#34;&gt;Sonderheft Linux-Magazin 02/08&lt;/a&gt; dont le titre est “Security – Sicher im Netz” :&lt;/p&gt;
&lt;p style=&#34;text-align: center;&#34;&gt;
  &lt;a href=&#34;https://shop.linuxnewmedia.de/materials/images/sh02/gross/SH20024_gross&#34;&gt;&lt;img decoding=&#34;async&#34; src=&#34;https://shop.linuxnewmedia.de/materials/images/sh02/mittel/SH20024_mittel/variant/original&#34; alt=&#34;Couverture de Linux Magazin DE&#34; /&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;Ce magazine est un trimestriel sur Linux qui me fait regretter mon faible niveau en allemand. Ce numÃ©ro sur la sÃ©curitÃ© semble en effet contenir des articles trÃ¨s intÃ©ressants que je suis quasiment incapable de dÃ©chiffrer.&lt;/p&gt;
&lt;p&gt;Un grand merci Ã  la rÃ©daction du magazine pour avoir choisi de distribuer le CD NuFW.Live dans ce numÃ©ro.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Cisco, le 1er avril perpÃ©tuel</title>
      <link>https://home.regit.org/2008/04/cisco-le-1er-avril-perpetuel/</link>
      <pubDate>Fri, 18 Apr 2008 09:36:20 +0000</pubDate>
      <guid>https://home.regit.org/2008/04/cisco-le-1er-avril-perpetuel/</guid>
      <description>&lt;p&gt;Bon, Cisco avait annoncÃ© qu’il ne sortirait des alertes de sÃ©curitÃ©s que deux fois par an. Sauf si une alerte Ã©tait suffisamment sÃ©vÃ¨re ou critique pour justifier une modification d’agenda.&lt;/p&gt;
&lt;p&gt;Il n’aura pas fallu longtemps : Une &lt;a href=&#34;http://www.cisco.com/warp/public/707/cisco-sa-20080416-nac.shtml&#34; target=&#34;_blank&#34;&gt;prise de contrÃ´le est rÃ©alisable sur le composant NAC de Cisco&lt;/a&gt;. La faille est prodigieuse, &lt;a href=&#34;http://www.heise-online.co.uk/security/Vulnerability-in-Cisco-NAC-enables-server-capture--/news/110554&#34; target=&#34;_blank&#34;&gt;la clÃ© partagÃ© Ã©tait rÃ©cupÃ©rable dans les flux d’erreurs&lt;/a&gt;. Mais rassurons nous&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Cisco has released free software updates that address this vulnerability.&lt;/p&gt;</description>
    </item>
    <item>
      <title>NuFW Ã  CansecWest 2008</title>
      <link>https://home.regit.org/2008/04/nufw-a-cansecwest-2008/</link>
      <pubDate>Tue, 01 Apr 2008 15:35:21 +0000</pubDate>
      <guid>https://home.regit.org/2008/04/nufw-a-cansecwest-2008/</guid>
      <description>&lt;p&gt;Une fois n’est pas coutume, deux mots de la confÃ©rence sÃ©curitÃ© &lt;a href=&#34;http://cansecwest.com/&#34; target=&#34;_blank&#34;&gt;Cansecwest&lt;/a&gt; oÃ¹ deux de mes acolytes d’INL se sont rendus pour faire une confÃ©rence. Ils en ont profitÃ© pour faire une lightning talk sur &lt;a href=&#34;http://www.nufw.org/&#34;&gt;NuFW&lt;/a&gt; :&lt;/p&gt;
&lt;img decoding=&#34;async&#34; src=&#34;http://farm3.static.flickr.com/2055/2376994874_9ee4530bb9.jpg?v=0&#34; alt=&#34;NuFW Ã  CansecWest&#34; /&gt; 
&lt;p&gt;A priori, ils en ont aussi profitÃ© pour se dÃ©saltÃ©rer :&lt;/p&gt;
&lt;img decoding=&#34;async&#34; src=&#34;http://farm4.static.flickr.com/3168/2376161219_8d49f95237.jpg?v=0&#34; alt=&#34;Toady Ã  Vancouver&#34; /&gt;</description>
    </item>
    <item>
      <title>Cisco en avance sur le poisson d’Avril et Halloween</title>
      <link>https://home.regit.org/2008/03/cisco-en-avance-sur-le-poisson-davril-et-halloween/</link>
      <pubDate>Thu, 20 Mar 2008 07:16:17 +0000</pubDate>
      <guid>https://home.regit.org/2008/03/cisco-en-avance-sur-le-poisson-davril-et-halloween/</guid>
      <description>&lt;p&gt;La companie &lt;a href=&#34;http://www.cisco.com/&#34;&gt;Cisco&lt;/a&gt;, leader des Ã©quipements rÃ©seau, a le sens de l’humour mais a aussi un problÃ¨me de calendrier. Elle a en effet annoncÃ© qu’Ã  partir du 26 mars, les &lt;a href=&#34;http://www.cisco.com/en/US/products/products_security_advisories_listing.html&#34;&gt;correctifs de sÃ©curitÃ© sur IOS ne seront publiÃ©s que deux fois par an&lt;/a&gt;, les 4eme mercredi du mois de mars et de septembre. Ã€ mon avis, ils devaient vouloir sortir l’annonce le premier avril pour faire une blague Ã  leurs utilisateurs. J’imagine en effet Renault annoncer :&lt;/p&gt;</description>
    </item>
    <item>
      <title>NuFW.Live : tester NuFW, c’est facile !</title>
      <link>https://home.regit.org/2008/01/nufwlive-tester-nufw-cest-facile/</link>
      <pubDate>Mon, 21 Jan 2008 16:41:32 +0000</pubDate>
      <guid>https://home.regit.org/2008/01/nufwlive-tester-nufw-cest-facile/</guid>
      <description>&lt;p&gt;AprÃ¨s des annÃ©es de travail (et de documentation) sur &lt;a href=&#34;http://www.nufw.org/&#34; target=&#34;_blank&#34;&gt;NuFW&lt;/a&gt;, il restait tout de mÃªme difficile de tester le projet. Il existe maintenant une faÃ§on simple de le faire grÃ¢ce au Live CD &lt;a href=&#34;http://live.nufw.org/&#34; target=&#34;_blank&#34;&gt;NuFW.Live&lt;/a&gt;. BasÃ© sur &lt;a href=&#34;http://www.knoppix.org/&#34;&gt;knoppix&lt;/a&gt;, ce CD dÃ©veloppÃ© par &lt;a href=&#34;http://www.inl.fr/&#34; target=&#34;_blank&#34;&gt;INL&lt;/a&gt;, contient NuFW et l’ensemble des briques associÃ©s.&lt;/p&gt;
&lt;p&gt;Un tutoriel simple permet de tester et de valider le fonctionnement de NuFW. Au final cela donne un NuFW qui marche en quelques clics et qui plus est avec les derniÃ¨res interfaces web :&lt;/p&gt;</description>
    </item>
    <item>
      <title>Wanadoo, l’authentification et la porte ouverte</title>
      <link>https://home.regit.org/2006/04/wanadoo-lauthentification-et-la-porte-ouverte/</link>
      <pubDate>Mon, 24 Apr 2006 17:04:14 +0000</pubDate>
      <guid>https://home.regit.org/2006/04/wanadoo-lauthentification-et-la-porte-ouverte/</guid>
      <description>&lt;p&gt;Soucieuse du confort de ses abonnÃ©s, wanadoo est beaucoup moins prÃ©occupÃ© par leur sÃ©curitÃ©. J’en tiens pour preuve leur politique d’authentification sur &lt;a href=&#34;http://www.wanadoo.fr&#34; title=&#34;Wanadoo&#34;&gt;wanadoo.fr&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Si une requÃªte provient de l’adresse IP de l’ADSL de monsieur Dupont c’est forcÃ©ment monsieur Dupont qui est Ã  l’origine de la requÃªte. On ne passe pas Ã  Madame Dupont qui pourrait trÃ¨s bien elle-aussi vouloir consulter ses mails sur le webmail de wanadoo.fr. HÃ© oui, j’en sens certains mÃ©dusÃ©s, l’authentification est totale et va au moins jusqu’au webmail.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
