Home  >  Article  >  Backend Development  >  PHP md5 decryption code sharing (with interface, available for personal testing)

PHP md5 decryption code sharing (with interface, available for personal testing)

PHPz
PHPzOriginal
2017-03-14 16:59:337121browse

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

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

MD5 encryption tool

Can php md5 be decrypted?

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:Can md5 be decrypted?Next article:Can md5 be decrypted?