Multiple choice technology security

Which of the following operators used in the SQL injection?

  1. ' | & ^ < > = !

  2. " | & !

  3. ' | & * < > =

  4. none

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

SQL injection attacks use operators like single quote (') to break out of string contexts, bitwise OR (|) and AND (&) for logic manipulation, asterisk (*) as a wildcard, and comparison operators (<, >, =) to alter query conditions. Option C includes the most comprehensive set of these critical operators.