Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /*
- SIMPLE MD5CRACKER BY AZZATSSINS
- Usage: php file.php wordlist.txt md5hash
- */
- $az=file_get_contents($argv[1]);
- $azz=explode("\r\n",$az);
- foreach($azz as $azx){
- $anu=md5($azx);
- if($anu == $argv[2]){
- echo "\n[+] Found => ".$az." : ".$azx."\n";
- }}
Add Comment
Please, Sign In to add comment