<?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>Mohammed CHERIFI &#187; md5rdb</title>
	<atom:link href="http://www.mcherifi.org/tag/md5rdb/feed" rel="self" type="application/rss+xml" />
	<link>http://www.mcherifi.org</link>
	<description>Another Web Developper Blog!</description>
	<lastBuildDate>Tue, 31 Jan 2012 18:42:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>MD5Spider, Reversing d&#8217;un hash MD5</title>
		<link>http://www.mcherifi.org/hacking/md5-spider-reversing-dun-hash-md5.html</link>
		<comments>http://www.mcherifi.org/hacking/md5-spider-reversing-dun-hash-md5.html#comments</comments>
		<pubDate>Sun, 26 Jul 2009 05:37:22 +0000</pubDate>
		<dc:creator>Mohammed CHERIFI</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[crack md5]]></category>
		<category><![CDATA[md5]]></category>
		<category><![CDATA[md5rdb]]></category>
		<category><![CDATA[md5spider]]></category>
		<category><![CDATA[reverseing md5]]></category>

		<guid isPermaLink="false">http://mcherifi.org/?p=21</guid>
		<description><![CDATA[Parmi les grands avantages de l'algorithme de hachage MD5 est le fait qu'il est irréversible, autrement dit à sens unique, du coup même si on connais la sortie, il est difficile de trouver l'entrée qui a produit cette sortie.

C'est pour cette raison que la fonction MD5 est fréquemment utilisée pour sécuriser les mots de passes dans les bases de données! en effet plusieurs CMS réputés ,comme Joomla/Drupal/OsCommerce etc.. , l'utilise comme solution de cryptage de mot de passes des utilisateurs.]]></description>
			<content:encoded><![CDATA[<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.mcherifi.org/hacking/md5-spider-reversing-dun-hash-md5.html" data-text="MD5Spider, Reversing d\'un hash MD5" data-count="horizontal">Tweet</a><p>Parmi les grands avantages de l&#8217;algorithme de hachage MD5 est le fait qu&#8217;il est irréversible, autrement dit à sens unique, du coup même si on connais la sortie, il est difficile de trouver l&#8217;entrée qui a produit cette sortie.</p>
<p>C&#8217;est pour cette raison que la fonction MD5 est fréquemment utilisée pour sécuriser les mots de passes dans les bases de données! en effet plusieurs CMS réputés ,comme Joomla/Drupal/OsCommerce etc.. , l&#8217;utilise comme solution de cryptage de mot de passes des utilisateurs.</p>
<p>La recherche autour du reversing de l’algorithme de hashage MD5 est toujours active, or à ce jour, on a pas encore parvenu à le casser! par contre il existe des outils qui permettent de bruteforcer un password, d&#8217;où le brutfeorcing est un type d&#8217;attaque qui a pour principe de tenter toutes les combinaisons possibles jusqu&#8217;à ce qu&#8217;il tombe sur le bon passe! du coups ça risque de prendre des jours voir des années si le passes est long ou contient des caractères spéciaux.</p>
<p>Parmi les outils que je vous recommande :</p>
<ul>
<li><a title="MDCrack" href="http://www.securityfocus.com/tools/4242" target="_blank">MDCrack</a> (<span style="font-weight: bold;">13.5 millions </span>de hashes par seconde)</li>
<li><a title="Extreme GPU Bruteforcer" href="http://www.insidepro.com/eng/egb.shtml" target="_blank">Extreme GPU Bruteforcer</a> (<strong>230 millions</strong> de hashes par seconde)</li>
<li><a title="BarsWF MD5 Bruteforcer" href="http://3.14.by/en/md5" target="_blank">BarsWF MD5 Bruteforcer</a> (<strong>430 millions</strong> de hashes par seconde)</li>
</ul>
<p>Les tests de performances on été effectués sur une machine avec un processeur Quad Core <span style="font-weight: bold;">QX6700</span> (2.66Ghz) supporté par <span style="font-weight: bold;">4Go de RAM DDR2</span>, une carte graphique Nvidia <span style="font-weight: bold;">8800GTX</span> le tout sur carte mère basée sur un chipset<span style="font-weight: bold;"> Intel P45</span>.</p>
<p>Et comme on a pas toujours le temps de bruteforcer des passwords et que ça demande un matériel puissant pour plus de rapidité, des &laquo;&nbsp;MD5 Reverse Databases (MD5RDB)&nbsp;&raquo; sont apparus sur la toile, leurs principe est de rassembler un nombre immense de correspondances (plaintext/hash) dans une table remplie à partir d&#8217;un dictionnaire, des passes déja crackés ou de mots contenu dans une page web, le remplissage est souvent automatisé comme il peut se faire manuellement par les utilisateurs, ainsi on peut questionner la base de données sur un md5 et cette dernière nous retourne son plaintext si il est connu.</p>
<p>il existe sur internet beaucoup de site MD5RDB qui offrent ce service gratuitement qui deviennent de plus en plus nombreux, la raison pour laquelle j&#8217;ai conçu  MD5Spider: un petit script en PERL qui permet d&#8217;interroger une bonne dizaines de sites offrant ce service et récupérer le plaintext du hash si il existe dans leurs bases de données, ça vous permettra de gagner du temps avant de penser au bruteforcing de vos passes .</p>
<p>Voici à quoi ça ressemble son éxecution en ligne de commande :</p>
<p><img title="md5spider" src="../wp-content/uploads/2009/07/md5spider.png" alt="md5spider" width="675" height="341" /></p>
<p>Ci-dessous le code source : </p>
<pre class="brush: perl">#!/usr/bin/perl

print q(
/---------------------------------------------------\
|                    MD5 Spider 1.0                 |
|      Mohammed CHERIFI - mohammed@mcherifi.org     |
\---------------------------------------------------/
);

use IO::Socket;

sub findme()
{
my $md5  =   $_[0];
my $host   = $_[1];
my $uri    = $_[2];
my $pdata  = $_[3].$md5;
my $regexp = $_[4];
$datalen   = length $pdata ;

syswrite STDOUT, &quot;\n\n\tRecherche sur $host&quot;

my $sock = new IO::Socket::INET (
PeerAddr =&quot;$host&quot;,
PeerPort =80,
Proto =&quot;tcp&quot;
);

if(!$sock){
print &quot; [!] Connection time out : $!\n&quot;;
return false;
}
else
{

print $sock &quot;POST /$uri&quot;.&quot;$md5&quot;.&quot; HTTP/1.1\n&quot;;
print $sock &quot;Host: $host\n&quot;;
print $sock &quot;Referer: $host\n&quot;;
print $sock &quot;Accept-Language: en-us\n&quot;;
print $sock &quot;Content-Type: application/x-www-form-urlencoded\n&quot;;
print $sock &quot;User-Agent: MorX-Zilla\n&quot;;
print $sock &quot;Connection: Keep-Alive\n&quot;;
print $sock &quot;Cache-Control: no-cache\n&quot;;
print $sock &quot;Content-Length: $datalen\n\n&quot;;
print $sock &quot;$pdata\n&quot;;

while ($answer = &lt;$sock&gt;)
{
if ($answer =~ /$regexp/ )
{
print &quot;Cracked ! \n\n\n\t&quot;
sleep(1);
print &quot;Le plaintext est : &quot;.$1.&quot;\n\n\t&quot;;
print &quot;[+] Merci $host :P Enjoy ;) \n\n&quot;;
exit(0);
}
}
close($sock);
}
}

print q(
Etrez le hash MD5
Example : b2f3d1e0efcb5d60e259a34ecbbdbe00
hash MD5: );
$hash=$_1;
chomp ($hash);
unless($hash =~ /[0-9a-fA-Z]{32}/) {die &quot;n&#039;est pas un md5 :-/ !\n&quot;};
print &quot;Recherche en cours ....\n&quot;;

@sites = (
[&quot;passcracking.ru&quot;,&quot;/index.php?xD=&quot;,&quot;datafromuser=&quot;,&quot;lor=#FF0000&gt;(.*?)&lt;\/td&gt;.*?&lt;\/td&gt;&lt;\/&quot;],
[&quot;md5.benramsey.com&quot;,&quot;/md5.php?hash=&quot;,&quot;&quot;,&quot;TA.(.*?)..&gt;&lt;\/s&quot;],
[&quot;md5.noisette.ch&quot;,&quot;/md5.php?hash=&quot;,&quot;&quot;,&quot;TA.(.*?)..&gt;&lt;\/s&quot;],
[&quot;gdataonline.com&quot;,&quot;qkhash.php?mode=xml&amp;amp;hash=&quot;,&quot;&quot;,&quot;t&gt;(.*?)&lt;\/re&quot;],
[&quot;md52.altervista.org&quot;,&quot;index.php?md5=&quot;,&quot;&quot;,&quot;d: .*?ed\&quot;&gt;[^\[](.*?)&lt;\/font&gt;&lt;\/b&quot;]
);

$siteindex = 0;

foreach (@sites){
$site   = $sites[$siteindex][0];
$uri    = $sites[$siteindex][1];
$pdata  = $sites[$siteindex][2];
$regex  = $sites[$siteindex][3];
findme($hash,$site,$uri,$pdata,$regex);
$siteindex++;
}

print &quot;\n\nash introuvable! John est ton ami ;)\n\n&quot;;
</pre>
<p><a href="/data/md5spider/md5spider.txt" target="_blank">Télécharger md5spider.pl</a></p>



Partager cet article:


	<a rel="nofollow"  target="_blank" href="http://www.mcherifi.org/wp-content/plugins/sociable/awesmate.php?c=twitter&t=http%3A%2F%2Fwww.mcherifi.org%2Fhacking%2Fmd5-spider-reversing-dun-hash-md5.html&d=http://twitter.com/home?status=MD5Spider%2C%20Reversing%20d%27un%20hash%20MD5%20-%20TARGET" title="Twitter"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mcherifi.org/wp-content/plugins/sociable/awesmate.php?c=facebook-post&t=http%3A%2F%2Fwww.mcherifi.org%2Fhacking%2Fmd5-spider-reversing-dun-hash-md5.html&d=http://www.facebook.com/share.php?u=TARGET%26t=MD5Spider%2C%20Reversing%20d%27un%20hash%20MD5" title="Facebook"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mcherifi.org%2Fhacking%2Fmd5-spider-reversing-dun-hash-md5.html&amp;title=MD5Spider%2C%20Reversing%20d%27un%20hash%20MD5&amp;annotation=Parmi%20les%20grands%20avantages%20de%20l%27algorithme%20de%20hachage%20MD5%20est%20le%20fait%20qu%27il%20est%20irr%C3%A9versible%2C%20autrement%20dit%20%C3%A0%20sens%20unique%2C%20du%20coup%20m%C3%AAme%20si%20on%20connais%20la%20sortie%2C%20il%20est%20difficile%20de%20trouver%20l%27entr%C3%A9e%20qui%20a%20produit%20cette%20sortie.%0D%0A%0D%0AC%27est%20pour%20cette%20raison%20que%20la%20fonction%20MD5%20est%20fr%C3%A9quemment%20utilis%C3%A9e%20pour%20s%C3%A9curiser%20les%20mots%20de%20passes%20dans%20les%20bases%20de%20donn%C3%A9es%21%20en%20effet%20plusieurs%20CMS%20r%C3%A9put%C3%A9s%20%2Ccomme%20Joomla%2FDrupal%2FOsCommerce%20etc..%20%2C%20l%27utilise%20comme%20solution%20de%20cryptage%20de%20mot%20de%20passes%20des%20utilisateurs." title="Google Bookmarks"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mcherifi.org%2Fhacking%2Fmd5-spider-reversing-dun-hash-md5.html&amp;title=MD5Spider%2C%20Reversing%20d%27un%20hash%20MD5&amp;notes=Parmi%20les%20grands%20avantages%20de%20l%27algorithme%20de%20hachage%20MD5%20est%20le%20fait%20qu%27il%20est%20irr%C3%A9versible%2C%20autrement%20dit%20%C3%A0%20sens%20unique%2C%20du%20coup%20m%C3%AAme%20si%20on%20connais%20la%20sortie%2C%20il%20est%20difficile%20de%20trouver%20l%27entr%C3%A9e%20qui%20a%20produit%20cette%20sortie.%0D%0A%0D%0AC%27est%20pour%20cette%20raison%20que%20la%20fonction%20MD5%20est%20fr%C3%A9quemment%20utilis%C3%A9e%20pour%20s%C3%A9curiser%20les%20mots%20de%20passes%20dans%20les%20bases%20de%20donn%C3%A9es%21%20en%20effet%20plusieurs%20CMS%20r%C3%A9put%C3%A9s%20%2Ccomme%20Joomla%2FDrupal%2FOsCommerce%20etc..%20%2C%20l%27utilise%20comme%20solution%20de%20cryptage%20de%20mot%20de%20passes%20des%20utilisateurs." title="del.icio.us"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.netvibes.com/share?title=MD5Spider%2C%20Reversing%20d%27un%20hash%20MD5&amp;url=http%3A%2F%2Fwww.mcherifi.org%2Fhacking%2Fmd5-spider-reversing-dun-hash-md5.html" title="Netvibes"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/netvibes.png" title="Netvibes" alt="Netvibes" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.viadeo.com/shareit/share/?url=http%3A%2F%2Fwww.mcherifi.org%2Fhacking%2Fmd5-spider-reversing-dun-hash-md5.html&title=MD5Spider%2C%20Reversing%20d%27un%20hash%20MD5&urllanguage=fr" title="viadeo FR"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/viadeo.png" title="viadeo FR" alt="viadeo FR" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mcherifi.org%2Fhacking%2Fmd5-spider-reversing-dun-hash-md5.html&amp;title=MD5Spider%2C%20Reversing%20d%27un%20hash%20MD5&amp;bodytext=Parmi%20les%20grands%20avantages%20de%20l%27algorithme%20de%20hachage%20MD5%20est%20le%20fait%20qu%27il%20est%20irr%C3%A9versible%2C%20autrement%20dit%20%C3%A0%20sens%20unique%2C%20du%20coup%20m%C3%AAme%20si%20on%20connais%20la%20sortie%2C%20il%20est%20difficile%20de%20trouver%20l%27entr%C3%A9e%20qui%20a%20produit%20cette%20sortie.%0D%0A%0D%0AC%27est%20pour%20cette%20raison%20que%20la%20fonction%20MD5%20est%20fr%C3%A9quemment%20utilis%C3%A9e%20pour%20s%C3%A9curiser%20les%20mots%20de%20passes%20dans%20les%20bases%20de%20donn%C3%A9es%21%20en%20effet%20plusieurs%20CMS%20r%C3%A9put%C3%A9s%20%2Ccomme%20Joomla%2FDrupal%2FOsCommerce%20etc..%20%2C%20l%27utilise%20comme%20solution%20de%20cryptage%20de%20mot%20de%20passes%20des%20utilisateurs." title="Digg"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.mcherifi.org%2Fhacking%2Fmd5-spider-reversing-dun-hash-md5.html&amp;title=MD5Spider%2C%20Reversing%20d%27un%20hash%20MD5&amp;source=Mohammed+CHERIFI+Another+Web+Developper+Blog%21&amp;summary=Parmi%20les%20grands%20avantages%20de%20l%27algorithme%20de%20hachage%20MD5%20est%20le%20fait%20qu%27il%20est%20irr%C3%A9versible%2C%20autrement%20dit%20%C3%A0%20sens%20unique%2C%20du%20coup%20m%C3%AAme%20si%20on%20connais%20la%20sortie%2C%20il%20est%20difficile%20de%20trouver%20l%27entr%C3%A9e%20qui%20a%20produit%20cette%20sortie.%0D%0A%0D%0AC%27est%20pour%20cette%20raison%20que%20la%20fonction%20MD5%20est%20fr%C3%A9quemment%20utilis%C3%A9e%20pour%20s%C3%A9curiser%20les%20mots%20de%20passes%20dans%20les%20bases%20de%20donn%C3%A9es%21%20en%20effet%20plusieurs%20CMS%20r%C3%A9put%C3%A9s%20%2Ccomme%20Joomla%2FDrupal%2FOsCommerce%20etc..%20%2C%20l%27utilise%20comme%20solution%20de%20cryptage%20de%20mot%20de%20passes%20des%20utilisateurs." title="LinkedIn"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=MD5Spider%2C%20Reversing%20d%27un%20hash%20MD5&amp;url=http%3A%2F%2Fwww.mcherifi.org%2Fhacking%2Fmd5-spider-reversing-dun-hash-md5.html" title="Slashdot"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mcherifi.org%2Fhacking%2Fmd5-spider-reversing-dun-hash-md5.html" title="Sphinn"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mcherifi.org%2Fhacking%2Fmd5-spider-reversing-dun-hash-md5.html&amp;title=MD5Spider%2C%20Reversing%20d%27un%20hash%20MD5" title="Mixx"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a  target="_blank" href="http://blogplay.com" title="Blogplay"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/blogplay.png" title="Blogplay" alt="Blogplay" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fwww.mcherifi.org%2Fhacking%2Fmd5-spider-reversing-dun-hash-md5.html" title="Identi.ca"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.mcherifi.org%2Fhacking%2Fmd5-spider-reversing-dun-hash-md5.html&amp;partner=sociable" title="Print"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mcherifi.org/wp-content/plugins/sociable/awesmate.php?c=pingfm&t=http%3A%2F%2Fwww.mcherifi.org%2Fhacking%2Fmd5-spider-reversing-dun-hash-md5.html&d=http://ping.fm/ref/?link=TARGET%26title=MD5Spider%2C%20Reversing%20d%27un%20hash%20MD5%26body=Parmi%20les%20grands%20avantages%20de%20l%27algorithme%20de%20hachage%20MD5%20est%20le%20fait%20qu%27il%20est%20irr%C3%A9versible%2C%20autrement%20dit%20%C3%A0%20sens%20unique%2C%20du%20coup%20m%C3%AAme%20si%20on%20connais%20la%20sortie%2C%20il%20est%20difficile%20de%20trouver%20l%27entr%C3%A9e%20qui%20a%20produit%20cette%20sortie.%0D%0A%0D%0AC%27est%20pour%20cette%20raison%20que%20la%20fonction%20MD5%20est%20fr%C3%A9quemment%20utilis%C3%A9e%20pour%20s%C3%A9curiser%20les%20mots%20de%20passes%20dans%20les%20bases%20de%20donn%C3%A9es%21%20en%20effet%20plusieurs%20CMS%20r%C3%A9put%C3%A9s%20%2Ccomme%20Joomla%2FDrupal%2FOsCommerce%20etc..%20%2C%20l%27utilise%20comme%20solution%20de%20cryptage%20de%20mot%20de%20passes%20des%20utilisateurs." title="Ping.fm"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mcherifi.org/wp-content/plugins/sociable/awesmate.php?c=mailto&t=http%3A%2F%2Fwww.mcherifi.org%2Fhacking%2Fmd5-spider-reversing-dun-hash-md5.html&d=mailto:?subject=MD5Spider%2C%20Reversing%20d%27un%20hash%20MD5%26body=TARGET" title="email"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Fwww.mcherifi.org%2Fhacking%2Fmd5-spider-reversing-dun-hash-md5.html&amp;title=MD5Spider%2C%20Reversing%20d%27un%20hash%20MD5&amp;selection=Parmi%20les%20grands%20avantages%20de%20l%27algorithme%20de%20hachage%20MD5%20est%20le%20fait%20qu%27il%20est%20irr%C3%A9versible%2C%20autrement%20dit%20%C3%A0%20sens%20unique%2C%20du%20coup%20m%C3%AAme%20si%20on%20connais%20la%20sortie%2C%20il%20est%20difficile%20de%20trouver%20l%27entr%C3%A9e%20qui%20a%20produit%20cette%20sortie.%0D%0A%0D%0AC%27est%20pour%20cette%20raison%20que%20la%20fonction%20MD5%20est%20fr%C3%A9quemment%20utilis%C3%A9e%20pour%20s%C3%A9curiser%20les%20mots%20de%20passes%20dans%20les%20bases%20de%20donn%C3%A9es%21%20en%20effet%20plusieurs%20CMS%20r%C3%A9put%C3%A9s%20%2Ccomme%20Joomla%2FDrupal%2FOsCommerce%20etc..%20%2C%20l%27utilise%20comme%20solution%20de%20cryptage%20de%20mot%20de%20passes%20des%20utilisateurs." title="Posterous"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/posterous.png" title="Posterous" alt="Posterous" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.mcherifi.org%2Fhacking%2Fmd5-spider-reversing-dun-hash-md5.html&amp;title=MD5Spider%2C%20Reversing%20d%27un%20hash%20MD5" title="Reddit"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fwww.mcherifi.org%2Fhacking%2Fmd5-spider-reversing-dun-hash-md5.html&amp;submitHeadline=MD5Spider%2C%20Reversing%20d%27un%20hash%20MD5&amp;submitSummary=Parmi%20les%20grands%20avantages%20de%20l%27algorithme%20de%20hachage%20MD5%20est%20le%20fait%20qu%27il%20est%20irr%C3%A9versible%2C%20autrement%20dit%20%C3%A0%20sens%20unique%2C%20du%20coup%20m%C3%AAme%20si%20on%20connais%20la%20sortie%2C%20il%20est%20difficile%20de%20trouver%20l%27entr%C3%A9e%20qui%20a%20produit%20cette%20sortie.%0D%0A%0D%0AC%27est%20pour%20cette%20raison%20que%20la%20fonction%20MD5%20est%20fr%C3%A9quemment%20utilis%C3%A9e%20pour%20s%C3%A9curiser%20les%20mots%20de%20passes%20dans%20les%20bases%20de%20donn%C3%A9es%21%20en%20effet%20plusieurs%20CMS%20r%C3%A9put%C3%A9s%20%2Ccomme%20Joomla%2FDrupal%2FOsCommerce%20etc..%20%2C%20l%27utilise%20comme%20solution%20de%20cryptage%20de%20mot%20de%20passes%20des%20utilisateurs.&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.mcherifi.org%2Fhacking%2Fmd5-spider-reversing-dun-hash-md5.html&amp;partner=sociable" title="PDF"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mcherifi.org/feed" title="RSS"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.diigo.com/post?url=http%3A%2F%2Fwww.mcherifi.org%2Fhacking%2Fmd5-spider-reversing-dun-hash-md5.html&amp;title=MD5Spider%2C%20Reversing%20d%27un%20hash%20MD5" title="Diigo"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/diigo.png" title="Diigo" alt="Diigo" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://cgi.fark.com/cgi/fark/farkit.pl?h=MD5Spider%2C%20Reversing%20d%27un%20hash%20MD5&amp;u=http%3A%2F%2Fwww.mcherifi.org%2Fhacking%2Fmd5-spider-reversing-dun-hash-md5.html" title="Fark"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.blogospherenews.com/submit.php?url=http%3A%2F%2Fwww.mcherifi.org%2Fhacking%2Fmd5-spider-reversing-dun-hash-md5.html&amp;title=MD5Spider%2C%20Reversing%20d%27un%20hash%20MD5" title="Blogosphere News"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/blogospherenews.png" title="Blogosphere News" alt="Blogosphere News" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://cimlap.blogter.hu/index.php?action=suggest_link&amp;title=MD5Spider%2C%20Reversing%20d%27un%20hash%20MD5&amp;url=http%3A%2F%2Fwww.mcherifi.org%2Fhacking%2Fmd5-spider-reversing-dun-hash-md5.html" title="blogtercimlap"><img src="http://www.mcherifi.org/wp-content/plugins/sociable/images/blogter.png" title="blogtercimlap" alt="blogtercimlap" class="sociable-hovers" /></a>


<br/><br/>
<p class="FacebookLikeButton"><fb:like href="http%3A%2F%2Fwww.mcherifi.org%2Fhacking%2Fmd5-spider-reversing-dun-hash-md5.html" layout="standard" show_faces="true" width="450" action="like" colorscheme="light"></fb:like></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mcherifi.org/hacking/md5-spider-reversing-dun-hash-md5.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

