mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings
synced 2025-12-07 09:23:55 +01: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
1 changed files with 4 additions and 1 deletions
|
|
@ -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 a new issue