mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 20:51:31 +00:00
Minor update for Issue #209
This commit is contained in:
@@ -204,7 +204,7 @@ def __goInferenceProxy(expression, fromUser=False, batch=False, unpack=True, cha
|
|||||||
# (or similar depending on the back-end DBMS) can return
|
# (or similar depending on the back-end DBMS) can return
|
||||||
# multiple entries
|
# multiple entries
|
||||||
if limitCond:
|
if limitCond:
|
||||||
if limitRegExp:
|
if limitRegExp and stopLimit is not None:
|
||||||
stopLimit = int(stopLimit)
|
stopLimit = int(stopLimit)
|
||||||
|
|
||||||
# From now on we need only the expression until the " LIMIT "
|
# From now on we need only the expression until the " LIMIT "
|
||||||
|
|||||||
@@ -49,7 +49,7 @@ class Enumeration(GenericEnumeration):
|
|||||||
return {}
|
return {}
|
||||||
|
|
||||||
def getDbs(self):
|
def getDbs(self):
|
||||||
warnMsg = "on Microsoft Access it is not possible to enumerate databases"
|
warnMsg = "on Microsoft Access it is not possible to enumerate databases (use only '--tables')"
|
||||||
logger.warn(warnMsg)
|
logger.warn(warnMsg)
|
||||||
|
|
||||||
return []
|
return []
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ class Enumeration(GenericEnumeration):
|
|||||||
GenericEnumeration.__init__(self)
|
GenericEnumeration.__init__(self)
|
||||||
|
|
||||||
def getDbs(self):
|
def getDbs(self):
|
||||||
warnMsg = "on Firebird it is not possible to enumerate databases"
|
warnMsg = "on Firebird it is not possible to enumerate databases (use only '--tables')"
|
||||||
logger.warn(warnMsg)
|
logger.warn(warnMsg)
|
||||||
|
|
||||||
return []
|
return []
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ class Enumeration(GenericEnumeration):
|
|||||||
return {}
|
return {}
|
||||||
|
|
||||||
def getDbs(self):
|
def getDbs(self):
|
||||||
warnMsg = "on SQLite it is not possible to enumerate databases"
|
warnMsg = "on SQLite it is not possible to enumerate databases (use only '--tables')"
|
||||||
logger.warn(warnMsg)
|
logger.warn(warnMsg)
|
||||||
|
|
||||||
return []
|
return []
|
||||||
|
|||||||
Reference in New Issue
Block a user