From ceb718107ff11fd0d7215d53bbbf33a518a8a314 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Wed, 5 Jun 2019 14:23:30 +0200 Subject: [PATCH] Patch for live-testing --- data/xml/livetests.xml | 266 ++++++++++++++++++++--------------------- lib/core/convert.py | 2 +- lib/core/settings.py | 2 +- 3 files changed, 135 insertions(+), 135 deletions(-) diff --git a/data/xml/livetests.xml b/data/xml/livetests.xml index 06b8bc4cc..876b63fe9 100644 --- a/data/xml/livetests.xml +++ b/data/xml/livetests.xml @@ -62,11 +62,11 @@ - - - - - + + + + + @@ -106,11 +106,11 @@ - - - - - + + + + + @@ -150,11 +150,11 @@ - - - - - + + + + + @@ -194,11 +194,11 @@ - - - - - + + + + + @@ -220,8 +220,8 @@ - - + + @@ -252,11 +252,11 @@ - - - - - + + + + + @@ -295,10 +295,10 @@ - + - - + + @@ -338,10 +338,10 @@ - + - - + + @@ -381,10 +381,10 @@ - + - - + + @@ -424,10 +424,10 @@ - + - - + + @@ -449,8 +449,8 @@ - - + + @@ -463,8 +463,8 @@ - - + + @@ -495,10 +495,10 @@ - + - - + + @@ -536,11 +536,11 @@ - - - - - + + + + + @@ -578,11 +578,11 @@ - - - - - + + + + + @@ -621,11 +621,11 @@ - - - - - + + + + + @@ -665,11 +665,11 @@ - - - - - + + + + + @@ -691,8 +691,8 @@ - - + + @@ -722,11 +722,11 @@ - - - - - + + + + + @@ -765,11 +765,11 @@ - - - - - + + + + + @@ -808,7 +808,7 @@ - + @@ -841,7 +841,7 @@ - + @@ -873,7 +873,7 @@ - + @@ -907,7 +907,7 @@ - + @@ -940,7 +940,7 @@ - + @@ -972,7 +972,7 @@ - + @@ -990,7 +990,7 @@ - + @@ -3460,7 +3460,7 @@ - + @@ -3472,7 +3472,7 @@ - + @@ -3484,7 +3484,7 @@ - + @@ -3498,7 +3498,7 @@ - + @@ -3511,7 +3511,7 @@ - + @@ -3544,11 +3544,11 @@ - - - - - + + + + + @@ -3568,7 +3568,7 @@ - + @@ -3580,7 +3580,7 @@ - + @@ -3592,7 +3592,7 @@ - + @@ -3605,7 +3605,7 @@ - + @@ -3617,7 +3617,7 @@ - + @@ -3629,7 +3629,7 @@ - + diff --git a/lib/core/convert.py b/lib/core/convert.py index a8cdfe1c2..685d45cf3 100644 --- a/lib/core/convert.py +++ b/lib/core/convert.py @@ -345,7 +345,7 @@ def stdoutEncode(value): kb.codePage = kb.codePage or "" if isinstance(value, six.text_type): - encoding = kb.get("codePage") or sys.stdout.encoding or UNICODE_ENCODING + encoding = kb.get("codePage") or getattr(sys.stdout, "encoding", None) or UNICODE_ENCODING while True: try: diff --git a/lib/core/settings.py b/lib/core/settings.py index 26a609ac0..556cb3403 100644 --- a/lib/core/settings.py +++ b/lib/core/settings.py @@ -18,7 +18,7 @@ from lib.core.enums import OS from thirdparty.six import unichr as _unichr # sqlmap version (...) -VERSION = "1.3.6.20" +VERSION = "1.3.6.21" TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable" TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34} VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)