mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Improving SQLite table schema parsing (#2678)
This commit is contained in:
parent
ebaee3a4e6
commit
86ac3025ed
4 changed files with 29 additions and 8 deletions
|
|
@ -44,7 +44,8 @@ SCHEMA = """
|
|||
CREATE TABLE users (
|
||||
id INTEGER,
|
||||
name TEXT,
|
||||
surname TEXT
|
||||
surname TEXT,
|
||||
PRIMARY KEY (id)
|
||||
);
|
||||
INSERT INTO users (id, name, surname) VALUES (1, 'luther', 'blisset');
|
||||
INSERT INTO users (id, name, surname) VALUES (2, 'fluffy', 'bunny');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue