Slashdot Mirror


New Attack Exploits "Safe" Oracle Inputs

Trailrunner7 writes "Database security super-genius David Litchfield has found a way to manipulate common Oracle data types, which were not thought to be exploitable, and inject arbitrary SQL commands. The new method shows that you can no longer assume any data types are safe from attacker input, regardless of their location or function. 'In conclusion, even those functions and procedures that don't take user input can be exploited if SYSDATE is used. The lesson here is always, always validate and prevent this type of vulnerability getting into your code. The second lesson is that no longer should DATE or NUMBER data types be considered as safe and not useful as injection vectors: as this paper (PDF) has proved, they are,' Litchfield writes."

24 of 118 comments (clear)

  1. heh by stoolpigeon · · Score: 4, Interesting

    It's an interesting piece but when he points out that there really is little chance of it being used in the real world, that is an understatement. Using this method in the real world wouldn't even make sense.
     
    In order to pull this off you need to have alter session priveleges. And you need to already have injected sql into the database- which means there is absolutely no point to taking the extra steps to modify some other data type to allow you to do what you have already done.
     
    It's an interesting mental exercise but I don't think it really has an practical ramifications. If you've already handed out alter session to anyone using a form you've hosed yourself so many times over, playing with sysdate or number is the least of your worries.
     
    Anything that reminds people to be careful about how they handle input is good, but I think a lot of people are going to think this is a bigger deal than it is.

    --
    It's hard to believe that's how Micronians are made. Why don't we see it right now by having you both kiss one another?
    1. Re:heh by arth1 · · Score: 4, Insightful

      Lack of input validation is usually a bigger problem than what you think it is -- the context might make the instance safe, but code tends to be re-used, coding practices repeated, and projects getting additions that might introduce a vector that weren't there before.

      The only time when lack of validation is good practice is at extreme low level where you control the input. Otherwise, it usually signifies a coder that lacks the ability to think outside his own procedures.

      Regards,
      --
      *Art

    2. Re:heh by morgan_greywolf · · Score: 2, Informative

      Agreed. Handing out ALTER SESSION privs to anyone using a form is just plain dumb, dumb, dumb. You may as well put PLEASE HACK ME in flashing red letters at the top of the form.

    3. Re:heh by Joe+U · · Score: 4, Insightful

      Too many poor developers just make the web app run as dbo. They also tend to use 'select * from' all too often.

      Drives me nuts, because I'm the exact opposite, you don't get any (yes including read) access except a few stored procedures you need to read/write data.

    4. Re:heh by moderatorrater · · Score: 4, Insightful

      he points out that there really is little chance of it being used in the real world, that is an understatement I believe it was George Guninski who saw the possible exploit in buffer overflows several decades ago and said something along the lines of "this is possible, but the difficulty in crafting the message makes this seems unlikely". If there's the possibility of an attack vector, then someone will use it. Computers are fast enough to try hundreds of attacks per second; "unlikely" often means "only works 1/1000 times, therefore used every day".
    5. Re:heh by DazzaL · · Score: 3, Informative
      It is not true to say that you need ALTER SESSION privilege granted to actually issue ALTER SESSION commands. Yes, that sounds counter-intuitive but it is true that you can issue SOME alter session commands if you can connect to a database regardless of what privs you have.

      In this case setting NLS_DATE_FORMAT can be done by ANYONE regardless of whether they have ALTER SESSION granted.

      some observations:

      1. in most web apps you wont have access to the database, just the webserver...the database should be firewalled off.

      2. it is RARE for PL/SQL developers to use resort to using dynamic SQL (execute immediate/DBMS_SQL) to run SQL, so this flaw, whilst interesting, is HIGHLY unlikely to be a problem...its certainly no where near as dangerous as developers not validating inputs where a application tier (java/php etc) does sql commands (esp if its not using bind variables) against a database [which by definition are dynamic sql calls].

      Not to mention that using execute immediate without the USING clause and bind variables is again really rare by any half competent pl/sql developer.

      3. the code also relies on another major error in the coding..type conversion. the date is implicitly converted to a string due to concatenation(||) i.e oracle rewrote that internally as to_char(v_date) and, as there was no supplied format it uses NLS_DATE_FORMAT.

      i.e. in the example in the paper: stmt:='select object_name from all_objects where created = ''' || v_date || ''''; dbms_output.put_line(stmt); execute immediate stmt;

      would undoutably be written PROPERLY as (in the dynamic case) execute immediate 'select object_name from all_objects where created = :b1' using v_date;

      which is not susceptible to injection (NLS_DATE_FORMAT cant even come into play here).

    6. Re:heh by martinmarv · · Score: 2, Informative
      In the environments I've worked in (enterprise applications and large CMS-based websites), using stored procedures for everything can be a pain. For me, the best approach is a happy medium:-
      • Don't restrict yourself to stored procedures, but do use them for updates, or database-side processing
      • Do use a dedicated account for database access and make sure only appropriate permissions are granted
      • Use parameterised queries (seems like most common frameworks support this)
      Also
      • Always validate user input
      • Always escape user input that will end up in the database
    7. Re:heh by Kozz · · Score: 2, Informative

      Reminds me of a webapp I worked on once. The programmer, in his infinite wisdom, would "SELECT * FROM TABLENAME", then stuff all 2500 records into a PHP array. Then he would promptly iterate over this array, selecting only two columns (of about thirty) he wanted from the desired rows matching his criteria.

      I held my gag reflex long enough to perform only the requested change and make it functional. Then I declined all work after that.

      --
      I only post comments when someone on the internet is wrong.
    8. Re:heh by blirp · · Score: 2, Informative
      In order to pull this off you need to have alter session priveleges.

      No, you don't. What you need is to somehow be able to modify NLS_NUMERIC_CHARACTERS or NLS_DATE_FORMAT. This is easily demonstrated with ALTER SESSION. But there might be a bug/exploit somewhere down the road that allows this in some other manner. Each of the two exploits are unusable, but combined ...

      M.

  2. Use ORMs by chrysalis · · Score: 2, Informative

    Interesting flaw.

    However, don't ORMs (and database-independant abstraction layers like AdoDB) protect against this?

    --
    {{.sig}}
    1. Re:Use ORMs by Shados · · Score: 3, Informative

      Yup. Basically, the only real way this could be exploited would be something like a stored procedure which takes one of the "vulnerable" types as parameters, exposed directly to the clients, and concatenate the types with little to no casting.

      Something like (pseudocode, the following wouldn't even pass syntax check, obviously, but its stupid hard to find a working case)

      DECLARE @blah SOMEVULNERABLETYPE

      Exec "select * from stuff where stuff.Blah =" + @blah;

      If @blah was a string, everyone would realise its vulnerable...but in this case, numbers, dates, etc, would be assumed safe (how do you put code in a number??), when it supposingly was discovered its not safe.

      However, if you went through a database driver (not even an ORM!), and made a prepared statement, passed a Java (for example) variable as parameter to a query, well, no invalid input will be able to get through. If you add an ORM layer on top of that which does extra validation, then even if all of the types (both java and database) were vulnerable, it wouldn't go through either...

      This is really more of a theoritical vulnerabilty than a real one... it can't realistically be exploited in the wild, and its hard to even -imagine- a scenario in a well coded app.

  3. nTier validation by Joe+U · · Score: 5, Insightful

    The 3 minimum levels of validation:

    Validate at the client tier. (To save a return trip)
    Validate at the application server tier. (to save a database trip)
    Validate at the data tier. (to save your data)

    Why is this so hard for developers to understand?

    1. Re:nTier validation by Kjella · · Score: 2, Interesting

      Developers? No. Try making a PHB understand that. Or a project manager, which either cuts that or some feature the client will notice right away. Or the guy that gets the ungrateful job of coordinating three teams of completely different teams in different subprojects with different managers, trying to keep a common model of "valid data". The real way it works is more like:

      1. User validation = stupid "have you filled out these fields" validation
      2. Application validation = application logic validation
      3. Data logic = field validation and foreign keys etc. to not leave dangling data that's invalid or inconsistant

      There's no point in making more client-side validation than that, because you can assume an attacker will send raw data at you anyway. The database layer is rather fucked if the commands are already injected - the best a database can do is to treat data types as expected and not fall for that kind of tricks.

      --
      Live today, because you never know what tomorrow brings
    2. Re:nTier validation by Kozz · · Score: 3, Insightful

      Preaching to the choir, I'm sure!

      I was recently criticized for taking the time to do something "right" (i.e. verify and understand the problem and the technology needed to create a reliable solution). My boss indicated that his (crappy) code was meant as an "emergency fix". But come on, we all know that if his code had accomplished the job (however terribly), he'd have left it right there and never attempted to improve it.

      --
      I only post comments when someone on the internet is wrong.
  4. Re:To all you type safe ninnies by AKAImBatman · · Score: 4, Informative

    Type safety and "safe" data types are two different things. One is a language construct intended to prevent errors in code through compile-time checking (though you pay in flexibility), the other is types of data that theoretically can be used in a database without doing validation checks.

    I'll leave it as an exercise for you to figure out which one is which.

  5. Does it look like this? by Anonymous Coward · · Score: 2, Funny

    delete from comments where 1");--

    First Post!!!!!!!!!!

  6. Thats what they said about cross site scripting. by Anonymous Coward · · Score: 3, Insightful

    Your comment "he points out that there really is little chance of it being used in the real world, that is an understatement" is reminiscent of those who proclaimed no one would need more than one 360k floppy.

    It best concluding non vulnerability without time and personal investment is naive and at best considering the large volume new security measurements in evidence prove that statements like these are foolish usually false and cause much more damage by breeding a false sense of security and complacency and ignorance.

  7. From comic to reality by GoNINzo · · Score: 5, Funny

    This makes it clear it's only a matter of time before xkcd predictions become reality.

    --
    Gonzo Granzeau
    "Nothing the god of biomechanics wouldn't let you into heaven for.." -Roy Batty
  8. Re:DB Programming 101? by 0racle · · Score: 5, Insightful

    People learn database programming now? I thought they just threw together whatever SQL and PHP they could find online and called themselves programmers.

    --
    "I use a Mac because I'm just better than you are."
  9. Re:security super-genius by BigBlueOx · · Score: 2, Informative

    The term "super-genius" was coined in modern English in 1952 in "Operation: Rabbit". The fact that the supposedly encyclopedic Wikipedia refuses to index on this term, despite my frequent repeated submissions of well thought out and quite lengthy protest emails, just goes to show their blighted pig-ignorance.

    http://en.wikipedia.org/wiki/Operation:_Rabbit

  10. This is not merit a whitepaper by Anonymous Coward · · Score: 4, Interesting

    First off, this isn't a new class of attack. This type of attack is already known as second order SQL injection. Second, as several people have noted, you need to be able to execute the ALTER SESSION command. That means you're already issuing SQL commands directly. So, this attack is really only useful when can already inject, but need SQL to run in the context of a more privileged stored procedure. Finally, this attack relies on a very abnormal statement form. All said, that's a whole lot of dominoes that need to line up for a simple elevated SQL privilege.

    This whole thing just sounds like an odd bug that someone at NGS found somewhere. It's certainly clever, but it's not a common pattern or new class of bug--and definitely not worthy of a white paper. What I find really odd is that Litchfield and the NGS guys used to do really impressive work. This is way below the bar of what they've produced in the past.

  11. Re:DB Programming 101? by Shados · · Score: 4, Insightful

    DB Programming (even the science part, such as the relational model) is virtually never taught in colleges. When it is, its as an elective class most of the time, even in the big name tear-through-your-wallet colleges.

    Still cracks me up how in every interview I pass, I always get asked "Ok, so can you explain to me the difference between an inner and an outer join?" or "What is the main benefit of an index on a database table?". Shows the state of the workforce...

  12. Re:Why validate when you can sanitize? by Shados · · Score: 4, Insightful

    No no no. This has a tons of potential holes, such as an encoding based attack in UTF16 or similar encoding. Use -prepared statements-.

    Escaping/sanitizing is just one step up from validating. Let the -driver- do it for you, not the language or the framework. The database itself is the only one who truly knows how to handle itself, and drivers tap into that in prepared statements. -THAT- will protect you. Parameterized query APIs do -not- simply escape stuff in the back. Things are done at the level of the connection, chatting with the database API to create a cached/compiled version of the query, then plug in parameters -after- the query was parsed (so at that point its impossible to modify it).

    That is -much- safer than just cleaning up a string (because it cannot abuse encoding/string related features), and has the extra advantage in many DBMS to also allow you to reuse query plan cache, thus improving performance and making it easier to benchmark and profile queries.

  13. Re:DB Programming 101? by VGPowerlord · · Score: 2, Informative
    Since Shados didn't say what the difference is, I will.

    Inner and outer joins always have a join condition.
    An INNER JOIN only returns the records that satisfy the join condition.
    An OUTER JOIN always returns all the results of one (LEFT or RIGHT) or both (FULL) tables, returning nulls for all the requested data in the other table when the join condition is not met.

    Maybe that's not clear enough. I'll make a pair of contrived tables to demonstrate.

    people
    id | name
    01 | Bill
    02 | Tina
     
    items
    id | item
    01 | candy
    01 | ice cream
    03 | milk
    Seems simple, right? Here's the various queries and what they'd return:

    SELECT name, item FROM people INNER JOIN items USING (id)
    name | item
    Bill | candy
    Bill | ice cream

    SELECT name, item FROM people LEFT OUTER JOIN items USING (id)
    name | item
    Bill | candy
    Bill | ice cream
    Tina | NULL

    SELECT name, item FROM people RIGHT OUTER JOIN items USING (id)
    name | item
    Bill | candy
    Bill | ice cream
    NULL | milk

    SELECT name, item FROM people FULL OUTER JOIN items USING (id)
    name | item
    Bill | candy
    Bill | ice cream
    Tina | NULL
    NULL | milk
    Note that if you ever used real tables like this, your work would probably end up on The Daily WTF.
    --
    GLaDOS for President 2016! "Well here we are again. It's always such a pleasure." -- GLaDOS, 2011