mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 12:41:30 +00:00
update regarding dumping of tables with blind on Sqlite
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user