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 229e4e1 commit c555120Copy full SHA for c555120
1 file changed
waf/isaserver.py
@@ -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