mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-02 20:54:13 +03:00
Update for an Issue #615
This commit is contained in:
parent
2ffdee5733
commit
291a0d772a
|
@ -295,10 +295,14 @@ class Backend:
|
||||||
|
|
||||||
# Little precaution, in theory this condition should always be false
|
# Little precaution, in theory this condition should always be false
|
||||||
elif kb.dbms is not None and kb.dbms != dbms:
|
elif kb.dbms is not None and kb.dbms != dbms:
|
||||||
msg = "sqlmap previously fingerprinted back-end DBMS "
|
warnMsg = "there seems to be a high probability that "
|
||||||
|
warnMsg += "this could be a false positive case"
|
||||||
|
logger.warn(warnMsg)
|
||||||
|
|
||||||
|
msg = "sqlmap previously fingerprinted back-end DBMS as "
|
||||||
msg += "%s. However now it has been fingerprinted " % kb.dbms
|
msg += "%s. However now it has been fingerprinted " % kb.dbms
|
||||||
msg += "to be %s. " % dbms
|
msg += "as %s. " % dbms
|
||||||
msg += "Please, specify which DBMS is "
|
msg += "Please, specify which DBMS should be "
|
||||||
msg += "correct [%s (default)/%s] " % (kb.dbms, dbms)
|
msg += "correct [%s (default)/%s] " % (kb.dbms, dbms)
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user