Merge pull request #206 from meme-lord/master

Minor correction: MySQL does support stacked queries!
This commit is contained in:
Carlos Polop 2021-08-23 21:53:33 +01:00 committed by GitHub
commit 3dcfc3cdd3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -237,7 +237,7 @@ In this case there **isn't** any way to **distinguish** the **response** of the
You can use stacked queries to **execute multiple queries in succession**. Note that while the subsequent queries are executed, the **results** are **not returned to the application**. Hence this technique is primarily of use in relation to **blind vulnerabilities** where you can use a second query to trigger a DNS lookup, conditional error, or time delay.
**Oracle** and **MySQL don't support** stacked queries. **Microsoft** and **PostgreSQL support** them: `QUERY-1-HERE; QUERY-2-HERE`
**Oracle** doesn't support** stacked queries. **MySQL**, **Microsoft** and **PostgreSQL support** them: `QUERY-1-HERE; QUERY-2-HERE`
## Out of band Exploitation