x-power-by display in response header

拈花ヽ惹草 提交于 2020-01-25 04:42:21

问题


As per the security of web application x-power-by should set to empty when it displays in response header.. In our application we did this by implementing a filter.

public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException,
            ServletException {
    // App specific logic...
    HttpServletResponse httpResponse = (HttpServletResponse) response;
    httpResponse.setHeader("X-Powered-By","");
    chain.doFilter(request, response);
 httpResponse.setHeader("X-Powered-By"," ");
}

It is showing blank value in response header for x-power-by when hitting the URL, That's well and good but in our application when we hit the URL with query string appended with the URL then for the first request it shows :

x-power-by= JSF1.2

We have also commented out the below portion of x-power-by in web.xml as our application use jboss 5.0.1.

<filter>
      <filter-name>CommonHeadersFilter</filter-name>
      <filter-class>
         org.jboss.web.tomcat.filters.ReplyHeaderFilter</filter-class>
         <!--
      <init-param>
         <param-name>X-Powered-By</param-name>
         <param-value>Servlet 2.5; JBoss-5.0/JBossWeb-2.1</param-value>
      </init-param>
      -->
   </filter>

But doing all the two things mention above I am getting x-power-by displayed in the response header when I hit the URL with query string appended for the 1st time.

URL like: https://example.com?html="abcd",p_ab="shdhsgdhs"

Don't know how to resolve it,any help is highly appreciated.


回答1:


1) Add following entry to your application web.xml.

<context-param> 
<param-name>com.sun.faces.sendPoweredByHeader</param-name> 
<param-value>false</param-value> 
</context-param>

2) I don't think you need any filter to overwrite this header (based on jboss documentation).



来源:https://stackoverflow.com/questions/36433521/x-power-by-display-in-response-header

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!