Skip to content

Commit bb6e8fd

Browse files
committed
Minor bug fix (reported privately via email)
1 parent c54c220 commit bb6e8fd

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-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.0.12.9"
22+
VERSION = "1.0.12.10"
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/crawler.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,8 @@ def crawlThread():
110110
threadData.shared.deeper.add(url)
111111
if re.search(r"(.*?)\?(.+)", url):
112112
threadData.shared.value.add(url)
113+
except ValueError: # for non-valid links
114+
pass
113115
except UnicodeEncodeError: # for non-HTML files
114116
pass
115117
finally:

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
b3a62d41a5af6cd7fa733b6227febb0c lib/core/replication.py
4646
99a2b496b9d5b546b335653ca801153f lib/core/revision.py
4747
7c15dd2777af4dac2c89cab6df17462e lib/core/session.py
48-
3112bd43b07ac2ca9c7c50bbb1575e4c lib/core/settings.py
48+
904783b704023a9bbf40a3474a1f05ba lib/core/settings.py
4949
7af83e4f18cab6dff5e67840eb65be80 lib/core/shell.py
5050
23657cd7d924e3c6d225719865855827 lib/core/subprocessng.py
5151
c3ace7874a536d801f308cf1fd03df99 lib/core/target.py
@@ -100,7 +100,7 @@ cc9c82cfffd8ee9b25ba3af6284f057e lib/techniques/union/__init__.py
100100
f5d6884cdeed28281187c111d3e49e3b lib/techniques/union/test.py
101101
12ce1bb7ee5f1f23f58be12fe9fa8472 lib/techniques/union/use.py
102102
26c1babc6289fac9056f8b21d10f3bb1 lib/utils/api.py
103-
8cdc8c1e663c3b92a756fb7b02cc3c02 lib/utils/crawler.py
103+
7c94b6c3088b68975d468c86d47b1b03 lib/utils/crawler.py
104104
84604ae4cf0f31602b412036b51f5dae lib/utils/deps.py
105105
4dfd3a95e73e806f62372d63bc82511f lib/utils/getch.py
106106
f71a7b0aec145ba77edd3c4543621fb9 lib/utils/hashdb.py

0 commit comments

Comments
 (0)