/* * Copyright 2014 Eric F. Savage, code@efsavage.com * * 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 * * http://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 com.ajah.servlet.filter; import java.io.IOException; import javax.servlet.FilterChain; import javax.servlet.ServletException; import javax.servlet.ServletRequest; import javax.servlet.ServletResponse; import javax.servlet.http.HttpServletResponse; import lombok.Data; import lombok.EqualsAndHashCode; import com.ajah.servlet.util.ResponseHeader; import com.ajah.util.config.Config; /** * Sets a X-Content-Type-Options based on the "ajah.header.content-type-options" * property. Default value is "nosniff" (the only known supported value). * * @author <a href="http://efsavage.com">Eric F. Savage</a>, <a * href="mailto:code@efsavage.com">code@efsavage.com</a>. */ @Data @EqualsAndHashCode(callSuper = true) public class ContentTypeOptionsFilter extends BaseFilter { @Override public void doFilter(final ServletRequest request, final ServletResponse response, final FilterChain chain) throws IOException, ServletException { final String value = Config.i.get("ajah.header.content-type-options", "nosniff"); ((HttpServletResponse) response).addHeader(ResponseHeader.X_CONTENT_TYPE_OPTIONS.getHeader(), value); super.doFilter(request, response, chain); } }