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

Skip to content

Commit 44664dd

Browse files
committed
Minor update (based on user request)
1 parent 35ba94b commit 44664dd

3 files changed

Lines changed: 4 additions & 3 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.1.9.19"
22+
VERSION = "1.1.9.20"
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
@@ -46,7 +46,7 @@ a44d7a4cc6c9a67a72d6af2f25f4ddac lib/core/exception.py
4646
d8e9250f3775119df07e9070eddccd16 lib/core/replication.py
4747
785f86e3f963fa3798f84286a4e83ff2 lib/core/revision.py
4848
40c80b28b3a5819b737a5a17d4565ae9 lib/core/session.py
49-
c755024a91ad09fb1833e556acecf6c5 lib/core/settings.py
49+
ef5cf593cd595b00fadb67e5004de5c0 lib/core/settings.py
5050
d91291997d2bd2f6028aaf371bf1d3b6 lib/core/shell.py
5151
2ad85c130cc5f2b3701ea85c2f6bbf20 lib/core/subprocessng.py
5252
effc153067a00bd43461bfc1cdec1122 lib/core/target.py
@@ -390,7 +390,7 @@ a0200fc79bae0ec597b98c82894562a5 waf/armor.py
390390
d764bf3b9456a02a7f8a0149a93ff950 waf/aws.py
391391
dbc89fc642074c6d17a04532e623f976 waf/baidu.py
392392
e4e713cc4e5504eed0311fa62b05a6f9 waf/barracuda.py
393-
81af1707c0783d205075d887c9868043 waf/bigip.py
393+
03df7b2cfccc5eb6b4a6fe987cdb004d waf/bigip.py
394394
2adee01cbf513944cd3d281af1c05a86 waf/binarysec.py
395395
db312318ee5309577917faca1cd2c077 waf/blockdos.py
396396
520ef7b59340b96b4a43e7fdba760967 waf/ciscoacexml.py

waf/bigip.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ def detect(get_page):
1818
for vector in WAF_ATTACK_VECTORS:
1919
_, headers, _ = get_page(get=vector)
2020
retval = headers.get("X-Cnection", "").lower() == "close"
21+
retval |= headers.get("X-WA-Info") is not None
2122
retval |= re.search(r"\ATS\w{4,}=", headers.get(HTTP_HEADER.SET_COOKIE, ""), re.I) is not None
2223
retval |= re.search(r"BigIP|BIGipServer", headers.get(HTTP_HEADER.SET_COOKIE, ""), re.I) is not None
2324
retval |= re.search(r"BigIP|BIGipServer", headers.get(HTTP_HEADER.SERVER, ""), re.I) is not None

0 commit comments

Comments
 (0)