Which of the following is not an example for the SQL injection?
-
' or 't'='t'
-
' or 'user'='admin
-
' or 1=1 or 'user' = '
-
' or 1=1
C
Correct answer
Explanation
Options A, B, and D are classic SQL injection payloads that manipulate WHERE clauses to always evaluate true. Option C (' or 1=1 or 'user' = ') is NOT standard SQL injection syntax - the ending structure is malformed and wouldn't successfully bypass authentication.