Minor update

This commit is contained in:
stamparm 2013-02-26 14:49:37 +01:00
parent 17fa0f568c
commit 6c38afab35
3 changed files with 2 additions and 7 deletions

View File

@ -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)"

View File

@ -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)"

View File

@ -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