Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c555120

Browse files
committed
Adding WAF script for Microsoft ISA Server
1 parent 229e4e1 commit c555120

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

waf/isaserver.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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+
import re
9+
10+
from lib.core.common import randomInt
11+
from lib.core.enums import HTTPHEADER
12+
13+
__product__ = "ISA Server (Microsoft)"
14+
15+
def detect(get_page):
16+
page, headers, code = get_page(host=randomInt(6))
17+
return "The server denied the specified Uniform Resource Locator (URL). Contact the server administrator" in page

0 commit comments

Comments
 (0)