mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-23 23:20:49 +03:00
Adding WAF script for Microsoft ISA Server
This commit is contained in:
parent
229e4e167b
commit
c555120c1f
17
waf/isaserver.py
Normal file
17
waf/isaserver.py
Normal file
|
@ -0,0 +1,17 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
"""
|
||||
Copyright (c) 2006-2013 sqlmap developers (http://sqlmap.org/)
|
||||
See the file 'doc/COPYING' for copying permission
|
||||
"""
|
||||
|
||||
import re
|
||||
|
||||
from lib.core.common import randomInt
|
||||
from lib.core.enums import HTTPHEADER
|
||||
|
||||
__product__ = "ISA Server (Microsoft)"
|
||||
|
||||
def detect(get_page):
|
||||
page, headers, code = get_page(host=randomInt(6))
|
||||
return "The server denied the specified Uniform Resource Locator (URL). Contact the server administrator" in page
|
Loading…
Reference in New Issue
Block a user