Update SQLite Injection.md

Since sqlite version 3.33.0, sqlite_schema has been replaced by sqlite_master.
This commit is contained in:
mohnad banat
2024-04-01 20:46:09 +03:00
committed by GitHub
parent b19dc0626a
commit d834abe43c

View File

@@ -33,7 +33,10 @@ select sqlite_version();
```sql
SELECT sql FROM sqlite_schema
```
if sqlite_version > 3.33.0
```sql
SELECT sql FROM sqlite_master
```
## Integer/String based - Extract table name
```sql