robert_gsfame Posted January 20, 2010 Share Posted January 20, 2010 I just want to know, is it still possible to get attacked by sql injection if we have used mysql_real_escape_string()?? Thx Quote Link to comment https://forums.phpfreaks.com/topic/189152-mysql_real_escape_string-vs-sql-injection/ Share on other sites More sharing options...
MadTechie Posted January 20, 2010 Share Posted January 20, 2010 of course you can still be attacked.. however if mysql_real_escape_string is used correctly and you have left no holes, you should be safe! Quote Link to comment https://forums.phpfreaks.com/topic/189152-mysql_real_escape_string-vs-sql-injection/#findComment-998615 Share on other sites More sharing options...
robert_gsfame Posted January 20, 2010 Author Share Posted January 20, 2010 no holes means that you are not leaving something which can cause an error as Cause attacker always read from an error, is that what you mean? Quote Link to comment https://forums.phpfreaks.com/topic/189152-mysql_real_escape_string-vs-sql-injection/#findComment-998627 Share on other sites More sharing options...
MadTechie Posted January 20, 2010 Share Posted January 20, 2010 Well error reporting should only be on, on a development server, by hole, I mean mysql_real_escape_string should be used on the all strings before the going to MySQL, using it on only 1 of 2 strings won't protect you. ie, this statement uses mysql_real_escape_string but won't protect you from an injection mysql_query("UPDATE table set firstname='".mysql_real_escape_string($POST['f_name'])."', lastname='".$POST['f_name']."' "); take a look at Dan's PHP security Tutorial Quote Link to comment https://forums.phpfreaks.com/topic/189152-mysql_real_escape_string-vs-sql-injection/#findComment-998641 Share on other sites More sharing options...
PFMaBiSmAd Posted January 20, 2010 Share Posted January 20, 2010 mysql_real_escape_string, like its' name indicates is only usable for escaping string data (data that is put into a query inside of single-quotes.) It does nothing to prevent sql injection for numeric data put into a query (data that is not in single-quotes and the solution to this does not involve putting single-quotes around numeric data as that causes mysql to go through an extra step of converting the string containing a numeric value back to a number which it does by converting to a float.) Numeric data must be validate as numeric or it must be cast as a numeric data type in order to prevent sql injection (you can inject sql in this case without using any quotes around it by encoding it as a HEX hex value or producing a string using CONCAT()/CHAR() functions.) Quote Link to comment https://forums.phpfreaks.com/topic/189152-mysql_real_escape_string-vs-sql-injection/#findComment-998642 Share on other sites More sharing options...
Lamez Posted January 20, 2010 Share Posted January 20, 2010 I use this function on any variable that is about to be check with, or added to the database. I think it might help you as well. function clean($str){ $str = @trim($str); if(get_magic_quotes_gpc()){ $str = stripslashes($str); } return mysql_real_escape_string($str); } //Example $username = clean($_GET['username']); $q = mysql_query("SELECT password FROM users WHERE username = '$username'"); $n = mysql_num_rows($q); if($n > 0){ echo "User found!"; }else{ echo "Error"; } Quote Link to comment https://forums.phpfreaks.com/topic/189152-mysql_real_escape_string-vs-sql-injection/#findComment-998690 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.