File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1919from lib .core .enums import OS
2020
2121# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22- VERSION = "1.1.12.19 "
22+ VERSION = "1.1.12.20 "
2323TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
2424TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
2525VERSION_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 @@ f872699e948d0692ce11b54781da814c lib/core/log.py
4646760d9df2a27ded29109b390ab202e72d lib/core/replication.py
4747a2466b62e67f8b31736bac4dac590e51 lib/core/revision.py
484802d4762140a72fd44668d3dab5eabda9 lib/core/session.py
49- abc5b37347c8ab56f108538d03eeda38 lib/core/settings.py
49+ e073bdbcda9622faa1179eb62d9c420e lib/core/settings.py
505035bffbad762eb9e03db9e93b1c991103 lib/core/shell.py
5151a59ec28371ae067a6fdd8f810edbee3d lib/core/subprocessng.py
5252d93501771b41315f9fb949305b6ed257 lib/core/target.py
@@ -389,6 +389,7 @@ ca3ab78d6ed53b7f2c07ed2530d47efd udf/postgresql/windows/32/8.4/lib_postgresqlud
3893898f21bc536648bbe73de32cb58036564a waf/airlock.py
39039005fde87480ea622db4c84b0fc248a613 waf/anquanbao.py
3913914adfebe23101d542365d8c92b4f49af7 waf/armor.py
392+ d4c8df8461e8633cc4cc94c687102396 waf/asm.py
39239358faaa04de90a44c306e862bbbe0ed83 waf/aws.py
3933942347b494b91dc50d93d1437e1302f9f1 waf/baidu.py
39439572fd38a1fa212fb154f74d0c978d489a waf/barracuda.py
Original file line number Diff line number Diff line change 1+ #!/usr/bin/env python
2+
3+ """
4+ Copyright (c) 2006-2017 sqlmap developers (http://sqlmap.org/)
5+ See the file 'LICENSE' for copying permission
6+ """
7+
8+ from lib .core .settings import WAF_ATTACK_VECTORS
9+
10+ __product__ = "Application Security Manager (F5 Networks)"
11+
12+ def detect (get_page ):
13+ retval = False
14+
15+ for vector in WAF_ATTACK_VECTORS :
16+ page , _ , _ = get_page (get = vector )
17+ retval = "The requested URL was rejected. Please consult with your administrator." in (page or "" )
18+ if retval :
19+ break
20+
21+ return retval
You can’t perform that action at this time.
0 commit comments