mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-09 14:11:29 +00:00
Minor patch
This commit is contained in:
@@ -19,7 +19,7 @@ from lib.core.enums import OS
|
|||||||
from lib.core.revision import getRevisionNumber
|
from lib.core.revision import getRevisionNumber
|
||||||
|
|
||||||
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
|
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
|
||||||
VERSION = "1.0.6.50"
|
VERSION = "1.0.6.51"
|
||||||
REVISION = getRevisionNumber()
|
REVISION = getRevisionNumber()
|
||||||
STABLE = VERSION.count('.') <= 2
|
STABLE = VERSION.count('.') <= 2
|
||||||
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")
|
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ def detect(get_page):
|
|||||||
page, _, _ = get_page(get=vector)
|
page, _, _ = get_page(get=vector)
|
||||||
retval = re.search(r"SecureIIS[^<]+Web Server Protection", page or "") is not None
|
retval = re.search(r"SecureIIS[^<]+Web Server Protection", page or "") is not None
|
||||||
retval |= "http://www.eeye.com/SecureIIS/" in (page or "")
|
retval |= "http://www.eeye.com/SecureIIS/" in (page or "")
|
||||||
retval |= "?subject=SecureIIS Error" in (page or "")
|
retval |= re.search(r"\?subject=[^>]*SecureIIS Error", page or "") is not None
|
||||||
if retval:
|
if retval:
|
||||||
break
|
break
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user