AZZATSSINS_CYBERSERK

Simple md5 cracker

Mar 16th, 2017
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. <?php
  2. /*
  3. SIMPLE MD5CRACKER BY AZZATSSINS
  4. Usage: php file.php wordlist.txt md5hash
  5. */
  6. $az=file_get_contents($argv[1]);
  7. $azz=explode("\r\n",$az);
  8. foreach($azz as $azx){
  9. $anu=md5($azx);
  10. if($anu == $argv[2]){
  11. echo "\n[+] Found => ".$az." : ".$azx."\n";
  12. }}
Add Comment
Please, Sign In to add comment