mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-07-11 19:13:12 +00:00
Fixes #1888
This commit is contained in:
parent
798b539eec
commit
c395958dff
3 changed files with 5 additions and 4 deletions
|
|
@ -710,7 +710,8 @@ def checkSqlInjection(place, parameter, value):
|
|||
|
||||
if not checkFalsePositives(injection):
|
||||
kb.vulnHosts.remove(conf.hostname)
|
||||
injection.notes.add(NOTE.FALSE_POSITIVE_OR_UNEXPLOITABLE)
|
||||
if NOTE.FALSE_POSITIVE_OR_UNEXPLOITABLE not in injection.notes:
|
||||
injection.notes.append(NOTE.FALSE_POSITIVE_OR_UNEXPLOITABLE)
|
||||
|
||||
else:
|
||||
injection = None
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue