mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
update regarding dumping of tables with blind on Sqlite
This commit is contained in:
parent
f7344a5fc3
commit
b1babeefe5
3 changed files with 24 additions and 7 deletions
|
|
@ -1729,3 +1729,13 @@ def isDBMSVersionAtLeast(version):
|
|||
retVal = value >= version
|
||||
|
||||
return retVal
|
||||
|
||||
def parseSqliteTableSchema(value):
|
||||
table = {}
|
||||
columns = {}
|
||||
|
||||
for match in re.finditer(getCompiledRegex(r"(\w+) ([A-Z]+)[,\r\n]"), value):
|
||||
columns[match.group(1)] = match.group(2)
|
||||
|
||||
table[conf.tbl] = columns
|
||||
kb.data.cachedColumns[conf.db] = table
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue