Update for WAF scripts

This commit is contained in:
stamparm
2013-02-26 15:30:11 +01:00
parent 6c38afab35
commit e5835dc74f
10 changed files with 73 additions and 6 deletions

View File

@@ -11,4 +11,6 @@ __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
retval = "The server denied the specified Uniform Resource Locator (URL). Contact the server administrator." in (page or "")
retval |= "The ISA Server denied the specified Uniform Resource Locator (URL)" in (page or "")
return retval