All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.security.web.header.writers.ContentSecurityPolicyHeaderWriter Maven / Gradle / Ivy

There is a newer version: 6.3.0
Show newest version
/*
 * Copyright 2002-2019 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.springframework.security.web.header.writers;

import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;

import org.springframework.security.web.header.HeaderWriter;
import org.springframework.util.Assert;

/**
 * 

* Provides support for Content Security Policy * (CSP) Level 2. *

* *

* CSP provides a mechanism for web applications to mitigate content injection * vulnerabilities, such as cross-site scripting (XSS). CSP is a declarative policy that * allows web application authors to inform the client (user-agent) about the sources from * which the application expects to load resources. *

* *

* For example, a web application can declare that it only expects to load script from * specific, trusted sources. This declaration allows the client to detect and block * malicious scripts injected into the application by an attacker. *

* *

* A declaration of a security policy contains a set of security policy directives (for * example, script-src and object-src), each responsible for declaring the restrictions * for a particular resource type. The list of directives defined can be found at * Directives. *

* *

* Each directive has a name and value. For detailed syntax on writing security policies, * see Syntax and * Algorithms. *

* *

* This implementation of {@link HeaderWriter} writes one of the following headers: *

*
    *
  • Content-Security-Policy
  • *
  • Content-Security-Policy-Report-Only
  • *
* *

* By default, the Content-Security-Policy header is included in the response. However, * calling {@link #setReportOnly(boolean)} with {@code true} will include the * Content-Security-Policy-Report-Only header in the response. NOTE: The * supplied security policy directive(s) will be used for whichever header is enabled * (included). *

* *

* CSP is not intended as a first line of defense against content injection * vulnerabilities. Instead, CSP is used to reduce the harm caused by content injection * attacks. As a first line of defense against content injection, web application authors * should validate their input and encode their output. *

* * @author Joe Grandja * @author Ankur Pathak * @since 4.1 */ public final class ContentSecurityPolicyHeaderWriter implements HeaderWriter { private static final String CONTENT_SECURITY_POLICY_HEADER = "Content-Security-Policy"; private static final String CONTENT_SECURITY_POLICY_REPORT_ONLY_HEADER = "Content-Security-Policy-Report-Only"; private static final String DEFAULT_SRC_SELF_POLICY = "default-src 'self'"; private String policyDirectives; private boolean reportOnly; /** * Creates a new instance. Default value: default-src 'self' */ public ContentSecurityPolicyHeaderWriter() { setPolicyDirectives(DEFAULT_SRC_SELF_POLICY); this.reportOnly = false; } /** * Creates a new instance * @param policyDirectives maps to {@link #setPolicyDirectives(String)} * @throws IllegalArgumentException if policyDirectives is null or empty */ public ContentSecurityPolicyHeaderWriter(String policyDirectives) { setPolicyDirectives(policyDirectives); this.reportOnly = false; } /** * @see org.springframework.security.web.header.HeaderWriter#writeHeaders(jakarta.servlet.http.HttpServletRequest, * jakarta.servlet.http.HttpServletResponse) */ @Override public void writeHeaders(HttpServletRequest request, HttpServletResponse response) { String headerName = (!this.reportOnly) ? CONTENT_SECURITY_POLICY_HEADER : CONTENT_SECURITY_POLICY_REPORT_ONLY_HEADER; if (!response.containsHeader(headerName)) { response.setHeader(headerName, this.policyDirectives); } } /** * Sets the security policy directive(s) to be used in the response header. * @param policyDirectives the security policy directive(s) * @throws IllegalArgumentException if policyDirectives is null or empty */ public void setPolicyDirectives(String policyDirectives) { Assert.hasLength(policyDirectives, "policyDirectives cannot be null or empty"); this.policyDirectives = policyDirectives; } /** * If true, includes the Content-Security-Policy-Report-Only header in the response, * otherwise, defaults to the Content-Security-Policy header. * @param reportOnly set to true for reporting policy violations only */ public void setReportOnly(boolean reportOnly) { this.reportOnly = reportOnly; } @Override public String toString() { return getClass().getName() + " [policyDirectives=" + this.policyDirectives + "; reportOnly=" + this.reportOnly + "]"; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy