Sack the 'tard for not using bind variables in his sql code and get someone who knows what they are doing to do the work. It's not as if Tom Kyte hasn't been banging on about this since the beginning of the millenium.
Sick vulture because it could swallow a program spec and puke better code than that.
By Billy VerreynnePosted Tuesday 29th April 2008 05:17 GMT
.. simply break the idiot's kneecaps with a well wielded lead pipe.
Not using bind variables is beyond idiotic.
Using DBMS_SQL, the most complex cursor interface in PL/SQL, is just plain stupid - the only time that DBMS_SQL is needed is when requiring a describe interface for a cursor.
And guess what - needing a describe interface means you have no fricken clue what the SQL projection is, thus dynamic SQL. And dynamic SQL is *ALWAYS* risky - and if you code that without a healthy dose of logic (and bind variables!), and then get hack.. your poor dumb bastard you, you deserved that.
What is sad though that these "lateral" SQL injections will likely work on many a system. Not because Oracle is that flawed. But because these code monkeys (not to be confused with real programmers) that write PL/SQL are just that damn stupid.
Seems like many is confusing the "unbreakable" slogan of Oracle to extend to their code monkeys. Sadly, that is not the case.
By Anonymous CowardPosted Tuesday 29th April 2008 07:26 GMT
surely an exception section :
EXCEPTION WHEN OTHERS THEN
BEGIN
DBMS_SQL.CLOSE_CURSOR(CURSOR_NAME);
EXCEPTION WHEN OTHERS THEN RAISE;
END;
RAISE;
Error handling should always exist, regardless of whether you expect it to happen or not. I'm sure there's an easier, more elegant solution, but off the top of my head that should work. Cursors should always be closed in the event of an error!
By Gareth StephensPosted Tuesday 29th April 2008 09:19 GMT
As Dominic says this is VERY easy to avoid - simply binding the variable would prevent the attack - in addition it would likely save you resources as well as it would only soft parse the query instead of the hard parse everytime it has a new date plugged into the code.
@Aodhhan - is it a vulnerability though? Poor coding practice yes, but a vuln that needs fixing? I'm not convinced - IMHO it's a bit like saying that because you can shoot yourself in the foot with pointers in C, C needs fixing...
Comments on: New attack technique threatens databases
Ah, external developers #
By Robert Grant Posted Monday 28th April 2008 15:05 GMT
External or internal developers #
By Chris Miller Posted Monday 28th April 2008 15:57 GMT
Eh? #
By Michael Posted Monday 28th April 2008 17:29 GMT
Of course... #
By Aodhhan Posted Monday 28th April 2008 18:12 GMT
Wait #
By kain preacher Posted Monday 28th April 2008 19:39 GMT
Was Oracle not the one selling UNBREAKABKE databases? #
By daniel Posted Monday 28th April 2008 20:18 GMT
Or you could... #
By Dominic Posted Monday 28th April 2008 21:35 GMT
Or you could.. #
By Billy Verreynne Posted Tuesday 29th April 2008 05:17 GMT
there's some code missing #
By Anonymous Coward Posted Tuesday 29th April 2008 07:26 GMT
Bind, bind, bind! #
By Gareth Stephens Posted Tuesday 29th April 2008 09:19 GMT
Not a great fan of Oracle but.... #
By Matt Posted Tuesday 29th April 2008 09:55 GMT
slightly OT, but amusing. #
By Anonymous Coward Posted Tuesday 29th April 2008 17:09 GMT
@matt #
By daniel Posted Tuesday 29th April 2008 20:08 GMT