Tagged Questions

Escapes special characters in a string for use in an SQL statement.

learn more… | top users | synonyms

11
votes
5answers
6k views

Why is PDO better for escaping MySQL queries/querystrings than mysql_real_escape_string?

I've been told that I'd be better using PDO for MySQL escaping, rather than mysql_real_escape_string. Maybe I'm having a brain-dead day (or it may be the fact I'm by no stretch of the imagination a ...
11
votes
5answers
7k views

Alternative to mysql_real_escape_string without connecting to DB

I'd like to have a function behaving as mysql_real_escape_string without connecting to database as at times I need to do dry testing without DB connection. mysql_escape_string is deprecated and ...
8
votes
7answers
444 views

mysql_real_escape_string and ’

I'm using mysql_real_escape_string to escape a string before inserting it into my mysql database. Everything's working fine, except that the character ’ is getting missed and turned into ’ by ...
7
votes
4answers
3k views

mysql_escape_string VS mysql_real_escape_string

So this is something we all should know about, and played on my mind when I first seen it.. I know that mysql_escape_string is deprecated from 5.3 but what was the actual difference in ...
6
votes
2answers
348 views

Am I safe using just “mysql_real_escape_string” to defend sql injections?

I'm reading articles about how mysql_real_escape_string doesn't FULLY protect against sql injection, is this true? If it is what steps should I take to fully protect myself from sql injections?
6
votes
6answers
9k views

mysql_real_escape_string() leaving slashes in MySQL

I just moved to a new hosting company and now whenever a string gets escaped using: mysql_real_escape_string($str); the slashes remain in the database. This is the first time I've ever seen this ...
5
votes
5answers
2k views

Decoding mysql_real_escape_string() for outputting HTML

I'm trying to protect myself from sql injection and am using: mysql_real_escape_string($string); When posting HTML it looks something like this: <span ...
5
votes
3answers
391 views

Do I have to use mysql_real_escape_string if I bind parameters?

I have the following code: function dbPublish($status) { global $dbcon, $dbtable; if(isset($_GET['itemId'])) { $sqlQuery = 'UPDATE ' . $dbtable . ' SET active = ? WHERE id = ?'; $stmt = ...
5
votes
4answers
2k views

Is there an equivalent of PHP's mysql_real_escape_string() for Perl's DBI?

Could some tell me if there is a function which works the same as PHP's mysql_real_escape_string() for Perl from the DBI module?
4
votes
4answers
137 views

mysql_real_escape_string() not sanitizing variable

I'm working on an existing website trying to prevent SQL injections. Before $_GET['ID'] was unsanitized. $ID=mysql_real_escape_string($_GET['ID']); $sQuery=mysql_query("select * from ...
4
votes
2answers
8k views

PHP mysql_real_escape_string() -> stripslashes() leaving multiple slashes

I'm having issues escaping/stripping strings with PHP/MySQL - there always seems to be redundant slashes. Let's take the following string as an example: <span ...
3
votes
3answers
184 views

Which SQL inject methods aren't “destroyed” by mysql_real_escape_string();?

Is there a list of SQL injection methods which can't be protected with just using mysql_real_escape_string(); with utf8 encoding? For integer, I'm using intval(); Is it secure enough? For those who ...
3
votes
2answers
157 views

PHP Magic Quotes Question

I've never programmed in an environment with magic quotes turned on before. Now I'm working on a project where it is. This is how I've been setting up user accepted data situations: $first_name = ...
3
votes
3answers
275 views

Escaping Quotes in SQL

I'm a bit confused about this topic so I decided to ask about it from you guys :) As of php.net I should use mysql_real_escape_string() and turn off magic quotes because it's deprecated. So I ...
3
votes
3answers
357 views

Validating user input?

I am very confused over something and was wondering if someone could explain. In PHP i validate user input so htmlentitiies, mysql_real_escape_string is used before inserting into database, not on ...
3
votes
3answers
125 views

my GET variable is being escaped?

I'm really confused here, can someone explain this to me? request: http://example.com/test.php?var=String's $a = $_GET["var"]; $b = "String's"; echo $a . "<br/>"; echo $b . "<br/>"; ...
3
votes
2answers
1k views

mysql_real_escape_string() just makes an empty string?

I am using a jQuery AJAX request to a page called like.php that connects to my database and inserts a row. This is the like.php code: <?php // Some config stuff define(DB_HOST, 'localhost'); ...
2
votes
2answers
85 views

SQL injections from remote file

I have a file, submit.php, which writes a series of values from a previous form choose-product.php to a MySQL database. I've used mysql_real_escape_string as suggested in a previous question here, but ...
2
votes
1answer
83 views

mysql_real_escape_string with Zend

I am developing a web application using zend framework. For select statements I have used following way. Ex: public function getData($name) { $sql = "SELECT * from customer where Customer_Name = ...
2
votes
3answers
107 views

Sanitizing PHP/SQL $_POST, $_GET, etc…?

Ok, this subject is a hotbed I understand that. I also understand that this situation is dependent on what you are using as code. I have three situations that need to be resolved. I have a form in ...
2
votes
3answers
64 views

User input to database

Suppose that, we're expecting just strings or numbers with the data send by a user. Is it safe enough to check the data with ereg and preg_match funtions? Is there a way to fake them? Should we still ...
2
votes
3answers
93 views

mysql_real_escape_string only escaping one type of quote

My server is running PHP 5.2.17 and I have disabled magic quotes with a php.ini file. I have an array of strings some are like abcd "efg" hij'k lmnop'q I am escaping them for insertion into a mysql ...
2
votes
1answer
55 views

mysql_real_escape_string not being used with given regex

I am using a dataHandler library to handle all of my db inserts / updates, etc. The library has the following functions: function prepareValue($value, $connection){ $preparedValue = $value; ...
2
votes
2answers
189 views

PHP Sanitized markdown - html output

I have WMD editor on my site, and i store the markdown in the DB. But before i send the markdown to database i filter it with mysql_real_escape_string, like that: $to_database = ...
2
votes
2answers
75 views

adding mysql_real_escape_string automatically with regexp

I have a mysql class which has a method called query() which is basically mysql_query(). This method receives the query as the parameter like this: insert into table set field1 = 'value 1', field2 = ...
2
votes
4answers
1k views

mysql_real_escape_string not working

My mysql_real_escape_string is being ignored. It's killing me, because I feel like it's something tiny that I'm missing. The $htmlText variable comes from a TinyMCE editor where the text is rendered ...
2
votes
4answers
408 views

What's the difference between PHP's addslashes and mysql(i)_escape_string?

If they don't do exactly the same, what's the difference? The delimiter for values inside a MySQL query is the ' isn't it? Or maybe the " but that's also escaped with addslashes. In other database ...
2
votes
3answers
406 views

mysql_real_escape_string is storing the data in the database along with backslashes

When i am using mysql_real_escape_string on my unescaped strings the data in the database is storing with the backslashes which should not happen. I have magic_quotes_gpc OFF not sure why this is ...
2
votes
1answer
71 views

On form submittal, a tick kills the app. But only in production

A client just recently moved an application through the stages to production. I set up a testing environment on an "out-of-the-box" LAMP server, and can submit a form with a tick in the textarea. ...
2
votes
7answers
3k views

Htmlentities vs addslashes vs mysqli_real_escape_string

I've been doing some reading on securing PHP applications, and it seems to me that mysqli_real_escape_string is the correct function to use when inserting data into MySQL tables because addslashes can ...
2
votes
4answers
476 views

mysql_real_escape_string() for $_SESSION variables necessary?

Should I use the mysql_real_escape_string() function in my MySQL queries for $_SESSION variables? Theoretically, the $_SESSION variables can't be modified by the end-user unlike $_GET or $_POST ...
2
votes
3answers
1k views

Why bother using mysql_real_escape_string() since $_POST addes slashes before a quote automatically?

In PHP, $_POST add slashes before a quotation mark automatically, so why bother applying mysql_real_escape_string()? For example, when I input 'rrr in an input field, and I get \'rrr when I echo it.
2
votes
1answer
410 views

mysql_real_escape_string() completely removes string

I'm escaping all the string parameters I receive from a php form like this: $usr_name = mysql_real_escape_string($_REQUEST['usr_name']); to avoid a few problems with SQL Injection. But when I my ...
1
vote
3answers
80 views

mysql_real_escape_string stopped working when I moved my code to another server

The following code works perfectly fine in my local xampp installation (Windows 7), but when I ported it over to a Win2K8 R2 server, the mysql_real_escape_string piece does not work. When I comment it ...
1
vote
3answers
60 views

Is it necessary to use mysql_real_escape_string() for image into mysql?

For example: $data = file_get_contents($_FILES['image']['tmp_name']); $data = mysql_real_escape_string($data); mysql_query("INSERT INTO table set image='$data'.... Is this a correct way ...
1
vote
0answers
51 views

Script to undo php Magic Quotes and mysql_real_escape_string combination

For the last 4 years I've run a site mistakenly using both magic quotes and mysql_real_escape_string simultaneously. This has resulted in all manner of different format strings being stored where in ...
1
vote
2answers
67 views

mysql_real_escape_string does not escape "

In PHP, I am escaping characters before insert in a MySQL database using mysql_real_escape_string $array_to_insert = array_map('mysql_real_escape_string', $my_arr); $mysql->setTbl("mytable"); $id ...
1
vote
5answers
66 views

Launching a website with injeciton protection

I am a new php "developer" and a new member of the SOF site. I am launching a website for the first time and in my online research I have been told that while PHP might be easy at the surface the most ...
1
vote
4answers
128 views

Can I encode my serialized form data with jquery $.post

I've run into an interesting problem. If I submit my PHP form the "tradtional" way with an action via post I capture the form data as follows: headline:I%27m+just+here+for+friends%21 I escape the ...
1
vote
3answers
73 views

Is SQL Injection possible with mysql_real_escape_string when variables in the query have no quotes around them?

Take for example this $username = mysql_real_escape_string($_GET['username']); $password = mysql_real_escape_string($_GET['password']); $sql = "SELECT * FROM users WHERE username = $username AND ...
1
vote
1answer
67 views

Escape character being added when using mysql_real_escape_string

I am using mysql_real_escape_string on all of my queries. addslashes is not being used, however every time a ' is used it is escaped on the output - it is like it is being escaped by ...
1
vote
5answers
123 views

Do I really need to use mysql_real_escape_string when I save data in the DB?

I am using mysql_real_escape_string to save content in my mySQL database. The content I save is HTML through a form. I delete and re-upload the PHP file that writes in DB when I need it. To display ...
1
vote
1answer
47 views

does removing all non-numeric characters effectively escape data?

I use this function to strip all non-numeric from a field before writing to a MYSQL dB: function remove_non_numeric($inputtext) {return preg_replace("/[^0-9]/","",$inputtext); Does this effectively ...
1
vote
2answers
101 views

Is mysql_real_escape_string() sufficient for a MySQL REGEXP?

Could $user_input in the following code be chosen to make the MySQL query not behave as expected? <? $regexp = mysql_real_escape_string( $user_input ); mysql_query( "SELECT col FROM table WHERE ...
1
vote
4answers
75 views

If using GET variable only to see if isset, do I need to escape it?

Do I need to escape variables if they are used only for running through isset()?
1
vote
2answers
320 views

Adding mysql_real_escape_string() causes blank values to be stored to database

$submit=$_POST['submit']; $fullname=$_POST['fullname']; $phone=preg_replace('/[^0-9]/', '', $_POST['phone']); $phone = (int) $phone; $adress=$_POST['city'] . ' ' . $_POST['district'] . ' ' . ...
1
vote
2answers
337 views

Escaping Characters in Email with PHP/MYSQL

I'm having a problem figuring out the logic behind how characters are being escaped when I use the mail() function for PHP. I'm using PHP 5.2, with magic_quotes_qpc ON and runtime/sybase OFF. Here's ...
1
vote
5answers
383 views

How to use mysql_real_escape_string function in PHP

So in this program I'm writing, I actually grab a SQL query from the user using a form. I then go on to run that query on my database. I know not to "trust" user input, so I want to do sanitization ...
1
vote
1answer
107 views

encodeURIComponent and mysql_real_escape_string

I would like to ask you if it's necessary to use a mysql_real_escape_string() PHP function for data that I send into my DB in PHP ajax file if the data is encoded in my JS file using ...
1
vote
4answers
500 views

mysql_real_escape_string not good enough?

So using %27 you can just SQL inject even though data is sanitized with mysql_real_escape_string %27) SQL INJECTION HERE %2F* What to do? Edit with example: $sql = sprintf("SELECT *, MATCH(post) ...

1 2 3