SQL Injections

SQL injection is a technique used to introduce unwanted code into a database. This code is malicious and can be sent to a database and run without permission. The result can be anything from bypassing login to data theft or corruption of a database. The code is usually entered when a website or application asks for user input.

To prevent SQL injection, databases should not take user input as a command to be run. Running tests across a database could also show any vulnerabilities. Also, parameters can be used to protect against SQL injection, allowing for more control over the values being passed. This will ensure SQL will treat the data as text and not as a command to be executed.

Vulnerable Queries

In this example, there is a form that asks for your User ID. This form will run this SQL command to check if the user exists.

Now if a user enters ‘1’ OR ‘1’=’1’, then the command will look like the following:

SELECT * FROM users WHERE UserID = 'input from user'

The user injecting the code will be able to access all the UserID’s because 1=1 will always execute as true.

This example will send a command to the database to drop a table:

SELECT * FROM Projects WHERE UserID = 'input from user'

If the input is something like '1'; DELETE FROM Projects WHERE '1'='1', the following will happen:

  1. Users with a UserID set to 1 will be located and retrieved.
  2. The semi-colon ; indicates the end of a command and the beginning of the next one.
  3. The next command will delete all such rows from the Projects table.

Parameterized queries

string sql = "SELECT * FROM users WHERE UserID = $userInput"

This example saves the query as a string and passes the value of the user’s input as a variable into the string.

Resources

All contributors

Looking to contribute?

Learn SQL on Codecademy