Update for #3488 (found samples with Server: wts)

This commit is contained in:
Miroslav Stampar 2019-02-11 15:58:25 +01:00
parent ced9657d95
commit 27265f56ba
3 changed files with 4 additions and 3 deletions

View File

@ -19,7 +19,7 @@ from lib.core.enums import DBMS_DIRECTORY_NAME
from lib.core.enums import OS
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
VERSION = "1.3.2.17"
VERSION = "1.3.2.18"
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)

View File

@ -50,7 +50,7 @@ d5ef43fe3cdd6c2602d7db45651f9ceb lib/core/readlineng.py
7d8a22c582ad201f65b73225e4456170 lib/core/replication.py
3179d34f371e0295dd4604568fb30bcd lib/core/revision.py
d6269c55789f78cf707e09a0f5b45443 lib/core/session.py
33c1396c08313221a337ba08b678d0d7 lib/core/settings.py
23e7cd640ca9345ced37e2c30194859d lib/core/settings.py
4483b4a5b601d8f1c4281071dff21ecc lib/core/shell.py
10fd19b0716ed261e6d04f311f6f527c lib/core/subprocessng.py
43772ea73e9e3d446f782af591cb4eda lib/core/target.py
@ -475,7 +475,7 @@ ba0fb1e6b815446b9d6f30950900fc80 waf/trafficshield.py
a7b8c4c3d1463409e0e204932f0ddff0 waf/webknight.py
053c6b1ea20133bd9f563f1275ddb5a4 waf/webseal.py
ac9e4e3ced77012ed97284634a9ffc74 waf/wordfence.py
db5cf700712d8439453d4d22111e0617 waf/wts.py
512788a2a07f41290f78c9ad0053bd84 waf/wts.py
e69f77220558564785f0b3c961782a93 waf/yundun.py
a560bee3e948b97af2c88805933dcaad waf/yunsuo.py
c8b6517da2c8a28d474956e3a6b8c1ed waf/zenedge.py

View File

@ -18,6 +18,7 @@ def detect(get_page):
for vector in WAF_ATTACK_VECTORS:
page, headers, _ = get_page(get=vector)
retval = ">WTS-WAF" in (page or "")
retval |= re.search(r"\Awts/", headers.get(HTTP_HEADER.SERVER, ""), re.I) is not None
if retval:
break