mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 20:51:31 +00:00
Minor update
This commit is contained in:
@@ -5,10 +5,7 @@ Copyright (c) 2006-2013 sqlmap developers (http://sqlmap.org/)
|
|||||||
See the file 'doc/COPYING' for copying permission
|
See the file 'doc/COPYING' for copying permission
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import re
|
|
||||||
|
|
||||||
from lib.core.common import randomInt
|
from lib.core.common import randomInt
|
||||||
from lib.core.enums import HTTPHEADER
|
|
||||||
|
|
||||||
__product__ = "ISA Server (Microsoft)"
|
__product__ = "ISA Server (Microsoft)"
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,6 @@ Copyright (c) 2006-2013 sqlmap developers (http://sqlmap.org/)
|
|||||||
See the file 'doc/COPYING' for copying permission
|
See the file 'doc/COPYING' for copying permission
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import re
|
|
||||||
|
|
||||||
from lib.core.enums import HTTPHEADER
|
from lib.core.enums import HTTPHEADER
|
||||||
|
|
||||||
__product__ = "SecureIIS Web Server Security (BeyondTrust)"
|
__product__ = "SecureIIS Web Server Security (BeyondTrust)"
|
||||||
|
|||||||
@@ -9,8 +9,8 @@ import re
|
|||||||
|
|
||||||
from lib.core.enums import HTTPHEADER
|
from lib.core.enums import HTTPHEADER
|
||||||
|
|
||||||
__product__ = "ISV Teros Web Application Firewall (Teros/Citrix Systems)"
|
__product__ = "Teros/Citrix Application Firewall Enterprise (Teros/Citrix Systems)"
|
||||||
|
|
||||||
def detect(get_page):
|
def detect(get_page):
|
||||||
page, headers, code = get_page()
|
page, headers, code = get_page()
|
||||||
return re.search(r"\Ast8id=", headers.get(HTTPHEADER.SET_COOKIE, ""), re.I) is not None
|
return re.search(r"\Ast8(id|_wat|_wlf)", headers.get(HTTPHEADER.SET_COOKIE, ""), re.I) is not None
|
||||||
|
|||||||
Reference in New Issue
Block a user