Understanding SQL Injection

Introduction

SQL is a language that is used to query, operate, and administer database systems such as Microsoft SQL Server, Oracle, or MySQL. The general use of SQL is consistent across all database systems that support it; however, there are intricacies that are particular to each system.

Database systems are commonly used to provide backend functionality to many types of web applications. In support of web applications, user-supplied data is often used to dynamically build SQL statements that interact directly with a database. A SQL injection attack is an attack that is aimed at subverting the original intent of the application by submitting attacker-supplied SQL statements directly to the backend database. Depending on the web application, and how it processes the attacker-supplied data prior to building a SQL statement, a successful SQL injection attack can have far-reaching implications. The possible security ramifications range from authentication bypass to information disclosure to enabling the distribution of malicious code to application users.

This whitepaper will describe SQL injection attacks, how they are performed, and precautions that should be taken inside applications or networks to reduce risks that are associated with SQL injection attacks.

SQL Injection Explained

A SQL injection attack involves the alteration of SQL statements that are used within a web application through the use of attacker-supplied data. Insufficient input validation and improper construction of SQL statements in web applications can expose them to SQL injection attacks.

Ramifications of Successful SQL Injection Attacks

Although the effects of a successful SQL injection attack vary based on the targeted application and how that application processes user-supplied data, SQL injection can generally be used to perform the following types of attacks:

  • Authentication Bypass: This attack allows an attacker to log on to an application, potentially with administrative privileges, without supplying a valid username and password.
  • Information Disclosure: This attack allows an attacker to obtain, either directly of indirectly, sensitive information that is contained in a database.
  • Compromised Data Integrity: This attack involves the alteration of the contents of a database. An attacker could use this attack to deface a web page or more likely to insert malicious content into otherwise innocuous web pages. This technique has been demonstrated via the attacks that are described in Mass exploits with SQL Injection at the SANS Internet Storm Center.
  • Compromised Availability of Data: This attack allows an attacker to delete information with the intent to cause harm or delete log or audit information that is contained in a database.
  • Remote Command Execution: Performing command execution through a database can allow an attacker to compromise the host operating system. These attacks often leverage an existing, predefined stored procedure for host operating system command execution. The most recognized variety of this attack uses the xp_cmdshell stored procedure that is common to Microsoft SQL Server installations or leverages the ability to create an external procedure call on Oracle databases.

An Example of SQL Injection for Authentication Bypass

One of the many possible uses for SQL injection involves bypassing an application login process. The following example illustrates the general operation of a SQL injection attack. The following HTML form solicits login information from an application user. Although this example uses an HTTP POST request, an attacker could also use HTML forms that utilize the HTTP GET method.

<form action="/cgi-bin/login" method=post>
 Username: <input type=text name=username> 
 Password: <input type=password name=password> 
<input type=submit value=Login>

When a user enters his or her information into this form and clicks Login, the browser submits a string to the web server that contains the user's credentials. This string appears in the body of the HTTP or HTTPS POST request as:

username=submittedUser&password=submittedPassword
   

An application with a vulnerable login process may accept the submitted information and use it as part of the following SQL statement, which locates a user profile that contains the submitted username and password:

select * from Users where (username = 'submittedUser' and password = 'submittedPassword');
   

Unless an application uses strict input validation, it may be vulnerable to a SQL injection attack. For example, if an application accepts and processes user-supplied data without any validation, an attacker could submit a maliciously crafted username and password. Consider the following string sent by an attacker:

username=admin%27%29+--+&password=+

Once this string is received and URL-decoded, the application will attempt to build a SQL statement using a username of admin') -- and a password that consists of a single space. Placing these items into the previous SQL statement yields:

select * from Users where (username = 'admin') -- and password = ' ');
        

As the previous example demonstrates, the attacker-crafted username changes the logic of the SQL statement to effectively remove the password check. In the above example, an attacker could successfully log in to the application using the admin account without knowledge of the password to that account.

The string of two dash characters (--) that appears in the crafted input is very important; it indicates to the database server that the remaining characters in the SQL statement are a comment and should be ignored. This capability is one of the most important tools that is available to an attacker and without it, it would be difficult to ensure that the malicious SQL statements were syntactically correct.

Although the crafted field, which is the username field in the previous example, must be tailored to the vulnerable application, a large set of documented strings that are readily available on the Internet have proven successful at enabling SQL injection attacks. The previous example may be simplistic, but it illustrates the effectiveness of SQL injection attack techniques.

Blind and Second Order SQL Injection

In situations where data from a backend SQL database is not returned directly to the user or attacker, it may be necessary for an attacker to utilize the Blind SQL Injection technique. With this technique, an attacker can determine whether a SQL statement was executed using means other than the direct presentation of data. Using Blind SQL injection, an attacker could perform reconnaissance, obtain sensitive information, or alter database contents, including authentication credentials.

One example of the Blind SQL Injection technique is the introduction of a delay as part of a malicious SQL statement. Depending on the database software in use, an attacker could build a SQL statement that is designed to cause a database server to perform a time-consuming action. With the MySQL database software, it may be possible to craft a SQL statement using the sleep() function. For example, incorporating sleep(10) into a malicious query will create a 10-second delay. An attacker could induce a recognizable delay on database servers that do not contain the sleep() function by executing an operating system command or time-consuming sub-query or attempting to establish an outbound HTTP connection. Should the time-consuming SQL statement be executed, the web application may take noticeably longer to respond than is typical. This method allows attackers to determine whether their SQL statements are being executed with some level of certainty.

Second Order SQL Injection attacks involve user-submitted data that is first stored in the database, then retrieved and used as part of a vulnerable SQL statement. This class of vulnerability is more difficult to locate and exploit, but Second Order SQL Injection attacks justify data validation prior to the execution of all SQL statements in an application, as well as the comprehensive use of parameterized queries.

Defending Against SQL Injection Attacks

A SQL injection attack can be detected and potentially blocked at two locations in an application traffic flow: in the application and in the network.

Defenses in the Application

There are several ways in which an application can defend against SQL injection attacks. The primary approaches include validation of user-supplied data, in the form of whitelisting or blacklisting, and the construction of SQL statements such that user-supplied data cannot influence the logic of the statement.

Blacklisting and Whitelisting

Within an application itself, there are two approaches to input validation that can defend against SQL injection attacks: blacklisting and whitelisting. With blacklisting, specific, known malicious characters are removed from or replaced in user input. Although this approach is often implemented, largely due to the ease at which it can be accomplished, it is not effective when compared to whitelisting. Blacklisting can fail to properly handle complex obfuscation, which could allow an attacker to subvert filters and potentially inject SQL statements. This failure often occurs as a result of evolving attack techniques and filters that are not comprehensive or not implemented correctly.

Alternately, whitelisting examines each piece of user input against a list of permitted characters. This approach is more effective in mitigating the risk of SQL injection, as it is more restrictive concerning which types of input are allowed. Well-implemented whitelisting should examine each piece of user-supplied data against the expected data format.

Regardless of the approach, it will most likely be necessary to tailor the allowed characters by the input field type or by the input field class (for example, text or numeric data). The input validation and sanitization functions that are used to filter SQL injection enabling characters can potentially be generalized and used to filter characters that are indicative of cross-site scripting attacks. More information about cross-site scripting is available in the Applied Intelligence whitepaper Understanding Cross-Site Scripting (XSS) Threat Vectors.

The application must act deterministically when it receives invalid characters from a user. Different levels of response may be appropriate based on the circumstances in which the unexpected data is being processed and the effect it could have. For example, applications should patently reject users that submit two dash characters (--) or a semi-colon character (;) as part of their login name or password, and a high severity alert should be sent to application administrators. However, this somewhat harsh response may not be appropriate when an application receives a single apostrophe character as part of a street address that is submitted by an authenticated user who is entering package shipping information. Nonetheless, the application should behave as intended, and a notification should be sent to application administrators if the submitted apostrophe was not handled properly by the application.

The implementation of input validation and sanitization should contain alerting functionality. This functionality should alert an application administration or development team when unexpected input has been received because it could indicate that the filters may be incorrectly blocking valid, but unexpected data or the application may be under attack. In either case, changes may be required to the filtering functionality of the application.

At first glance, it might appear that these data validation and sanitization techniques could be implemented in client-side JavaScript to be run in a user's browser. From a security perspective, however, it must be assumed that any and all types of data will originate from a user's browser, regardless of the client-imposed safeguards that are in place. Nonetheless, client-side data validation techniques can enhance application usability.

Fortifying SQL Statements

Parameterized queries in ASP.NET, prepared statements in Java, or similar techniques in other languages should be used comprehensively in addition to strict input validation. Each of these techniques performs all required escaping of dangerous characters before the SQL statement is passed to the underlying database system. The following example depicts the use of prepared statements in Java and illustrates how SQL statements are built without user-supplied data and then augmented with the data in such a manner that the structure and intent of the SQL statement cannot be altered:


String sql = "select * from Users where (username = ? and password = ?)"; 

PreparedStatement preparedStmt = connection.prepareStatement(sql); 
preparedStmt.setString(1, submittedUsername); 
preparedStmt.setString(2, submittedPassword); 

results = preparedStmt.executeQuery(); 

Note that prepared statements and similar technologies are not a panacea; used incorrectly without bind variables, they are no more secure than traditionally constructed dynamic queries. The following example illustrates the incorrect use of prepared statements in Java:

String sql = "select * from Users where (username = '" + submittedUsername + 
         "' and password = '" + submittedPassword + "')"; PreparedStatement preparedStmt = connection.prepareStatement(sql); results = preparedStmt.executeQuery();

In addition to ensuring that the intent of SQL statements cannot be altered by user-supplied data, applications should also catch and remove all SQL-generated error messages before they reach an end user. Although this safeguard may hinder a developer's ability to troubleshooting an application error, which can easily be overcome with additional backend logging, the presentation of SQL errors will greatly aid attackers in successfully exploiting a SQL injection vulnerability. The following example is an overly verbose error message:

com.mysql.jdbc.exceptions.MySQLSyntaxErrorException: Table 'sqlInjectionTest.test' doesn't exist 
	at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:936) 
	at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:2985) 
	at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1631) 
	at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:1723) 
	at com.mysql.jdbc.Connection.execSQL(Connection.java:3277) 
	at com.mysql.jdbc.Connection.execSQL(Connection.java:3206) 
	at com.mysql.jdbc.Statement.executeQuery(Statement.java:1232) 
	at sqlInjectionBefore.main(before.java:28) 

This error message discloses that the application is using the Java programming language and the MySQL database platform and that the queried database is named "sqlInjectionTest." Each piece of information could assist attackers in crafting their application input, which increases the odds that they will be successful.

Defenses in the Network

Although each application should ideally provide its own input validation, this situation is not always possible. In certain situations, applications cannot be updated to handle user-supplied data in a secure manner. In these circumstances, administrators and developers can add security to an existing application by leveraging technologies in the network, specifically Intrusion Prevention Systems and Web Application Firewalls.

Intrusion Protection System Signatures

In certain situations, it may be possible to detect and prevent SQL injection attacks using an Intrusion Prevention System (IPS). For an IPS to be effective, it must have visibility into the traffic of the application. For applications that use end-to-end encryption with HTTPS (for example, applications that use HTTPS without termination or acceleration at an intermediate network device), an IPS cannot identify traffic with characteristics of a SQL injection attack.

The Cisco Intrusion Prevention System solution currently contains the following signatures that may indicate the presence of a SQL injection attack. This information is updated as of the S349 Cisco IPS signature update release.

Table 1. SQL Injection-Related Cisco IPS Signatures

Signature ID Description Signature Pack Enabled by Default Comments
3732.0
MSSQL xp_cmdshell Usage
S44
No
Detects usage of a Microsoft SQL server stored procedure that is used to execute operating system commands
5337.0
HTTP args to xp_cmdshell in HTTP Request
S47
Yes
Detects usage of the Microsoft SQL Server xp_cmdshell in the arguments of an HTTP request
5474.0
5474.1
SQL Query in HTTP Request
S294
Yes
Detects the presence of encoded words that are indicative of SQL injection attacks
5930.0 through 5930.5
General SQL Injection
S349
Yes
Detects SQL keywords in HTTP arguments

 

When appropriate, vulnerability-specific signatures are made available in addition to the general signatures in the preceding table. To date, there are many available vulnerability-specific IPS signatures that identify known SQL injection attacks. For example, Cisco IPS signature 5380.0 detects attempted exploitation of a SQL injection vulnerability in the open source software package phpBB.

Web Application Firewalls

Web Application Firewalls (WAFs) are network devices that seek to filter traffic that is destined to web applications at layer 7. As security devices that are tailored specifically to the requirements of web applications, WAFs can provide feature rich security services using the terminology and context appropriate for web application developers.

WAFs can detect and filter many types of malicious application traffic, including SQL injection and cross-site scripting attacks. In comparison to an IPS device, it is possible to terminate encrypted HTTPS sessions on the WAF to allow application inspection of HTTPS traffic. Without this capability, it may not be possible to perform application layer security features within the network. When a WAF terminates HTTPS, depending on its configuration, it may reestablish an HTTPS session to the application server. This configuration allows the WAF to provide security services while preserving the end-to-end confidentiality of data in transit.

The Cisco WAF product, the Cisco ACE Web Application Firewall, can detect and prevent cross-site scripting and SQL injection attacks. The ACE Web Application Firewall can detect the following characteristics of SQL injection attacks:

  • The presence of SQL commands and keywords that may indicate an attack (for example, select, having, or union)
  • The presence of strings that are typically used in SQL injection (for example, -- or @@version)

The Cisco ACE Web Application Firewall will not only detect these attack patterns when they are seen unobfuscated, but it also canonicalizes data that is in transit to an application server. This process allows the WAF to defeat many attack obfuscation techniques, such as the use of data encoding. In addition to detecting the general signatures of SQL injection attacks, the ACE Web Application Firewall can also strengthen an existing application by replacing needlessly verbose server-generated error pages with pages that contain sanitized content, as well as by performing field specific whitelisting of user-supplied data.

Conclusion

This whitepaper has described SQL injection attacks and their ramifications. There are several approaches to combating these types of attacks; protections in the application, such as whitelisting and parameterized queries, and protections in the network, such as Web Application Firewalls.

Acknowledgements

Tim Sammut (tsammut@cisco.com)
Incident Manager

Tim Sammut is a member of the Security Intelligence Engineering organization at Cisco. Additional content produced by Security Intelligence Engineering is located in the Security Intelligence Best Practices section of Cisco Security Intelligence Operations.

References

OWASP: SQL Injection
http://www.owasp.org/index.php/SQL_injection

How To: Protect From SQL Injection in ASP.NET
http://msdn.microsoft.com/en-us/library/ms998271.aspx

Using Prepared Statements in Java
http://java.sun.com/docs/books/tutorial/jdbc/basics/prepared.html


This document is part of the Cisco Security Intelligence Operations.

This document is provided on an "as is" basis and does not imply any kind of guarantee or warranty, including the warranties of merchantability or fitness for a particular use. Your use of the information on the document or materials linked from the document is at your own risk. Cisco reserves the right to change or update this document at any time.

Back to Top

Cisco Security Intelligence Operations