Skip to content

Commit 764d114

Browse files
committed
Fixes #2858
1 parent 6e9fe27 commit 764d114

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from lib.core.enums import OS
2020

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

lib/request/basic.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,13 @@
1818
from lib.core.common import extractRegexResult
1919
from lib.core.common import getPublicTypeMembers
2020
from lib.core.common import getUnicode
21+
from lib.core.common import isListLike
2122
from lib.core.common import randomStr
2223
from lib.core.common import readInput
2324
from lib.core.common import resetCookieJar
2425
from lib.core.common import singleTimeLogMessage
2526
from lib.core.common import singleTimeWarnMessage
27+
from lib.core.common import unArrayizeValue
2628
from lib.core.data import conf
2729
from lib.core.data import kb
2830
from lib.core.data import logger
@@ -150,6 +152,9 @@ def checkCharEncoding(encoding, warn=True):
150152
'utf8'
151153
"""
152154

155+
if isListLike(encoding):
156+
encoding = unArrayizeValue(encoding)
157+
153158
if encoding:
154159
encoding = encoding.lower()
155160
else:

txt/checksum.md5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ eec64e3d4c3f77eded3270b8116698ea lib/core/option.py
4646
760d9df2a27ded29109b390ab202e72d lib/core/replication.py
4747
a2466b62e67f8b31736bac4dac590e51 lib/core/revision.py
4848
02d4762140a72fd44668d3dab5eabda9 lib/core/session.py
49-
3033b491886d936a188c0bef6d2cdd6f lib/core/settings.py
49+
ccb19cc96bce7df46af7a4482bc3728e lib/core/settings.py
5050
35bffbad762eb9e03db9e93b1c991103 lib/core/shell.py
5151
a59ec28371ae067a6fdd8f810edbee3d lib/core/subprocessng.py
5252
d93501771b41315f9fb949305b6ed257 lib/core/target.py
@@ -66,7 +66,7 @@ e07930095e56de11c297d7ac1a1706f2 lib/parse/html.py
6666
d8d9bcf9e7107a5e2cf2dd10f115ac28 lib/parse/payloads.py
6767
2b87577dc6d3609e96fc1e049def5b4f lib/parse/sitemap.py
6868
d2f13a0e2fef5273d419d06e516122e1 lib/request/basicauthhandler.py
69-
4f8b3d682093fc577592e85999400149 lib/request/basic.py
69+
7e84ea8e6d097ad1ea5cbef10e3ccfe1 lib/request/basic.py
7070
6ece5e32cc1496720af42a762bf8c3ee lib/request/comparison.py
7171
ae823462aad7cd1081e6609192ba3109 lib/request/connect.py
7272
ad6f76839408d827abfcdc57813f8518 lib/request/direct.py

0 commit comments

Comments
 (0)