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

Skip to content

Commit 9d055c7

Browse files
committed
Minor update
1 parent 89af62a commit 9d055c7

3 files changed

Lines changed: 15 additions & 3 deletions

File tree

data/xml/banner/servlet-engine.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@
77
<info technology="Tomcat" tech_version="1"/>
88
</regexp>
99

10+
<regexp value="Enhydra Application Server/([\d\.]+)">
11+
<info technology="Enhydra" tech_version="1"/>
12+
</regexp>
13+
14+
<regexp value="Jetty/([\d\.]+)">
15+
<info technology="Jetty" tech_version="1"/>
16+
</regexp>
17+
1018
<regexp value="JSP[\-\_\/\ ]([\d\.]+)">
1119
<info technology="JSP" tech_version="1"/>
1220
</regexp>

data/xml/banner/x-powered-by.xml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,12 @@
3535
<info technology="ASP.NET" type="Windows"/>
3636
</regexp>
3737

38-
<regexp value="(JBoss|Tomcat)[\-\_\/\ ]?([\d\.]+)">
39-
<info technology="Tomcat" tech_version="2"/>
38+
<regexp value="Tomcat[\-\_\/\ ]?([\d\.]+)">
39+
<info technology="Tomcat" tech_version="1"/>
40+
</regexp>
41+
42+
<regexp value="JBoss[\-\_\/\ ]?([\d\.]+)">
43+
<info technology="JBoss" tech_version="1"/>
4044
</regexp>
4145

4246
<regexp value="Servlet[\-\_\/\ ]?([\d\.]+)">

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.6.47"
21+
VERSION = "1.3.6.48"
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)