Skip to content

Commit 184454b

Browse files
committed
Fixes #5093
1 parent aacb360 commit 184454b

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

lib/core/settings.py

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

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

lib/utils/crawler.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,8 @@ def crawlThread():
126126
pass
127127
except ValueError: # for non-valid links
128128
pass
129+
except AssertionError: # for invalid HTML
130+
pass
129131
finally:
130132
if conf.forms:
131133
threadData.shared.formsFound |= len(findPageForms(content, current, False, True)) > 0

0 commit comments

Comments
 (0)