Using sqlmap to discover SQL vulnerabilities

The Tester

Article from Issue 173/2015
Author(s): , Author(s):

SQL injection is a big problem on the Internet. The handy sqlmap utility will tell you if you need to worry about an SQL attack in your own web environment.

SQL injection is one of the most common forms of network intrusion. An SQL injection attack typically exploits a problem in the SQL code – for instance, incorrect filtering for string literal escape characters or insufficient type checking. If you watch the Common Vulnerabilities and Exposures website [1], you'll see that new SQL injection attacks are discovered every week.

Software developers and Linux distribution maintainers are constantly watching for new SQL injection problems, which are often fixed through a security patch. However, many potential problems fall through the cracks – either on the development side or because a busy webmaster doesn't have time to install every patch and upgrade every system.

More importantly, some attack vectors haven't been discovered or adapted yet, so even if you do your best to keep your own systems up to date, it is still a good idea to look for potential problems yourself.

Most SQL injection attacks, however, require artificial, carefully crafted, and totally un-intuitive input. In other words, you almost have to be an expert to watch the security alerts and recreate every potential SQL attack on your own. Luckily, the security-minded admin can turn to a tool called sqlmap [2] to check for vulnerabilities in network-based SQL systems.

Sqlmap is an SQL-focused penetration testing tool that includes several useful options for discovering and attacking a SQL database. The easiest way to obtain sqlmap is to install or Live-boot a pen-testing Linux distro that comes with sqlmap pre-installed. In this article, I'll start up sqlmap from the Kali Linux Live system [3]. Kali is a Linux distribution specializing in security tools to assist in penetration testing, vulnerability detection, forensics, and other security-related tasks. You could also look for sqlmap in your Linux distro's package repositories, or you could download the source code from the sqlmap project website.

Sqlmap supports a number of database alternatives, including MySQL, Oracle, PostgreSQL, Microsoft SQL Server, Microsoft Access, IMDB2, SQLite, and more. The sqlmap tool comes with automatic recognition of password hash formats and built-in support for dictionary attacks to crack passwords. Advanced features let you dump a complete database file, download and upload files to the database server, and even engage in privilege escalation using Metasploit's Meterpreter tool.

The Kali distro weighs in at less than 3GB and is available as a direct ISO download or torrent feed [4]. Kali is available in 32- and 64-bit versions for Intel processors and is also available for ARM processors. Kali supports forensic modes, USB, and straight installs. In this article, we describe how to improve your network's security using Kali Linux. If you decide to use Kali for your pen testing, see the Kali documentation at the project website [5] for more on getting a system up and running.

SQL Injection

SQL injection refers to methods that make a database server run SQL commands that were not intended by the application developer. Although vulnerability tools can usually find SQL vulnerabilities easily, some users might not realize their data is vulnerable. The steps described in this article can help you determine whether your data is susceptible to theft or compromise using SQL injection.

Thanks to sqlmap, you can look for SQL problems without advanced understanding of SQL programming techniques.

Information Gathering

Sqlmap is ideal for identifying vulnerabilities specific to your particular database version without actually having to know how to inject SQL code.

To get started determining whether a server is susceptible to a SQL injection attack, use the -u parameter with the sqlmap command to specify the URL you want to test. The command in Listing 1 (line 1) launches a test for the URL http://www.internalserver.com/looky.php?id=1.

Listing 1

Looking for a Vulnerable Database System

 

Sqlmap launches into a series of tests to look for vulnerabilities. The output in Listing 1 shows that the tests reveal that the database is injectable. Line 33, for instance, states:

GET parameter 'id' is 'MySQL UNION query (NULL) -- 1 to 20 columns' injectable

The tests in Listing 1 also reveal the database vendor and version: MySQL 5.0.11. As you can see in line 54, sqlmap saves the information it uncovers to a text file:

[21:03:18] [INFO] fetched data logged to text files under '/usr/share/sqlmap/output/www.internalserver.com'

Identifying Databases

Now that I know the database is vulnerable, the next step is to determine which databases are running on the MySQL server by using sqlmap with the -u parameter and the --dbs parameter (Listing 2).

Listing 2

Getting the Database Names

 

The output following the query in Listing 2 reveals that the database server has two databases: information and clients (lines 33 and 34). At this point in the pen test, the database owner will hopefully start to understand that the system is indeed at risk of an SQL injection.

Buy this article as PDF

Express-Checkout as PDF
Price $2.95
(incl. VAT)

Buy Linux Magazine

SINGLE ISSUES
 
SUBSCRIPTIONS
 
TABLET & SMARTPHONE APPS
Get it on Google Play

US / Canada

Get it on Google Play

UK / Australia

Related content

  • Security Lessons: Database Security

    Your database can be one of the most vulnerable elements in your organization. We share some tips for detecting and preventing attacks.

  • This Month's DVD

    Linux Mint 21 Cinnamon and Kali Linux 2022.4

  • Intrusion 101

    You need to think like an attacker to keep your network safe. We asked security columnist Kurt Seifried for an inside look at the art of intrusion.

  • Web Security Dojo

    Protecting your own websites from attack either costs a lot of money or requires a lot of expertise. Web Security Dojo helps you learn to think like an expert.

  • MySQL Workbench 5.1

    A small database is easy to plan on paper, but the structure quickly becomes more complex as you add more elements. MySQL Workbench can help you keep the tables arranged.

comments powered by Disqus
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters

Support Our Work

Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.

Learn More

News