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

Skip to content

Commit 50b8de0

Browse files
committed
Patches #3887
1 parent 81289fa commit 50b8de0

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

lib/core/agent.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
from lib.core.settings import SINGLE_QUOTE_MARKER
5252
from lib.core.settings import SLEEP_TIME_MARKER
5353
from lib.core.unescaper import unescaper
54+
from thirdparty import six
5455

5556
class Agent(object):
5657
"""
@@ -308,7 +309,7 @@ def suffixQuery(self, expression, comment=None, suffix=None, where=None, trimEmp
308309
return re.sub(r";\W*;", ";", expression) if trimEmpty else expression
309310

310311
def cleanupPayload(self, payload, origValue=None):
311-
if payload is None:
312+
if not isinstance(payload, six.string_types):
312313
return
313314

314315
replacements = {

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.8.18"
21+
VERSION = "1.3.8.19"
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)