mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-23 23:20:49 +03:00
Minor update
This commit is contained in:
parent
17fa0f568c
commit
6c38afab35
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user