mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
Minor bug fix
This commit is contained in:
parent
2ac8debea0
commit
f8c04ce020
|
@ -149,7 +149,7 @@ def checkSqlInjection(place, parameter, value):
|
||||||
|
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if getErrorParsedDBMSes() and dbms not in getErrorParsedDBMSes() and kb.skipOthersDbms is None:
|
if len(getErrorParsedDBMSes()) > 0 and dbms not in getErrorParsedDBMSes() and kb.skipOthersDbms is None:
|
||||||
msg = "parsed error message(s) showed that the "
|
msg = "parsed error message(s) showed that the "
|
||||||
msg += "back-end DBMS could be '%s'. " % getErrorParsedDBMSesFormatted()
|
msg += "back-end DBMS could be '%s'. " % getErrorParsedDBMSesFormatted()
|
||||||
msg += "Do you want to skip test payloads specific for other DBMSes? [Y/n]"
|
msg += "Do you want to skip test payloads specific for other DBMSes? [Y/n]"
|
||||||
|
|
|
@ -297,12 +297,10 @@ def getErrorParsedDBMSesFormatted():
|
||||||
|
|
||||||
htmlParsed = ""
|
htmlParsed = ""
|
||||||
|
|
||||||
if not kb.htmlFp:
|
if len(kb.htmlFp) == 0:
|
||||||
return None
|
return None
|
||||||
|
elif len(kb.htmlFp) == 1:
|
||||||
if len(kb.htmlFp) == 1:
|
htmlParsed = kb.htmlFp[0]
|
||||||
htmlVer = kb.htmlFp[0]
|
|
||||||
htmlParsed = htmlVer
|
|
||||||
elif len(kb.htmlFp) > 1:
|
elif len(kb.htmlFp) > 1:
|
||||||
htmlParsed = " or ".join([htmlFp for htmlFp in kb.htmlFp])
|
htmlParsed = " or ".join([htmlFp for htmlFp in kb.htmlFp])
|
||||||
|
|
||||||
|
@ -2047,7 +2045,7 @@ def getIdentifiedDBMS():
|
||||||
dbms = kb.dbms
|
dbms = kb.dbms
|
||||||
elif conf.dbms is not None:
|
elif conf.dbms is not None:
|
||||||
dbms = conf.dbms
|
dbms = conf.dbms
|
||||||
elif getErrorParsedDBMSes() is not None:
|
elif len(getErrorParsedDBMSes()) > 0:
|
||||||
dbms = getErrorParsedDBMSes()[0]
|
dbms = getErrorParsedDBMSes()[0]
|
||||||
|
|
||||||
return aliasToDbmsEnum(dbms)
|
return aliasToDbmsEnum(dbms)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user