Can md5 be decrypted? md5 itself is irreversible, but we can use the interface provided by the URL in the following code to crack it. I tried it and the success rate is still quite high. The ordinary library is 70%. That account can still be used for free now
<?php $md5 = "c1c95b382230eb9e27a60c4baceb5f2e"; $uid = "hhp-ImZRY"; $token = strtolower(md5('1878399009')); $url = "http://www.ttmd5.com/do.php?c=Api&m=crack&uid=$uid&token=$token&cipher=$md5"; $data = file_get_contents($url); echo $data; ?>
The ciphertext is c1c95b382230eb9e27a60c4baceb5f2e
{ "count": 1, "data": [ { "cipher": "c1c95b382230eb9e27a60c4baceb5f2e", "plain": "1azu8uhn", "flag": 1, "time": 0 } ] }
The result is 1azu8uhn
This site specializes in online decryption of hash algorithms such as md5. It can upload files for online batch cracking, and can support up to tens of thousands. password. MD5 alone has a 64T password database, with a total of more than 3 trillion entries. This includes full cracking of 8 lowercase numbers (the only online decryption website in the world that supports this decryption range), and general inquiries are free.
Related articles:
php md5 encryption algorithm code
Can php md5 encryption be cracked?
The above is the detailed content of PHP md5 decryption code sharing (with interface, available for personal testing). For more information, please follow other related articles on the PHP Chinese website!