How dangerous is this php code? What can be done about it?
$name = $_POST["user"];
$pwd = $_POST["pwd"];
$query = "SELECT name,pwd FROM users WHERE name = '$name' AND pwd = '$pwd'";
|
5
|
How dangerous is this php code? What can be done about it?
|
||||||
|
|
|
Possible Problems:
Your SQL Statement can be problematic. It is bad practice to leave yourself open for sql injection. SQL Injection is bad. Trust me. If you want to display the $user on an HTML page, then you may not want to include the ability for people to "hack" your layout by typing in commands like
or a bunch of javascript. Also, never store your password in plain text (good catch cagcowboy!). It gives too much power to people administering (or hacking) your database. You should never NEED to know someone's password. Try tactics like these:
|
||||||||||
|
|
|
|
||
|
|
|
|
It's this dangerous:
|
||||
|
|
|
When user data is involed in a SQL query, always sanatize the data with Furthermore, you should store just a salted hash of the password instead of the password itself. You can use the following function to generate and check a salted hash with a random salt value:
All together:
|
||
|
|
|
Believe it or not, this is safe... if |
||
|
|
|
|
It is not only prone to SQL injections, it will also fail in cases where an injection is not even intended: For example a user wants the name "Guillaume François Antoine, Marquis de L’Hospital". Since the username contains a quote and you are not escaping it, your query will fail, although the user never wanted to break the system! Either use PDO or do it in this way:
|
||||
|
|
|
If one were to post your command would end up being
So first it would get your data, then kill your users table, and do nothing with the rest since it is a comment. Certain mysql commands in php will perform multiple queries when passed sql, the best way to avoid this is parametrized queries. I use PDO for all my DB access, and highly recommend it. I do not have any links off the top of my head but I remember the tutorials I used topped Google. |
||||
|
|
|
Its not safe, you might want to look into something like PDO. PHP PDO |
|||
|
|
|
|
EXTREM dangerous. this code is ready for sql-injection attacks. use mysql_escape_string() function to escape the pwd and name var. |
||
|
|
|
|
Very very dangerous. A good idea for passwords is to convert the password into a MD5 hash and store that as the user's 'password'. Also you should do some basic match regex expression on the name to make sure it only uses A-Za-z0-9 and maybe a few accented characters (no special characters, *'s, <'s, >'s in particular). |
||||
|
|
|
That code is very safe if you never pass $query to a SQL database. |
||||||
|
|
|
This is typically very dangerous. It could be mitigated by database permissions in some cases. You don't validate the input ($name and $pwd). A user could send in SQL in one or both of these fields. The SQL could delete or modify other data in your database. |
||
|
|
|
|
:O don't do it never ever, This can cause SQLInjection attack. If for example user input somehow: ' drop table users -- as input in $username; this code will concatinate to your orginal code and will drop your table. The hackers can do more and can hack your website. |
||
|
|
|
|
SQL Injection aside, it looks like your passwords might be stored in plain text, which isn't great. |
||