Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e3fa3b0

Browse files
committed
fix for a minor bug reported by nightman (AttributeError: 'NoneType' object has no attribute 'getFingerprint')
1 parent 95b2c08 commit e3fa3b0

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

doc/THANKS

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ mitchell <[email protected]>
418418
for reporting a bug
419419

420420
421-
for reporting a bug
421+
for reporting a few bugs
422422

423423
pacman730 <[email protected]>
424424
for reporting a bug
@@ -439,6 +439,9 @@ ToR <[email protected]>
439439
for reporting considerable amount of bugs
440440
for suggesting a feature
441441

442+
ultramegaman <[email protected]>
443+
for reporting a minor bug
444+
442445
== Organizations ==
443446

444447
Black Hat team <[email protected]>

lib/controller/action.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def action():
3131
# system to be able to go ahead with the injection
3232
setHandler()
3333

34-
if not kb.dbmsDetected:
34+
if not kb.dbmsDetected and conf.dbmsHandler:
3535
htmlParsed = getHtmlErrorFp()
3636

3737
errMsg = "sqlmap was not able to fingerprint the "

0 commit comments

Comments
 (0)