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

Skip to content

Commit f4e36fc

Browse files
committed
Patch for an Issue #2252
1 parent 083ce11 commit f4e36fc

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.0.10.58"
22+
VERSION = "1.0.10.59"
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/utils/hashdb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def retrieve(self, key, unserialize=False):
9898

9999
time.sleep(1)
100100

101-
if unserialize:
101+
if retVal and unserialize:
102102
try:
103103
retVal = unserializeObject(retVal)
104104
except:

txt/checksum.md5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ e60456db5380840a586654344003d4e6 lib/core/readlineng.py
4545
5ef56abb8671c2ca6ceecb208258e360 lib/core/replication.py
4646
99a2b496b9d5b546b335653ca801153f lib/core/revision.py
4747
7c15dd2777af4dac2c89cab6df17462e lib/core/session.py
48-
e78be7882591863c78b2ad408ad2cfee lib/core/settings.py
48+
8f72331b896fb1c0fe3760b85ab0e9af lib/core/settings.py
4949
7af83e4f18cab6dff5e67840eb65be80 lib/core/shell.py
5050
23657cd7d924e3c6d225719865855827 lib/core/subprocessng.py
5151
c3ace7874a536d801f308cf1fd03df99 lib/core/target.py
@@ -103,7 +103,7 @@ f5d6884cdeed28281187c111d3e49e3b lib/techniques/union/test.py
103103
8cdc8c1e663c3b92a756fb7b02cc3c02 lib/utils/crawler.py
104104
84604ae4cf0f31602b412036b51f5dae lib/utils/deps.py
105105
4dfd3a95e73e806f62372d63bc82511f lib/utils/getch.py
106-
1ee6c7c7736790298345fc4f2a08c0c7 lib/utils/hashdb.py
106+
b3f589e6e634b1d57f6bc6f1709c8ab1 lib/utils/hashdb.py
107107
0330607242d4f704ae6d7bba5f52ccae lib/utils/hash.py
108108
a3e885f7d4c6ff05db1156244bb84158 lib/utils/htmlentities.py
109109
cc9c82cfffd8ee9b25ba3af6284f057e lib/utils/__init__.py

0 commit comments

Comments
 (0)