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

Skip to content

Commit 79e45bd

Browse files
committed
Minor update
1 parent ed5f4ab commit 79e45bd

3 files changed

Lines changed: 49 additions & 5 deletions

File tree

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from lib.core.enums import OS
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.2.10.4"
22+
VERSION = "1.2.10.5"
2323
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2424
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2525
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

txt/checksum.md5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ c8c386d644d57c659d74542f5f57f632 lib/core/patch.py
4949
0c3eef46bdbf87e29a3f95f90240d192 lib/core/replication.py
5050
a7db43859b61569b601b97f187dd31c5 lib/core/revision.py
5151
fcb74fcc9577523524659ec49e2e964b lib/core/session.py
52-
40d7d26b71f11cbc128a0ef7c67e2da0 lib/core/settings.py
52+
af9f01fd0d42d37f40e41f93907e2528 lib/core/settings.py
5353
dd68a9d02fccb4fa1428b20e15b0db5d lib/core/shell.py
5454
a7edc9250d13af36ac0108f259859c19 lib/core/subprocessng.py
5555
62bc180e3e828949ffb342a8f756c183 lib/core/target.py
@@ -462,7 +462,7 @@ d8925c034263bf1b83e7d8e1c78eec57 xml/banner/mssql.xml
462462
7b21aeb3ad66d7686eacd23a6346292c xml/banner/mysql.xml
463463
9b262a617b06af56b1267987d694bf6f xml/banner/oracle.xml
464464
c26cd4fa986ddc9f6d92dd87c8fc61cb xml/banner/postgresql.xml
465-
4970709ca31bcaea5eb79547a132606a xml/banner/server.xml
465+
5f8975d03665aad58c3ee8acea85b06b xml/banner/server.xml
466466
d48c971769c6131e35bd52d2315a8d58 xml/banner/servlet-engine.xml
467467
5fa1805d3007c68b051f2c70afcf41ed xml/banner/set-cookie.xml
468468
d989813ee377252bca2103cea524c06b xml/banner/sharepoint.xml

xml/banner/server.xml

Lines changed: 46 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -802,13 +802,57 @@
802802

803803
<!-- Nginx -->
804804

805-
<regexp value="nginx/([\w\.]+)">
805+
<regexp value="nginx$">
806806
<info technology="Nginx"/>
807807
</regexp>
808808

809+
<regexp value="nginx/([\w\.]+)">
810+
<info technology="Nginx" tech_version="1"/>
811+
</regexp>
812+
809813
<!-- Google Web Server -->
810814

811-
<regexp value="GWS/([\w\.]+)">
815+
<regexp value="GWS$">
812816
<info technology="Google Web Server"/>
813817
</regexp>
818+
819+
<regexp value="GWS/([\w\.]+)">
820+
<info technology="Google Web Server" tech_version="1"/>
821+
</regexp>
822+
823+
<!-- lighttpd -->
824+
825+
<regexp value="lighttpd$">
826+
<info technology="lighttpd"/>
827+
</regexp>
828+
829+
<regexp value="lighttpd/([\w\.]+)">
830+
<info technology="lighttpd" tech_version="1"/>
831+
</regexp>
832+
833+
<!-- OpenResty -->
834+
835+
<regexp value="openresty$">
836+
<info technology="OpenResty"/>
837+
</regexp>
838+
839+
<regexp value="openresty/([\w\.]+)">
840+
<info technology="OpenResty" tech_version="1"/>
841+
</regexp>
842+
843+
<!-- LiteSpeed -->
844+
845+
<regexp value="LiteSpeed$">
846+
<info technology="LiteSpeed"/>
847+
</regexp>
848+
849+
<regexp value="LiteSpeed/([\w\.]+)">
850+
<info technology="LiteSpeed" tech_version="1"/>
851+
</regexp>
852+
853+
<!-- Sun ONE -->
854+
855+
<regexp value="Sun-ONE-Web-Server/([\w\.]+)">
856+
<info technology="Sun ONE" tech_version="1"/>
857+
</regexp>
814858
</root>

0 commit comments

Comments
 (0)