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

Skip to content

Commit 6c38afa

Browse files
committed
Minor update
1 parent 17fa0f5 commit 6c38afa

3 files changed

Lines changed: 2 additions & 7 deletions

File tree

waf/isaserver.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,7 @@
55
See the file 'doc/COPYING' for copying permission
66
"""
77

8-
import re
9-
108
from lib.core.common import randomInt
11-
from lib.core.enums import HTTPHEADER
129

1310
__product__ = "ISA Server (Microsoft)"
1411

waf/secureiis.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
See the file 'doc/COPYING' for copying permission
66
"""
77

8-
import re
9-
108
from lib.core.enums import HTTPHEADER
119

1210
__product__ = "SecureIIS Web Server Security (BeyondTrust)"

waf/teros.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99

1010
from lib.core.enums import HTTPHEADER
1111

12-
__product__ = "ISV Teros Web Application Firewall (Teros/Citrix Systems)"
12+
__product__ = "Teros/Citrix Application Firewall Enterprise (Teros/Citrix Systems)"
1313

1414
def detect(get_page):
1515
page, headers, code = get_page()
16-
return re.search(r"\Ast8id=", headers.get(HTTPHEADER.SET_COOKIE, ""), re.I) is not None
16+
return re.search(r"\Ast8(id|_wat|_wlf)", headers.get(HTTPHEADER.SET_COOKIE, ""), re.I) is not None

0 commit comments

Comments
 (0)