Skip to content

Commit 090cbf7

Browse files
committed
Minor update for #3808
1 parent 71b63c9 commit 090cbf7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/core/option.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,7 @@ def _setMetasploit():
522522
errMsg = "sqlmap requires third-party module 'pywin32' "
523523
errMsg += "in order to use Metasploit functionalities on "
524524
errMsg += "Windows. You can download it from "
525-
errMsg += "'https://sourceforge.net/projects/pywin32/files/pywin32/'"
525+
errMsg += "'https://github.com/mhammond/pywin32'"
526526
raise SqlmapMissingDependence(errMsg)
527527

528528
if not conf.msfPath:

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from thirdparty.six import unichr as _unichr
1919

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

0 commit comments

Comments
 (0)