vote up 0 vote down star
1

I have this code:

$query = "select id from votes where username = '$user' and article_id  = $this->id";

I tried this code to sanitize it:

$query = sprintf("select id from votes where username = '$user' and article_id = $this->id", 
    mysql_real_escape_string($user), 
    mysql_real_escape_string($password));

but I get this error for the mysql_real_escape lines:

Warning: mysql_real_escape_string() [function.mysql-real-escape-string]: Access denied for user 'mexautos'@'localhost' (using password: NO) in /home/mexautos/public_html/kiubbo/data/article.php on line 145 Warning: mysql_real_escape_string() [function.mysql-real-escape-string]: A link to the server could not be established in /home/mexautos/public_html/kiubbo/data/article.php on line 145 Warning: mysql_real_escape_string() [function.mysql-real-escape-string]: Access denied for user 'mexautos'@'localhost' (using password: NO) in /home/mexautos/public_html/kiubbo/data/article.php on line 146 Warning: mysql_real_escape_string() [function.mysql-real-escape-string]: A link to the server could not be established in /home/mexautos/public_html/kiubbo/data/article.php on line 146

I get the user name here, I dont know if its safe enough:

function getUsername(){ return $this->username; }

Thx

flag

7 Answers

vote up 7 vote down check

I would suggest using prepared statements for this instead of sprintf

link|flag
Great idea if the mysql interface supported them. He would need to switch to mysqli or PDO to use prepared statements. – jmucchiello Jun 5 at 17:12
If he's using PHP 5 or greater mysqli is included – John Rasch Jun 5 at 17:21
vote up 7 vote down

You need a mysql connection before you can use mysql_real_escape_string.

link|flag
I do have connection, I mean the site works and connects to the db, before inserting those lines. Thx. – Slzr Jun 7 at 17:42
That's not what the error is saying! Try using your link identifier as the second argument for your mysql_real_escape_strings and see if that helps. – whichdan Jun 8 at 0:50
vote up 3 vote down

Not sure if this is what's causing your problem, but I believe the variables in your sprintf statement shouldn't be '$user' and '$this->id', but they should be '%s'

http://us2.php.net/sprintf

link|flag
Not to mention that he is trying to replace an article_id with a variable called $password. – Abinadi Jun 5 at 17:09
Why use sprintf() at all - PHP has variable interpolation in strings. OTOH, a SQL statement built with sprintf() is just as unsafe as an interpolated one... Both methods should be avoided. – Tomalak Jun 5 at 17:10
@Tomalak - I know, but was merely highlighting a bug in his code, not proposing a better method. – JasonV Jun 5 at 17:13
vote up 3 vote down

Warning: mysql_real_escape_string() [function.mysql-real-escape-string]: Access denied for user 'mexautos'@'localhost' (using password: NO)

Warning: mysql_real_escape_string() [function.mysql-real-escape-string]: A link to the server could not be established

Did you check the link ? Is it active ? You need to be connected before to use mysql_real_escape_string() Don't you forget to set the password ?

Try:

mysql -u mexautos -p

(type Enter if no password)

Also, check out your sprintf() function, you need to use the %s to bind your variable

$a = 'Foo';
$b = 'Bar';
$foo = sprintf('Foo Bar %s %s', $a, $b);
link|flag
The error does seem access related. – Ted Johnson Jun 5 at 17:22
Trying to connect throught the console is a way to check the privilege in raw way ! – bgy Jun 5 at 18:51
vote up 2 vote down

You need a connection to use mysql_real_escape_string() because it uses the server's encoding type to help santitize.

Also the sprintf() should look something like this

$query = sprintf("SELECT id FROM votes WHERE username = '%s' and article_id = %d", 
    mysql_real_escape_string($user), 
    mysql_real_escape_string($password));
link|flag
In mine, I wasn't sure if the id was necessarily an integer, so I just went with a string format. – JasonV Jun 5 at 17:11
vote up 1 vote down

I'd recommend using a mature DB abstraction layer like Zend_Db (there are tons of them out there). Implementing your own homebrew solution is not something I'd recommend for a production system.

link|flag
vote up 0 vote down

Like the other said, not '$user' but '%s' and you need an open connection.

@Tomalak sprintf is faster - that's the reason why to use it - it is a native C function.

link|flag
sprintf is faster than what? When interacting with the database, that's not an especially good reason... – Paul Fisher Jun 6 at 15:50
sprintf is faster than build PHP string interpolation, and it wasn't related whit the database subject, but whit Tomalak's comment. – shazarre Jun 6 at 19:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.