October 2016
Intermediate to advanced
298 pages
5h 49m
English
One of the cool features in SQLMap is the SQL shell. The SQL shell basically invokes the built-in SQL interactive interpreter and it is presented in such a way that it feels like interacting with a database SQL utility.
The interpreter is invoked by using --sql-shell. Let's check this out as follows:
./sqlmap.py -u http://192.168.50.2/Less-1/?id=2 --sql-shellThe output is shown in the following screenshot:

That example makes data retrieval with an injection look so simple. However, there are some quirks with this. Since typically most SQL injection issues are based on SELECT queries, the SQL shell might not work with other type of options ...
Read now
Unlock full access