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

Skip to content

Commit e5a1377

Browse files
committed
Minor update
1 parent bb61b08 commit e5a1377

3 files changed

Lines changed: 20 additions & 7 deletions

File tree

data/xml/banner/mysql.xml

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
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"/>
@@ -36,19 +41,27 @@
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)">

lib/core/option.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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)

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.9.2"
21+
VERSION = "1.3.9.3"
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)