Which two queries are examples of successful SQL injection attacks? (Choose two.)
Which two queries are examples of successful SQL injection attacks? (Choose two.)
The correct examples of successful SQL injection attacks are those that manipulate the SQL query to return unintended results or perform unauthorized operations. In the first option (A), the query includes an attempt to insert a new record into the members table, which is an example of SQL injection writing to the database. In the third option (C), the query uses a '1=1' condition which always evaluates to true, potentially returning all records from the user table. Both of these options illustrate successful SQL injection attacks.
F only possible if session has all privileges;
A and C
E and F, the other two don't write to the database. A might be valid. Injection is a query inside another query.