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 .revision import getRevisionNumber
2020
2121# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22- VERSION = "1.0.6.47 "
22+ VERSION = "1.0.6.48 "
2323REVISION = getRevisionNumber ()
2424STABLE = VERSION .count ('.' ) <= 2
2525VERSION_STRING = "sqlmap/%s#%s" % (VERSION , "stable" if STABLE else "dev" )
Original file line number Diff line number Diff line change 1+ #!/usr/bin/env python
2+
3+ """
4+ Copyright (c) 2006-2016 sqlmap developers (http://sqlmap.org/)
5+ See the file 'doc/COPYING' for copying permission
6+ """
7+
8+ from lib .core .settings import WAF_ATTACK_VECTORS
9+
10+ __product__ = "Armor Protection (Armor Defense)"
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 = "This request has been blocked by website protection from Armor" in (page or "" )
18+ if retval :
19+ break
20+
21+ return retval
You can’t perform that action at this time.
0 commit comments