Multiple choice technology testing

Key words used for SQL Injection attack (select more than one)

  1. CREATE

  2. UNION

  3. WHERE

  4. OR

Reveal answer Fill a bubble to check yourself
B,D Correct answer
Explanation

SQL injection attacks manipulate SQL queries by injecting malicious code. UNION is a key SQL operator used to combine results from injected queries with original results, allowing data extraction. OR is used to manipulate WHERE clause logic - a classic technique like 'OR 1=1' bypasses authentication by making conditions always true. CREATE is a DDL statement rarely used in injection. WHERE is a clause marker, not typically used alone for injection exploits. UNION and OR are fundamental to SQL injection techniques.