Minor update

This commit is contained in:
Miroslav Stampar 2019-06-18 00:59:20 +02:00
parent 89af62ab95
commit 9d055c723b
3 changed files with 15 additions and 3 deletions

View File

@ -7,6 +7,14 @@
<info technology="Tomcat" tech_version="1"/> <info technology="Tomcat" tech_version="1"/>
</regexp> </regexp>
<regexp value="Enhydra Application Server/([\d\.]+)">
<info technology="Enhydra" tech_version="1"/>
</regexp>
<regexp value="Jetty/([\d\.]+)">
<info technology="Jetty" tech_version="1"/>
</regexp>
<regexp value="JSP[\-\_\/\ ]([\d\.]+)"> <regexp value="JSP[\-\_\/\ ]([\d\.]+)">
<info technology="JSP" tech_version="1"/> <info technology="JSP" tech_version="1"/>
</regexp> </regexp>

View File

@ -35,8 +35,12 @@
<info technology="ASP.NET" type="Windows"/> <info technology="ASP.NET" type="Windows"/>
</regexp> </regexp>
<regexp value="(JBoss|Tomcat)[\-\_\/\ ]?([\d\.]+)"> <regexp value="Tomcat[\-\_\/\ ]?([\d\.]+)">
<info technology="Tomcat" tech_version="2"/> <info technology="Tomcat" tech_version="1"/>
</regexp>
<regexp value="JBoss[\-\_\/\ ]?([\d\.]+)">
<info technology="JBoss" tech_version="1"/>
</regexp> </regexp>
<regexp value="Servlet[\-\_\/\ ]?([\d\.]+)"> <regexp value="Servlet[\-\_\/\ ]?([\d\.]+)">

View File

@ -18,7 +18,7 @@ from lib.core.enums import OS
from thirdparty.six import unichr as _unichr from thirdparty.six import unichr as _unichr
# sqlmap version (<major>.<minor>.<month>.<monthly commit>) # sqlmap version (<major>.<minor>.<month>.<monthly commit>)
VERSION = "1.3.6.47" VERSION = "1.3.6.48"
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable" TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34} TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE) VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)