Skip to content

Commit 8362bdc

Browse files
committed
Fix for screw up made by #52dd92748a50bcee4fb979ea49185840ff6743b9
1 parent 87676eb commit 8362bdc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/controller/checks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def checkSqlInjection(place, parameter, value):
108108
# then attempt to identify with a simple DBMS specific boolean-based
109109
# test what the DBMS may be
110110
if not injection.dbms and PAYLOAD.TECHNIQUE.BOOLEAN in injection.data:
111-
if not Backend.getIdentifiedDbms() and kb.heuristicDbms is False:
111+
if not Backend.getIdentifiedDbms() and kb.heuristicDbms is None:
112112
kb.heuristicDbms = heuristicCheckDbms(injection)
113113

114114
# If the DBMS has already been fingerprinted (via DBMS-specific

0 commit comments

Comments
 (0)