Advertisement
scriptz-team

[PHP] MD5 DECRYPTER

May 29th, 2012
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. <?php
  2. /*
  3. _____ _____ _ _____ _____ _____ _____ _____ _____
  4. ___| | __ |_| _ |_ _|___ ___|_ _| __| _ | |
  5. |_ -| --| -| | __| | | |- _|___| | | | __| | | | |
  6. |___|_____|__|__|_|__| |_| |___| |_| |_____|__|__|_|_|_|
  7. |s C R i P T z - T E A M . i N F O|
  8.  
  9. MD5 DECRYPTER
  10.  
  11. USAGE:
  12. index.php?hash=0cc175b9c0f1b6a831c399e269772661
  13.  
  14. RESULT:
  15. MD5 iNPUT: 0cc175b9c0f1b6a831c399e269772661
  16. MD5 OUTPUT: a
  17. */
  18.  
  19. function get_result($y)
  20. {
  21. $x = explode('<div id="result" >', $y);
  22. $x = explode('</div>', $x[1]);
  23. $x = $x[0];
  24. return $x;
  25. }
  26.  
  27. $hash = $_GET["hash"];
  28. $load = strrev("\075" . "\x71" . "\077" . "/" . "m" . "\x6f" . "\x63" . "\056" . "e" . "z" . "i" . "\157" . "\x6e" . "d" . "\145" . "\x72" . "\056" . "\x35" . "d" . "\x6d" . "\x2f" . "\x2f" . ":" . "p" . "\x74" . "t" . "h");
  29. $result = get_result(file_get_contents($load . $hash));
  30. echo "MD5 iNPUT: " . $hash . "<br />";
  31. echo "MD5 OUTPUT: " . $result;
  32. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement