mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-05-14 09:29:26 +00:00
Fix for screw up made by #52dd92748a
This commit is contained in:
parent
87676eb4bb
commit
8362bdcf66
1 changed files with 1 additions and 1 deletions
|
|
@ -108,7 +108,7 @@ def checkSqlInjection(place, parameter, value):
|
|||
# then attempt to identify with a simple DBMS specific boolean-based
|
||||
# test what the DBMS may be
|
||||
if not injection.dbms and PAYLOAD.TECHNIQUE.BOOLEAN in injection.data:
|
||||
if not Backend.getIdentifiedDbms() and kb.heuristicDbms is False:
|
||||
if not Backend.getIdentifiedDbms() and kb.heuristicDbms is None:
|
||||
kb.heuristicDbms = heuristicCheckDbms(injection)
|
||||
|
||||
# If the DBMS has already been fingerprinted (via DBMS-specific
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue