mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-01-24 00:04:23 +03:00
Fixes #2778
This commit is contained in:
parent
88df293a1a
commit
b608c21dff
|
@ -19,7 +19,7 @@ from lib.core.enums import DBMS_DIRECTORY_NAME
|
||||||
from lib.core.enums import OS
|
from lib.core.enums import OS
|
||||||
|
|
||||||
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
|
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
|
||||||
VERSION = "1.1.11.19"
|
VERSION = "1.1.11.20"
|
||||||
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
|
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
|
||||||
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
|
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)
|
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)
|
||||||
|
|
|
@ -279,7 +279,7 @@ class Filesystem:
|
||||||
self.checkDbmsOs()
|
self.checkDbmsOs()
|
||||||
|
|
||||||
if localFile.endswith('_'):
|
if localFile.endswith('_'):
|
||||||
localFile = decloakToTemp(localFile)
|
localFile = getUnicode(decloakToTemp(localFile))
|
||||||
|
|
||||||
if conf.direct or isStackingAvailable():
|
if conf.direct or isStackingAvailable():
|
||||||
if isStackingAvailable():
|
if isStackingAvailable():
|
||||||
|
|
|
@ -46,7 +46,7 @@ e1c000db9be27f973569b1a430629037 lib/core/option.py
|
||||||
760d9df2a27ded29109b390ab202e72d lib/core/replication.py
|
760d9df2a27ded29109b390ab202e72d lib/core/replication.py
|
||||||
a2466b62e67f8b31736bac4dac590e51 lib/core/revision.py
|
a2466b62e67f8b31736bac4dac590e51 lib/core/revision.py
|
||||||
02d4762140a72fd44668d3dab5eabda9 lib/core/session.py
|
02d4762140a72fd44668d3dab5eabda9 lib/core/session.py
|
||||||
5f6af60945e1b932d173d9dffe082695 lib/core/settings.py
|
00c57f5e38a9d7b5668f5ae247880246 lib/core/settings.py
|
||||||
35bffbad762eb9e03db9e93b1c991103 lib/core/shell.py
|
35bffbad762eb9e03db9e93b1c991103 lib/core/shell.py
|
||||||
a59ec28371ae067a6fdd8f810edbee3d lib/core/subprocessng.py
|
a59ec28371ae067a6fdd8f810edbee3d lib/core/subprocessng.py
|
||||||
d5a04d672a18f78deb2839c3745ff83c lib/core/target.py
|
d5a04d672a18f78deb2839c3745ff83c lib/core/target.py
|
||||||
|
@ -206,7 +206,7 @@ c811c9267896033a1d206bdec774782b plugins/generic/custom.py
|
||||||
43f19ede05350b42704b55d237f3d715 plugins/generic/databases.py
|
43f19ede05350b42704b55d237f3d715 plugins/generic/databases.py
|
||||||
d769db0ec3586855a8197229c2a27ffa plugins/generic/entries.py
|
d769db0ec3586855a8197229c2a27ffa plugins/generic/entries.py
|
||||||
16882f2840da3161ed4dbf4a7ff8fc8b plugins/generic/enumeration.py
|
16882f2840da3161ed4dbf4a7ff8fc8b plugins/generic/enumeration.py
|
||||||
c1a3f3c21d17d74298be8c3bf4fa4e66 plugins/generic/filesystem.py
|
ed82a43b822e265919b6164c628e433c plugins/generic/filesystem.py
|
||||||
c4f4c6754e09a2418a08d1002184f260 plugins/generic/fingerprint.py
|
c4f4c6754e09a2418a08d1002184f260 plugins/generic/fingerprint.py
|
||||||
5fb9aaf874daa47ea2b672a22740e56b plugins/generic/__init__.py
|
5fb9aaf874daa47ea2b672a22740e56b plugins/generic/__init__.py
|
||||||
3e9a5909f250dfefd1e51abbf69d3973 plugins/generic/misc.py
|
3e9a5909f250dfefd1e51abbf69d3973 plugins/generic/misc.py
|
||||||
|
|
Loading…
Reference in New Issue
Block a user