diff --git a/data/xml/banner/servlet-engine.xml b/data/xml/banner/servlet-engine.xml index 403f14359..c34d9617e 100644 --- a/data/xml/banner/servlet-engine.xml +++ b/data/xml/banner/servlet-engine.xml @@ -7,6 +7,14 @@ + + + + + + + + diff --git a/data/xml/banner/x-powered-by.xml b/data/xml/banner/x-powered-by.xml index 64741769c..f4a058fe8 100644 --- a/data/xml/banner/x-powered-by.xml +++ b/data/xml/banner/x-powered-by.xml @@ -35,8 +35,12 @@ - - + + + + + + diff --git a/lib/core/settings.py b/lib/core/settings.py index c2d3c8089..7ce51ffef 100644 --- a/lib/core/settings.py +++ b/lib/core/settings.py @@ -18,7 +18,7 @@ from lib.core.enums import OS from thirdparty.six import unichr as _unichr # sqlmap version (...) -VERSION = "1.3.6.47" +VERSION = "1.3.6.48" TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable" 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)