Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

First, I'm not trying to hack or do anything illegal. Thought I let you guys know. I have a client that want's me to do some modifications on his system, when I was looking at it I notice that NOTHING was escaped. I'm not joking, nothing is being escaped. I explained to him that it's insecure to have a system like that. He then proceeds to tell me that he's had his system like this for few years and nothing has happened. I need to show him that his system is not safe, but I really don't know to do perform an sql injection. Here's a few queries that use $_GET and are not escaped.

SELECT *,DATE_FORMAT(joined,'%M %d, %Y') as \"Joined\" FROM `members` WHERE `name` LIKE '".$ltr."%' ORDER BY points DESC LIMIT $page,50

Here's another one:

SELECT * FROM groups WHERE id=$thisladder[grid]

The only thing that I see that "might" clean the $_GET is this function:

if (!ini_get('register_globals')) {
   $superglobals = array($_SERVER, $_ENV,
       $_FILES, $_COOKIE, $_POST, $_GET);
   if (isset($_SESSION)) {
       array_unshift($superglobals, $_SESSION);
   }
   foreach ($superglobals as $superglobal) {
       extract($superglobal, EXTR_SKIP);
   }
}

It's possible that the function above may be sanitizing the variables. And yes, the system also uses register globals, which is also bad.

I also made a backup, just in case.

share|improve this question
2  
Do you want to know how to prevent an SQL injection, or prove to your client that it's insecure? – skyuzo Oct 12 '11 at 20:49
3  
Oh man, not only they don't escape anything, but they explicitly emulate the register_globals functionality if it's disabled! This is a first! – rid Oct 12 '11 at 20:49
I don't know how to prove it. But I do know that mysql_real_escape and prepared statements are the way to go. – user962449 Oct 12 '11 at 20:49
7  
"... he's had his system like this for few years and nothing has happened." By that same logic, he should conclude, "I've never been in a car accident before, so I don't need to wear a seat belt." – Alex Howansky Oct 12 '11 at 20:50
3  
Only because your social skills are not good enough to just tell the person you're working for what needs to be fixed, you need to solve that problem technically? You should better fix your problem at it's root. And not tell somebody else you're familiar with SQL injections when you're not. – hakre Oct 12 '11 at 20:57
show 7 more comments

3 Answers

up vote 6 down vote accepted

Can't say it better than http://xkcd.com/327/.

But then again, as Marc B says, forget SQL injection, register_globals is much, much worse. Never thought I'd actually see it emulated, just in case it's off.

share|improve this answer
god we're such nerds, couldn't stop laughing at those images lol. So globals are worst than injections? o_0 – user962449 Oct 12 '11 at 21:05
@user962449, with register_globals, you can just replace the value of pretty much any variable by simply including it in your GET request, for example. – rid Oct 12 '11 at 21:06

Some fun things to show your 'friend' how stupid his code is:

http://example.com/badscript.php?_GET[]=ha+ha+I+pwned+your+GET+superglobal
http://example.com/badscript.php?_SESSION[issuperuser]=1

This sort of thing is EXACTLY why register_globals is such an outright F'ingly moronic idea, and (after FAR too long) has finally been made to default to OFF.

Forgot SQL injection - that idiotic piece of code is allowing remote PHP variable injection.

share|improve this answer
This is like the mother of all injections... – Adrian Carneiro Oct 12 '11 at 21:10
@Marc B: I beg to differ, that code won't work whether or not register globals is on. $_SESSION might get overwritten if it is off and the session not yet initialized, but session_start would have deleted it anyway. You might want to reference a PHP version until that was possible when register globals was set to on. – hakre Oct 12 '11 at 21:37
@hakre: true enough, the session one depends entirely on when session_start is called relative to the pseudo-register globals. Just using this to demonstrate just how BAD register_globals can potentially be. – Marc B Oct 12 '11 at 21:39
@MarcB: The pseudo-register globals actually uses EXTR_SKIP. So if session was started, it won't work. If session is started later on, the $_SESSION array would be reset anyway. But with register_globals there once was a time when this stuff actually was possible ^^ ;) – hakre Oct 12 '11 at 21:53

if login code looked something like this:

$query = 'SELECT id FROM users WHERE username=\''.$_POST['username'].'\' AND password=\''.$_POST[password].'\'';
$result = mysql_query($query);
etc, etc...

try typing this into the login fields

username = "whatever"
password = "' OR 1"

make sense?

share|improve this answer
Passwords are hashed. So I guess the script is not that bad :/ – user962449 Oct 12 '11 at 21:13
then use "' OR 1" for the username instead. – dqhendricks Oct 12 '11 at 21:15
Note, that I'm not wiz with sql injections. SO I just type ' OR 1 ? – user962449 Oct 12 '11 at 21:18
@user962449, you could just use something like "admin'--" for username. That would make the query something like SELECT id FROM users WHERE username='admin' -- ' AND .... Anything following -- is a comment. – rid Oct 12 '11 at 21:18
@Radu good call. this way you can log in as your boss if you know his username. – dqhendricks Oct 12 '11 at 21:23
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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