...
Suppose a system authenticates users by issuing the following query to a SQL database. If the query returns any results, authentication succeeds; otherwise, authentication fails.
Code Block | ||
---|---|---|
| ||
SELECT * FROM db_user WHERE username='<USERNAME>' AND password='<PASSWORD>' |
Suppose an attacker can substitute arbitrary strings for <USERNAME>
and <PASSWORD>
. In that case, the authentication mechanism can be bypassed by supplying the following <USERNAME>
with an arbitrary password:
Code Block | ||
---|---|---|
| ||
validuser' OR '1'='1 |
The authentication routine dynamically constructs the following query:
Code Block | ||
---|---|---|
| ||
SELECT * FROM db_user WHERE username='validuser' OR '1'='1' AND password='<PASSWORD>' |
...
Similarly, an attacker could supply the following string for <PASSWORD>
with an arbitrary username:
Code Block | ||
---|---|---|
| ||
' OR '1'='1 |
producing the following query:
Code Block | ||
---|---|---|
| ||
SELECT * FROM db_user WHERE username='<USERNAME>' AND password='' OR '1'='1' |
...
Rule | Severity | Likelihood | Remediation Cost | Priority | Level |
---|---|---|---|---|---|
IDS00-J | High | ProbableLikely | Medium | P12P18 | L1 |
Automated Detection
Tool | Version | Checker | Description | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
The Checker Framework |
| Tainting Checker | Trust and security errors (see Chapter 8) | |||||||||||
CodeSonar |
| FBJAVA. | SECURITY.SQL_PREPARED_STATEMENT_GENERATED_FROM_NONCONSTANT_STRINGIO.INJ.SQL | SQL Injection (Java) | ||||||||||
Coverity | 7.5 | SQLI | Implemented | |||||||||||
Findbugs | 1.0 | SQL_NONCONSTANT_STRING_PASSED_TO_EXECUTE | Implemented | |||||||||||
Fortify | 1.0 | HTTP_Response_Splitting | Implemented | |||||||||||
Klocwork |
|
| SV.DATA.DB | Implemented | ||||||||||
Parasoft Jtest |
| BD-SECURITY-CERT.IDS00.TDSQL | ImplementedProtect against SQL injection | |||||||||||
SonarQube Java Plugin |
| Executing SQL queries is security-sensitive S3649 - SQL queries should not be vulnerable to injection attacks | ||||||||||||
SpotBugs |
| SQL_NONCONSTANT_STRING_PASSED_TO_EXECUTE | Implemented |
Related Vulnerabilities
...