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

Skip to content

Commit b608c21

Browse files
committed
Fixes #2778
1 parent 88df293 commit b608c21

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

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.11.19"
22+
VERSION = "1.1.11.20"
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)

plugins/generic/filesystem.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ def writeFile(self, localFile, remoteFile, fileType=None, forceCheck=False):
279279
self.checkDbmsOs()
280280

281281
if localFile.endswith('_'):
282-
localFile = decloakToTemp(localFile)
282+
localFile = getUnicode(decloakToTemp(localFile))
283283

284284
if conf.direct or isStackingAvailable():
285285
if isStackingAvailable():

txt/checksum.md5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ e1c000db9be27f973569b1a430629037 lib/core/option.py
4646
760d9df2a27ded29109b390ab202e72d lib/core/replication.py
4747
a2466b62e67f8b31736bac4dac590e51 lib/core/revision.py
4848
02d4762140a72fd44668d3dab5eabda9 lib/core/session.py
49-
5f6af60945e1b932d173d9dffe082695 lib/core/settings.py
49+
00c57f5e38a9d7b5668f5ae247880246 lib/core/settings.py
5050
35bffbad762eb9e03db9e93b1c991103 lib/core/shell.py
5151
a59ec28371ae067a6fdd8f810edbee3d lib/core/subprocessng.py
5252
d5a04d672a18f78deb2839c3745ff83c lib/core/target.py
@@ -206,7 +206,7 @@ c811c9267896033a1d206bdec774782b plugins/generic/custom.py
206206
43f19ede05350b42704b55d237f3d715 plugins/generic/databases.py
207207
d769db0ec3586855a8197229c2a27ffa plugins/generic/entries.py
208208
16882f2840da3161ed4dbf4a7ff8fc8b plugins/generic/enumeration.py
209-
c1a3f3c21d17d74298be8c3bf4fa4e66 plugins/generic/filesystem.py
209+
ed82a43b822e265919b6164c628e433c plugins/generic/filesystem.py
210210
c4f4c6754e09a2418a08d1002184f260 plugins/generic/fingerprint.py
211211
5fb9aaf874daa47ea2b672a22740e56b plugins/generic/__init__.py
212212
3e9a5909f250dfefd1e51abbf69d3973 plugins/generic/misc.py

0 commit comments

Comments
 (0)