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

Skip to content

Commit 733a32d

Browse files
committed
Minor patch
1 parent 1b863ec commit 733a32d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from lib.core.revision import getRevisionNumber
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.0.6.50"
22+
VERSION = "1.0.6.51"
2323
REVISION = getRevisionNumber()
2424
STABLE = VERSION.count('.') <= 2
2525
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")

waf/secureiis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def detect(get_page):
1818
page, _, _ = get_page(get=vector)
1919
retval = re.search(r"SecureIIS[^<]+Web Server Protection", page or "") is not None
2020
retval |= "http://www.eeye.com/SecureIIS/" in (page or "")
21-
retval |= "?subject=SecureIIS Error" in (page or "")
21+
retval |= re.search(r"\?subject=[^>]*SecureIIS Error", page or "") is not None
2222
if retval:
2323
break
2424

0 commit comments

Comments
 (0)