MD5 combined crypt = Invincible Password _php Tutorial

Source: Internet
Author: User
Tags crypt md5 encryption
Because I prefer SQL injection
A lot of websites have been tested aspphpjsp
The discovery is basically using MD5 encryption algorithm
All say MD5 irreversible can't break
Yes, MD5 is irreversible, but it can be violently broken.
You just need to put the usual password MD5 in the database.
Other people just need to provide MD5 password for database comparison can restore the password
Domestic www.cmd5.com foreign www.xmd5.org
are available on-line blasting
Many webmasters have been invaded, right? Most of these are administrator passwords that are compromised by SQL injection
And then go backstage and sabotage.
I found PHP's built-in function crypt pretty good.
With MD5 more invincible
$pass = 123456;
echo "MD5 encrypted". MD5 ($pass). "
"; Not safe
echo "Crypt Encrypted". Crypt ($pass). "
"; A messy password refresh will also change
echo "Crypt Complex Encryption". Crypt ($pass, substr ($pass, 0,2)). "
"; It's still uncomfortable.
echo "Invincible Encryption". MD5 (Crypt ($pass, substr ($pass, 0,2)). "
"; Now let the hacker how to break the password???
?>
The last password, or 32-bit, thought it was MD5 encryption.
But no matter how big the hash value of the other MD5, a few T data can not be cracked.

http://www.bkjia.com/PHPjc/486545.html www.bkjia.com true http://www.bkjia.com/PHPjc/486545.html techarticle because I prefer to SQL injection after a lot of testing site aspphpjsp found that the basic is to use MD5 encryption algorithm are said MD5 irreversible can not break the MD5 is irreversible but can ...

  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.