SQL Injection 2.3 Flashcards
1
Q
Code Injection Attacks
A
- Adding your own information into a data stream.
- Enabled because of bad programming.
2
Q
Types Code Injection
A
- HTML
- SQL
- XML
- LDAP
3
Q
SQL Injection Attack
A
- A form of code injection aimed at any SQL-based database, regardless of vendor.
- Put your own SQL requests into an existing application.
- Can be executed through the browser.
4
Q
Example of SQL Injection
A
- A function takes the user-provided inputs for username and password.
- Substitutes them in a WHERE clause of a SQL statement.
- The WHERE clause changes to be inoperable and returns all stored data.