Jump to content

sql injection vulnerability


robert_gsfame

Recommended Posts

i just want to ask this simple question

 

let say i have this basic query

 

$place=$_GET['place'];

mysql_query("SELECT * FROM table WHERE place='$place'");

 

this is a nice target for sql injection..

 

but what if i replace the whole special characters that could be added

 

$replacethis=array("-","`");

$withthis=array("","");

$place=str_replace($replacethis,$withthis,$_GET['place']);

mysql_query("SELECT * FROM table WHERE place='$place'");

 

Are they still able to do the basic sql injection by trying to get the error by adding special character although i didn't use mysql_real_escape_string() ??

 

then what if i protect the file by changing the setting of the permission to either 644 or 755?

thanks in advance

Link to comment
https://forums.phpfreaks.com/topic/230233-sql-injection-vulnerability/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.