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

Skip to content

Commit ad785ea

Browse files
committed
Fixes #3926
1 parent b51f02c commit ad785ea

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

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.3.9.13"
21+
VERSION = "1.3.9.14"
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)

thirdparty/clientform/clientform.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,9 @@ def unescape(data, entities, encoding=DEFAULT_ENCODING):
227227
if data is None or "&" not in data:
228228
return data
229229

230+
if isinstance(data, six.string_types):
231+
encoding = None
232+
230233
def replace_entities(match, entities=entities, encoding=encoding):
231234
ent = match.group()
232235
if ent[1] == "#":
@@ -279,7 +282,6 @@ def get_entitydefs():
279282
entitydefs["&%s;" % name] = _unichr(codepoint)
280283
return entitydefs
281284

282-
283285
def issequence(x):
284286
try:
285287
x[0]

0 commit comments

Comments
 (0)