DataStructures / System Design
What is SQL injection?
SQL injection is the highest application security concern because it's well known, easy to perform and operates on the database server.
SQL injection occurs when:
- Malicious data is used to construct SQL statements via string concatenation, thus commingling executable code and data.
- Executable code and data are commingled; the database server parsing the query may interpret the "data" as executable code/query. This allows the data to alter the meaning/result of the SQL query.
- A single attack can leak an entire database, alter or destroy a database, or even lead to a compromise of the server where the database is deployed.
To mitigate the SQL injection risk:
- Use parameterized queries with bind variables to ensure that data added to the statement cannot alter the intention of the statement.
- Validate untrusted data; data submitted by end users.
SQL Injection example:
In the following code $user_name and $password represent variable for user input, which are then used to create a SQL statement.
SELECT * FROM BankAccounts WHERE username=$user_name AND password = $password;
A malicious user may provide input which bypasses the intended functionality of the query and which actually grants unlimited access, just by simply commenting out the "AND" portion of the SQL statement.
SELECT * FROM BankAccounts WHERE username='admin'--'AND password = 'password123';
Notice the comment indicator (--) after the username. The database will interpret the rest of the query as a comment, ignoring the password verification. The effective statement that gets executed is:
SELECT * FROM BankAccounts WHERE username='admin'
The attacker who submitted that login attempt would be granted access to resources owned by the "admin" account.
Dogecoin
! Earn free bitcoins up to $250 now by signing up.
Earn bitcoins upto $250 (free), invest in other Cryptocurrencies when you signup with blockfi.
Use the referral link: Signup now and earn!

Using BlockFi, don't just buy crypto - start earning on it. Open an interest account with up to 8.6% APY, trade currencies, or borrow money without selling your assets.

Join CoinBase
! We'll both receive $10 in free Bitcoin when they buy or sell their first $100 on Coinbase! Available in India also.
Use the referral Join coinbase!

Invest now!!! Get Free equity stock (US, UK only)!
Use Robinhood app to invest in stocks. It is safe and secure. Use the Referral link to claim your free stock when you sign up!.
The Robinhood app makes it easy to trade stocks, crypto and more.

Webull
! Receive free stock by signing up using the link: Webull signup.
More Related questions...