I’m not going through the sql injection basis as we already have a nice guide in depth and there is a number of references on the internet.
But I’m going to make some rough classification of every tool listed so that this can serve as a quick reference.
The explotitaion tools work for different kind of DBMS and using different techniques such as error based sql injection, inband or union based sql injection and blind sql injection.
To date, MS SQL Server is the DBMS that has the highest number
of attacking tools available. It is prone to error based sql injection thus retrieving data from it is as easy as providing the vulnerable url to tools like Priamos and Absinthe and clicking a button.
These tools are not free from bugs. Sometimes they fail to receive correct data, but if you’re not a script kiddie there’s no way you can miss it.
Priamos Download Tools Here
- Works on SQL server only
- Enumerates databases, tables and data in a very nice GUI
- The only big problem is that it works only with GET requests, unless you make it pass through a proxy to change the request to POST and shift the query string to the http request payload.
- Allows for proxy tunneling
- Very fast
Beside some bugs that affect the tool, 2.0b version works with
- Blind sqli
- Error based sqli
Blind mode supports: SQL Server, Postgre, Sybase, Oracle.
Error based mode supports SQL Server
- good GUI from which fine tuning the injection parameters and additional options like authentication.
- POST
- GET
- COOKIE
SQLMap
It’s the best tool to deal with Mysql sql injections. The only tool that does the job sometimes.
- It’s python powered so it’s cross platform.
- MySQL
- Oracle
- PostgreSQL
- Microsoft SQL Server.
- Blind SQLi
- Inband (Union) Sqli
SQLmap performs blind sqli recognition through hashes of the http response text. It is possible to specify the string to match in the response text when the case is TRUE. A very needed feature sometimes.
It supports injection into
- GET
- POST
- COOKIE
- USER-AGENT
- databases username and password
- DBMS version
- databases
- tables
- data
More options are:
- proxy support
- google dorks
- remote file retrieval.
Automagic
It’s written in perl and requires that you read the guide or watch the nice flash video before you can really enjoy it.
It works only against SQL Server DBMS and performs dumo of
- database
- tables
- data
A good backup tool though.
To sum up
Mysql SQL Injection tools:
- SQL Map (blind and inband)
- SQL Map (inband)
- Absinthe (blind)
- Absinthe (blind)
- Atomagic (error)
- SQL Map (error and inband)
- Priamos (error)
- Absinthe (error)
Of course every professional has his own tools and patches to improve these tools or adding functionalities. Your own tool is always the best tool.
Any suggestion or addition is encouraged!
No comments:
Post a Comment