vote up 2 vote down star

I'm working for a customer with a huge legacy codebase consisting of various Java en JSP based applications.

Most querying is done using the home-build 'orm' system. Some applications use Plain Old JDBC. Some applications are based on Hibernate (yes HQL build with plus signs is a potential problem as well). Some of the older applications are entirely writen in JSP.

I've found a couple of SQL inject bugs manually. But I could really use some sort of tool to search for potential weak spots.

Any ideas?

flag

easiest way I've found is to expose my app to the public internet for a few minutes! Not posting as a response, as I don't want the down-votes. – Danimal Sep 22 '08 at 18:01
hehe, most of these applications have been online for ages... which gives people false confidence! – p3t0r Sep 22 '08 at 19:24

6 Answers

vote up 3 vote down check

I would recommend FindBugs (there is also an eclipse plugin) which can track down these issues and many more.

We are using it at work, it's fast and it's worth the money (as in free). We've solved some common problems with its help.

link|flag
vote up 0 vote down

When I was working on localization of "this-will-never-need-localization" application, we use a home-made tool to analyzing compiled code ( IL in .NET, it is same as byte-code in Java ).

You can find calling the specified methods which works with DB ( typicaly CRUD operations ) wicht has a string parameter with SQL command, and track the string instance up and check for concating.

We used the .NET Reflector for decompiling and tracking strings. But I don't know, if is available similar tool for Java :(.

link|flag
vote up 3 vote down

I'd write some searches or load up an IDE that looked for use of java.sql.Statement as opposed to PreparedStatement.

link|flag
vote up 0 vote down

You can go for prevention rather than cure. add a sanitization layer just below ur UI, so you wont end up with sql/scripts in user inputs. There must be examples in java, I have seen such an approach in CakePHP

link|flag
vote up 0 vote down

Find any place that doesn't use a PreparedStatement.

link|flag
What about usages of PreparedStatement where the parameterized statement is formulated via String concatenation? – shadit Sep 22 '08 at 20:47
@shad: That is exactly one of the cases I've found digging arround manually. thanks for pointing it out! – p3t0r Sep 23 '08 at 5:30
If you're not using parameters, you're not really getting any benefit from the PreparedStatement, that's true. But if you've got more SQL injections coming from that than from plain old Statements that can't be parameterized, a previous dev had a sick sense of humor. – Hank Gay Sep 23 '08 at 9:33
vote up 2 vote down

How large is your URL space? If possible, it's best to attempt SQL injection via HTTP GET and POST requests. There are some issues that can be found by source/byte code examination, but the only way to know for certain what kinds of potentially malicious input your application will accept is to use HTTP requests.

CAL9000 is a good SQL Injection / Cross-site Scripting testing tool if your set of URLs is small.

Companies that are serious about detecting mishandled malicious input will hire a 3rd party to do penetration testing. White Hat Security is a vendor I have worked with in the past and can recommend. We used them for a $100MM+ e-commerce web site. (I have no affiliation with White Hat and do not benefit in any way if you become their customer.)

All testing/hardening of your code aside, it is a very good idea to have an HTTP firewall in place like mod_security.

link|flag

Your Answer

Get an OpenID
or

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