"""
xss_protection_header.py
Copyright 2006 Andres Riancho
This file is part of w3af, http://w3af.org/ .
w3af is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation version 2 of the License.
w3af is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with w3af; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
"""
from w3af.core.controllers.plugins.grep_plugin import GrepPlugin
from w3af.core.data.kb.info import Info
from w3af.core.data.kb.info_set import InfoSet
class xss_protection_header(GrepPlugin):
"""
Grep headers for "X-XSS-Protection: 0" which disables security features in
the browser.
:author: Andres Riancho ([email protected])
"""
def grep(self, request, response):
"""
Plugin entry point.
:param request: The HTTP request object.
:param response: The HTTP response object
:return: None, all results are saved in the kb.
"""
headers = response.get_headers()
heaver_value, header_name = headers.iget('x-xss-protection', '')
heaver_value = heaver_value.strip()
if heaver_value == '0':
desc = 'The remote web server sent the HTTP X-XSS-Protection'\
' header with a 0 value, which disables Internet' \
' Explorer\'s XSS filter. In most cases, this is a bad' \
' practice and should be subject to review.'
i = Info('Insecure X-XSS-Protection header usage', desc,
response.id, self.get_name())
i.add_to_highlight('X-XSS-Protection')
i.set_uri(response.get_uri())
self.kb_append_uniq_group(self, 'xss_protection_header', i,
group_klass=XSSProtectionInfoSet)
def get_long_desc(self):
"""
:return: A DETAILED description of the plugin functions and features.
"""
return """
This plugin detects insecure usage of the "X-XSS-Protection" header as
explained in the MSDN blog article "Controlling the XSS Filter".
"""
class XSSProtectionInfoSet(InfoSet):
TEMPLATE = (
'The remote web server sent {{ uris|length }} HTTP responses with'
' the X-XSS-Protection header with a value of "0", which disables'
' Internet Explorer\'s XSS filter. The first ten URLs which sent'
' the insecure header are:\n'
''
'{% for url in uris[:10] %}'
' - {{ url }}\n'
'{% endfor %}'
)
def match(self, info):
return TrueData
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation