Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a8c0cd commit 6058eecCopy full SHA for 6058eec
1 file changed
waf/webknight.py
@@ -0,0 +1,21 @@
1
+#!/usr/bin/env python
2
+
3
+"""
4
+Copyright (c) 2006-2013 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__ = "WebKnight Application Firewall (AQTRONIX)"
11
12
+def detect(get_page):
13
+ retval = False
14
15
+ for vector in WAF_ATTACK_VECTORS:
16
+ page, headers, code = get_page(get=vector)
17
+ retVal = code == 999
18
+ if retVal:
19
+ break
20
21
+ return retval
0 commit comments