Skip to content

Commit e0ecf8c

Browse files
committed
Fixes #4056
1 parent cf7022b commit e0ecf8c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/core/settings.py

+1-1
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.12.33"
21+
VERSION = "1.3.12.34"
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)

lib/request/redirecthandler.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ def _(self, length=None):
174174
except:
175175
redurl = None
176176
result = fp
177-
fp.read = io.BytesIO("").read
177+
fp.read = io.BytesIO(b"").read
178178
else:
179179
result = fp
180180

0 commit comments

Comments
 (0)