[php]criptaggio wordlist in md5 e md5+seed

« Older   Newer »
  Share  
qwerty2
CAT_IMG Posted on 25/6/2010, 11:13     +1   -1




ho scritto questa pagina php per criptare la wordlist di kurt in md5 ma non mi funziona:
CODICE
<?
$md5 = "";
$var=fopen("wordlist.txt","r");
$var2=fread($var,filesize("wordlist.txt"));
$linea = explode('\n',$var2);
for($a = 1;$a < 10;$a++){
$md5 = md5(md5($linea[$a])) & '\' & md5($linea[$a] & '\' & $linea[$a] & '\n';
}
fclose($var);
$b = fopen("md5.txt","w");
fwrite($b,$md5);
fclose($b);
?>
 
Top
qwerty2
CAT_IMG Posted on 7/7/2010, 11:16     +1   -1




ci sono riuscito ed ho caricato il database ed un motore di ricerca qui:
http://md5dictionary.altervista.org
 
Top
Lahace
CAT_IMG Posted on 7/7/2010, 12:42     +1   -1




CODICE
$md5 = md5(md5($linea[$a])) & '\' & md5($linea[$a] & '\' & $linea[$a] & '\n';


le parentesi non sono chiuse
 
Top
2 replies since 25/6/2010, 11:13   124 views
  Share