Skip to content

Commit 687cde5

Browse files
committed
Minor update
1 parent aefd048 commit 687cde5

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

data/xml/banner/generic.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<!-- Reference: https://msdn.microsoft.com/en-us/library/windows/desktop/ms724832%28v=vs.85%29.aspx -->
3535

3636
<regexp value="Windows.*\b10\.0">
37-
<info type="Windows" distrib="2019|2016|10"/>
37+
<info type="Windows" distrib="2016|2019|10|11"/>
3838
</regexp>
3939

4040
<regexp value="Windows.*\b6\.3">

data/xml/banner/server.xml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,10 @@
163163
<info type="Linux" distrib="Debian" release="10" codename="buster"/>
164164
</regexp>
165165

166+
<regexp value="Apache/2\.4\.48 \(Debian\)">
167+
<info type="Linux" distrib="Debian" release="11" codename="bullseye"/>
168+
</regexp>
169+
166170
<!-- Apache: Fedora -->
167171

168172
<regexp value="Apache/2\.0\.47 \(Fedora\)">
@@ -315,7 +319,11 @@
315319
</regexp>
316320

317321
<regexp value="Apache/2\.4\.46 \(Fedora\)">
318-
<info type="Linux" distrib="Fedora" release="33"/>
322+
<info type="Linux" distrib="Fedora" release="33|34"/>
323+
</regexp>
324+
325+
<regexp value="Apache/2\.4\.51 \(Fedora\)">
326+
<info type="Linux" distrib="Fedora" release="35"/>
319327
</regexp>
320328

321329
<!-- Apache: FreeBSD -->
@@ -858,7 +866,7 @@
858866
</regexp>
859867

860868
<regexp value="Apache/2\.4\.41 \(Ubuntu\)">
861-
<info type="Linux" distrib="Ubuntu" release="19.10|20.04" codename="eoan|focal"/>
869+
<info type="Linux" distrib="Ubuntu" release="19.10|20.04|20.10" codename="eoan|focal"/>
862870
</regexp>
863871

864872
<!-- Nginx -->

lib/core/settings.py

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

2222
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23-
VERSION = "1.5.11.4"
23+
VERSION = "1.5.11.5"
2424
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2525
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2626
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)