What automated tools are there?
~~ Mark Harrison ~~
|
10
|
|
|
|
|
|
You can also find a script kiddy app and aim it at your site, they like to use SQL injection. But rather than doing all that, isn't it simpler and easier to use a library that prevents SQL injection? |
||||||
|
|
|
There are several plugins for Firefox: HackBar, SQL Injection 1.2 |
||
|
|
|
|
sqlmap: a SQL injection tool
|
||
|
|
|
|
How about simply avoiding the use of techniques that allow SQL injection attaks in the first place? Useful resource: Oracle Tutorial on Defending against SQL Injection Attacks |
||
|
|
|
|
A commercial automated tool is Scan Alert from McAfee. They spider your site daily and report any vulnerabilities - not just SQL injection, but also things like ports that should not be open or insecure versions of software running on the server. |
||
|
|
|
|
http://www.securitycompass.com/ I've not really used their firefox plug in, but one of them is meant to find SQL injection problems. |
||
|
|
|
|
The findbugs tool has some support for detecting potential SQL injection attacks in Java code, using static analysis. Essentially it will look for cases where input parameters are used to construct SQL queries rather than used as prepared statement parameters. |
||
|
|