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

Skip to content

Commit fa17cfb

Browse files
committed
Fixes #4447
1 parent 40623e7 commit fa17cfb

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

lib/controller/checks.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -856,7 +856,9 @@ def genCmpPayload():
856856
logger.warn(warnMsg)
857857

858858
if not checkFalsePositives(injection):
859-
kb.vulnHosts.remove(conf.hostname)
859+
if conf.hostname in kb.vulnHosts:
860+
kb.vulnHosts.remove(conf.hostname)
861+
860862
if NOTE.FALSE_POSITIVE_OR_UNEXPLOITABLE not in injection.notes:
861863
injection.notes.append(NOTE.FALSE_POSITIVE_OR_UNEXPLOITABLE)
862864

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from thirdparty.six import unichr as _unichr
1919

2020
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
21-
VERSION = "1.4.11.15"
21+
VERSION = "1.4.11.16"
2222
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2323
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2424
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

0 commit comments

Comments
 (0)