mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-07 05:01:30 +00:00
SQLite table dumping compatibility improvements. (#4205)
* Fix sqlite regex for create table to support implicit column types * Fix sqlite when dumping large tables
This commit is contained in:
@@ -131,6 +131,8 @@ class Entries(object):
|
||||
try:
|
||||
if Backend.isDbms(DBMS.INFORMIX):
|
||||
kb.dumpTable = "%s:%s" % (conf.db, tbl)
|
||||
elif Backend.isDbms(DBMS.SQLITE):
|
||||
kb.dumpTable = tbl
|
||||
else:
|
||||
kb.dumpTable = "%s.%s" % (conf.db, tbl)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user