Which of the following types of SQL injection attacks extends the results returned by the original query, enabling attackers to run two or more statements if they have the same structure as the original one?
Which of the following types of SQL injection attacks extends the results returned by the original query, enabling attackers to run two or more statements if they have the same structure as the original one?
Union SQL injection is a type of SQL injection attack that allows attackers to extend the results returned by the original query by appending additional SELECT statements. If the appended queries have the same structure as the original one, it enables the attackers to run multiple queries and retrieve additional data from the database. This is achieved using the UNION SQL operator which combines the results of two or more SELECT statements into a single result set, thus extending the original query.
A. Union SQL injection
CEHv12 - 2220
A. Union SQL injection