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

Skip to content

Commit ced9657

Browse files
committed
Patch for #3488
1 parent 47edf13 commit ced9657

3 files changed

Lines changed: 4 additions & 4 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.3.2.16"
22+
VERSION = "1.3.2.17"
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 & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ d5ef43fe3cdd6c2602d7db45651f9ceb lib/core/readlineng.py
5050
7d8a22c582ad201f65b73225e4456170 lib/core/replication.py
5151
3179d34f371e0295dd4604568fb30bcd lib/core/revision.py
5252
d6269c55789f78cf707e09a0f5b45443 lib/core/session.py
53-
f8515bbac09b5707af54ec874d27aef1 lib/core/settings.py
53+
33c1396c08313221a337ba08b678d0d7 lib/core/settings.py
5454
4483b4a5b601d8f1c4281071dff21ecc lib/core/shell.py
5555
10fd19b0716ed261e6d04f311f6f527c lib/core/subprocessng.py
5656
43772ea73e9e3d446f782af591cb4eda lib/core/target.py
@@ -475,6 +475,7 @@ ba0fb1e6b815446b9d6f30950900fc80 waf/trafficshield.py
475475
a7b8c4c3d1463409e0e204932f0ddff0 waf/webknight.py
476476
053c6b1ea20133bd9f563f1275ddb5a4 waf/webseal.py
477477
ac9e4e3ced77012ed97284634a9ffc74 waf/wordfence.py
478+
db5cf700712d8439453d4d22111e0617 waf/wts.py
478479
e69f77220558564785f0b3c961782a93 waf/yundun.py
479480
a560bee3e948b97af2c88805933dcaad waf/yunsuo.py
480481
c8b6517da2c8a28d474956e3a6b8c1ed waf/zenedge.py

waf/wts.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ def detect(get_page):
1717

1818
for vector in WAF_ATTACK_VECTORS:
1919
page, headers, _ = get_page(get=vector)
20-
retval = re.search(r"wts(.*)?", headers.get(HTTP_HEADER.SERVER, ""), re.I) is not None
21-
retval |= all(_ in (page or "") for _ in ("<title>WTS.WAF", "<h1>WTS-WAF"))
20+
retval = ">WTS-WAF" in (page or "")
2221
if retval:
2322
break
2423

0 commit comments

Comments
 (0)