File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" UTF-8" ?>
22
3+ <!--
4+ References:
5+ * https://en.wikipedia.org/wiki/Debian_version_history
6+ -->
7+
38<root >
49 <regexp value =" ^([\d\.\-]+)[\-\_\ ].*" >
510 <info dbms_version =" 1" />
3641 </regexp >
3742
3843 <regexp value =" ^([\d\.]+)[\-\_]Debian[\-\_][\d\.]+wheezy" >
39- <info dbms_version =" 1" type =" Linux" distrib =" Debian" release =" 7.0 " codename =" wheezy" />
44+ <info dbms_version =" 1" type =" Linux" distrib =" Debian" release =" 7" codename =" wheezy" />
4045 </regexp >
4146
4247 <regexp value =" ^([\d\.]+)[\-\_]Debian[\-\_][\d\.]+jessie" >
43- <info dbms_version =" 1" type =" Linux" distrib =" Debian" release =" 8.0 " codename =" jessie" />
48+ <info dbms_version =" 1" type =" Linux" distrib =" Debian" release =" 8" codename =" jessie" />
4449 </regexp >
4550
4651 <regexp value =" ^([\d\.]+)[\-\_]Debian[\-\_][\d\.]+stretch" >
47- <info dbms_version =" 1" type =" Linux" distrib =" Debian" release =" 9.0 " codename =" stretch" />
52+ <info dbms_version =" 1" type =" Linux" distrib =" Debian" release =" 9" codename =" stretch" />
4853 </regexp >
4954
5055 <regexp value =" ^([\d\.]+)[\-\_]Debian[\-\_][\d\.]+buster" >
51- <info dbms_version =" 1" type =" Linux" distrib =" Debian" release =" 10.0" codename =" buster" />
56+ <info dbms_version =" 1" type =" Linux" distrib =" Debian" release =" 10" codename =" buster" />
57+ </regexp >
58+
59+ <regexp value =" ^([\d\.]+)[\-\_]Debian[\-\_][\d\.]+bullseye" >
60+ <info dbms_version =" 1" type =" Linux" distrib =" Debian" release =" 11" codename =" bullseye" />
61+ </regexp >
62+
63+ <regexp value =" ^([\d\.]+)[\-\_]Debian[\-\_][\d\.]+bookworm" >
64+ <info dbms_version =" 1" type =" Linux" distrib =" Debian" release =" 12" codename =" bookworm" />
5265 </regexp >
5366
5467 <regexp value =" ^([\d\.]+)[\-\_]Debian[\-\_][\d\.]+(sid|unstable)" >
Original file line number Diff line number Diff line change @@ -1273,8 +1273,8 @@ def _setHTTPAuthentication():
12731273 from ntlm import HTTPNtlmAuthHandler
12741274 except ImportError :
12751275 errMsg = "sqlmap requires Python NTLM third-party library "
1276- errMsg += "in order to authenticate via NTLM, "
1277- errMsg += "https://github.com/mullender/python-ntlm"
1276+ errMsg += "in order to authenticate via NTLM. Download from "
1277+ errMsg += "' https://github.com/mullender/python-ntlm' "
12781278 raise SqlmapMissingDependence (errMsg )
12791279
12801280 authHandler = HTTPNtlmAuthHandler .HTTPNtlmAuthHandler (kb .passwordMgr )
Original file line number Diff line number Diff line change 1818from thirdparty .six import unichr as _unichr
1919
2020# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
21- VERSION = "1.3.9.2 "
21+ VERSION = "1.3.9.3 "
2222TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
2323TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
2424VERSION_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