mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings.git
synced 2024-12-18 18:36:10 +00:00
Update SQLite Injection.md
Since sqlite version 3.33.0, sqlite_schema has been replaced by sqlite_master.
This commit is contained in:
parent
b19dc0626a
commit
d834abe43c
@ -33,7 +33,10 @@ select sqlite_version();
|
|||||||
```sql
|
```sql
|
||||||
SELECT sql FROM sqlite_schema
|
SELECT sql FROM sqlite_schema
|
||||||
```
|
```
|
||||||
|
if sqlite_version > 3.33.0
|
||||||
|
```sql
|
||||||
|
SELECT sql FROM sqlite_master
|
||||||
|
```
|
||||||
## Integer/String based - Extract table name
|
## Integer/String based - Extract table name
|
||||||
|
|
||||||
```sql
|
```sql
|
||||||
|
Loading…
Reference in New Issue
Block a user