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

Skip to content

Commit 5381d4d

Browse files
committed
Minor update
1 parent c1825b2 commit 5381d4d

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.2.6.1"
22+
VERSION = "1.2.6.2"
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
@@ -47,7 +47,7 @@ c9a56e58984420a5abb7a3f7aadc196d lib/core/optiondict.py
4747
0c3eef46bdbf87e29a3f95f90240d192 lib/core/replication.py
4848
a7db43859b61569b601b97f187dd31c5 lib/core/revision.py
4949
fcb74fcc9577523524659ec49e2e964b lib/core/session.py
50-
993fd299707fdb019bfe4e12967da74c lib/core/settings.py
50+
240e554483cc86de3fc483858dc8cb7b lib/core/settings.py
5151
0dfc2ed40adf72e302291f6ecd4406f6 lib/core/shell.py
5252
a7edc9250d13af36ac0108f259859c19 lib/core/subprocessng.py
5353
6306284edcccc185b2df085438572b0d lib/core/target.py
@@ -390,7 +390,7 @@ ca3ab78d6ed53b7f2c07ed2530d47efd udf/postgresql/windows/32/8.4/lib_postgresqlud
390390
0d3fe0293573a4453463a0fa5a081de1 udf/postgresql/windows/32/9.0/lib_postgresqludf_sys.dll_
391391
336d0b0d2be333f5a6184042c85464fd waf/360.py
392392
667cacdcd4ba650c9a436f081a79cd64 waf/airlock.py
393-
003cc986b2f5899fe3c85b6309c4b556 waf/anquanbao.py
393+
7da7970b45512b0233450dbd8088fde0 waf/anquanbao.py
394394
b61329e8f8bdbf5625f9520ec010af1f waf/armor.py
395395
dec64f18c23962d279cc1cde6469afed waf/asm.py
396396
6ea7b4ff5f111acb0b24186ef82c3f2d waf/aws.py

waf/anquanbao.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def detect(get_page):
1717
for vector in WAF_ATTACK_VECTORS:
1818
page, headers, code = get_page(get=vector)
1919
retval = re.search(r"MISS", headers.get("X-Powered-By-Anquanbao", ""), re.I) is not None
20-
retval |= code == 405 and "/aqb_cc/error/" in (page or "")
20+
retval |= code == 405 and any(_ in (page or "") for _ in ("/aqb_cc/error/", "hidden_intercept_time"))
2121
if retval:
2222
break
2323

0 commit comments

Comments
 (0)