mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
17 lines
406 B
Python
17 lines
406 B
Python
|
#!/usr/bin/env python
|
||
|
|
||
|
"""
|
||
|
Copyright (c) 2006-2013 sqlmap developers (http://sqlmap.org/)
|
||
|
See the file 'doc/COPYING' for copying permission
|
||
|
"""
|
||
|
|
||
|
import re
|
||
|
|
||
|
from lib.core.enums import HTTPHEADER
|
||
|
|
||
|
__product__ = "Profense Web Application Firewall (Armorlogic)"
|
||
|
|
||
|
def detect(get_page):
|
||
|
page, headers, code = get_page()
|
||
|
return re.search(r"Profense", headers.get(HTTPHEADER.SERVER, ""), re.I) is not None
|