File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -522,7 +522,7 @@ def _setMetasploit():
522
522
errMsg = "sqlmap requires third-party module 'pywin32' "
523
523
errMsg += "in order to use Metasploit functionalities on "
524
524
errMsg += "Windows. You can download it from "
525
- errMsg += "'https://sourceforge.net/projects /pywin32/files/pywin32/ '"
525
+ errMsg += "'https://github.com/mhammond /pywin32'"
526
526
raise SqlmapMissingDependence (errMsg )
527
527
528
528
if not conf .msfPath :
Original file line number Diff line number Diff line change 18
18
from thirdparty .six import unichr as _unichr
19
19
20
20
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
21
- VERSION = "1.3.7.12 "
21
+ VERSION = "1.3.7.13 "
22
22
TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
23
23
TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
24
24
VERSION_STRING = "sqlmap/%s#%s" % ('.' .join (VERSION .split ('.' )[:- 1 ]) if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] == '0' else VERSION , TYPE )
You can’t perform that action at this time.
0 commit comments