Skip to content

Commit

Permalink
Update SQLite Injection.md
Browse files Browse the repository at this point in the history
Since sqlite version 3.33.0, sqlite_schema has been replaced by sqlite_master.
  • Loading branch information
mohnad-0b authored Apr 1, 2024
1 parent b19dc06 commit d834abe
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion SQL Injection/SQLite Injection.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d834abe

Please sign in to comment.