hamzakiller21

md5 Cracker v 1.0 with password list by hamza killer [php]

Mar 17th, 2014
323
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. <?
  2. error_reporting(0);
  3. set_time_limit(0);
  4. ini_set('memory_limit', '640000M');
  5. /*
  6. @hamza killer ùù
  7. sec4all.org/cc/
  8. to: HawQal Dz - Ji Nx - linuxdz & all sec4all&sec4ever members
  9.  
  10. */
  11. echo"
  12. [+]===================[+]
  13. [+] Hash bruter [+]
  14. [+] @hamza killer [+]
  15. [+] sec4all.org/cc/ [+]
  16. [+]===================[+]
  17. ";
  18. echo"\n [word list(you can add it from url http://xx.com/word.txt)=>] ";
  19. $wh =trim(fgets(STDIN,1024));
  20. $k=@file_get_contents($wh);
  21. $hash=@explode("\r\n",$k);
  22. $count =@count($hash);
  23. if($k){
  24. echo"
  25. [+] wordlist loaded \n
  26. [+] loaded $count linge \n
  27. ";
  28. }else{
  29. echo "[-] no file found ";
  30. exit();
  31. }
  32. echo"
  33. [put your hash =>]";
  34. $hh=trim(fgets(STDIN,1024));
  35. echo"[+] n0w Start brut \n";
  36. foreach($hash as $hy ){
  37.  
  38. $k=md5($hy);
  39. if($k == $hh)
  40. {
  41. echo"[+]".$hh.":".$hy."==>Found";
  42. $f=fopen("hamza.txt","a+");
  43. fwrite($f,"$hh => $hy\n");
  44. fclose($f);
  45. @system('hamza.txt');
  46. exit();
  47. }else{
  48. echo"[-]".$hh.":".$hy."==>error\n";
  49. }
  50. }
  51.  
  52.  
  53.  
  54. ?>
Add Comment
Please, Sign In to add comment