mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
blind dumping of tables in sqlite implemented
This commit is contained in:
parent
b1babeefe5
commit
c93634b6c7
7 changed files with 20 additions and 12 deletions
|
|
@ -16,6 +16,7 @@ from lib.core.data import kb
|
|||
from lib.core.data import logger
|
||||
from lib.core.enums import DBMS
|
||||
from lib.core.session import setDbms
|
||||
from lib.core.settings import METADB_SUFFIX
|
||||
from lib.core.settings import SQLITE_ALIASES
|
||||
from lib.request import inject
|
||||
from lib.request.connect import Connect as Request
|
||||
|
|
@ -109,4 +110,4 @@ class Fingerprint(GenericFingerprint):
|
|||
return False
|
||||
|
||||
def forceDbmsEnum(self):
|
||||
conf.db = "SQLite (*)"
|
||||
conf.db = "%s%s" % (DBMS.SQLITE, METADB_SUFFIX)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue