Trouble with PHP and Mysql queries using md5 encryption

后端 未结 2 1057
伪装坚强ぢ
伪装坚强ぢ 2021-01-29 14:05

I am using a normal php/mysql insert query and use md5 to encrypt the password

This is the INSERT query:

$sql = mysql_query(\"INSERT INTO user (username,         


        
相关标签:
2条回答
  • 2021-01-29 14:19

    Many of the typical caveats here apply... it can't hurt to mention them.

    First, vanilla md5 for your password hashing is certainly not the best way to secure your user password within the database. There are numerous questions on stackoverflow that document better approaches, and though there are differences of opinion, they are all more secure that a regular md5, unsalted hash.

    Secure hash and salt for PHP passwords

    Why not use AES for password encryption in PHP?

    Also, you are doing no sanitization of your sql inputs, leaving your database open to sql injection attacks. A meddlesome user could manipulate your user insert to drop tables or modify your data structure. You need to escape these values using mysql_real_escape_string() or adopt a totally different database access system like PDO that has parameterized sql.

    How can I prevent SQL injection in PHP?

    That being said, your query should check for the existence of a User row that has the correct username and password, usually achieved by doing a COUNT query first and ensuring that the user is present in the database with valid login creds.

    You should ensure that your database columns are proper length and datatype to store the hashes for passwords. Truncation of either could destroy the data.

    I hope this helps - SQL injection can be especially nasty!

    0 讨论(0)
  • 2021-01-29 14:32

    Assuming $username and $password are in fact the same... have you checked to make sure the on table users the password column character length is big enough to hold the whole MD5 hash?

    Got an example of the calculated and store MD5 hashes?

    0 讨论(0)
提交回复
热议问题