mirror of
https://github.com/carlospolop/hacktricks
synced 2024-11-15 09:27:32 +00:00
Minor correction: MySQL does support stacked queries!
This commit is contained in:
parent
6f14fb06e8
commit
efe0c1d49d
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
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
|
## Out of band Exploitation
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue