mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
fix for a minor bug reported by nightman (AttributeError: 'NoneType' object has no attribute 'getFingerprint')
This commit is contained in:
parent
95b2c0803b
commit
e3fa3b0e8e
2 changed files with 5 additions and 2 deletions
|
|
@ -31,7 +31,7 @@ def action():
|
|||
# system to be able to go ahead with the injection
|
||||
setHandler()
|
||||
|
||||
if not kb.dbmsDetected:
|
||||
if not kb.dbmsDetected and conf.dbmsHandler:
|
||||
htmlParsed = getHtmlErrorFp()
|
||||
|
||||
errMsg = "sqlmap was not able to fingerprint the "
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue