Other
SQL Parser Tolerance
SQL parsers in many databases are tolerant of extra parentheses; they are treated as valid syntax even if they don't pair with opening parentheses. For instance, if we are testing an application that we have control of the name
parameter and we infer that the query looks something like this:
we can add one or more closing parentheses to account for extra nesting:
Stacked Queries
Some s can execute more than one query at a time: these queries are submitted simultaneously, but executed sequentially. An RDMS might execute only the first query while another execute only the last.
A common vector of exploiting stacked queries is to add, update, or delete data as these types of queries don't return results if successfully executed.
Reading/Writing Files
RCE
Last updated
Was this helpful?