Adding WAF script for Microsoft ISA Server

This commit is contained in:
Miroslav Stampar 2013-02-21 21:13:48 +01:00
parent 229e4e167b
commit c555120c1f

17
waf/isaserver.py Normal file
View 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