File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 19
19
from lib .core .enums import OS
20
20
21
21
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22
- VERSION = "1.1.11.37 "
22
+ VERSION = "1.1.11.38 "
23
23
TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
24
24
TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
25
25
VERSION_STRING = "sqlmap/%s#%s" % ('.' .join (VERSION .split ('.' )[:- 1 ]) if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] == '0' else VERSION , TYPE )
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ e1c000db9be27f973569b1a430629037 lib/core/option.py
46
46
760d9df2a27ded29109b390ab202e72d lib/core/replication.py
47
47
a2466b62e67f8b31736bac4dac590e51 lib/core/revision.py
48
48
02d4762140a72fd44668d3dab5eabda9 lib/core/session.py
49
- 08ba426f7157982ff9aa4c8d40a5f2b5 lib/core/settings.py
49
+ 71199d4a6f86e6c1bf6da24a41a9c1b7 lib/core/settings.py
50
50
35bffbad762eb9e03db9e93b1c991103 lib/core/shell.py
51
51
a59ec28371ae067a6fdd8f810edbee3d lib/core/subprocessng.py
52
52
d5a04d672a18f78deb2839c3745ff83c lib/core/target.py
@@ -429,7 +429,7 @@ e353eb40d21be9e5ac6ea98f5c71a2f3 waf/radware.py
429
429
de671bbe9acee86d5e3a66fd4126b4e3 waf/safedog.py
430
430
b03fdbf8f427ab614303a03416970927 waf/secureiis.py
431
431
877ea097e56abf01868945a00c2afdea waf/senginx.py
432
- 2c24d9e5c80ad51cb74f1c4b124d8974 waf/sitelock.py
432
+ 90f3c0c895d5d564b6614e25549b6355 waf/sitelock.py
433
433
664f73359b87bfb684fb49df1e0b1fa4 waf/sonicwall.py
434
434
b384581ce833d147690c7c77c9509bdc waf/sophos.py
435
435
e9127a67621440fba41e1cd176890851 waf/stingray.py
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ def detect(get_page):
14
14
15
15
for vector in WAF_ATTACK_VECTORS :
16
16
page , _ , _ = get_page (get = vector )
17
- retval = "SiteLock Incident ID" in (page or "" )
17
+ retval |= any ( _ in ( page or "" ) for _ in ("SiteLock Incident ID" , "sitelock-site-verification" , "sitelock_shield_logo" ) )
18
18
if retval :
19
19
break
20
20
You can’t perform that action at this time.
0 commit comments