appscan查到的漏洞解决方案-java版

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了appscan查到的漏洞解决方案-java版相关的知识,希望对你有一定的参考价值。

1.会话标识未更新:登录页面加入以下代码:
request.getSession(true).invalidate();//清空session
Cookie cookie = request.getCookies()[0];//获取cookie
cookie.setMaxAge(0);//让cookie过期

2.跨站点请求伪CSRF:
response.getWriter().write( "<script>parent.location.href=‘dbase/admin/loginJsp.action?sessionId="+sessionId+"‘</script>");

带参数的:
response.getWriter().write(? "<script language="javascript"> "+"document.write("<form action=dbase/admin/loginJsp.action method=post name=formx1 style=‘display:none‘>");"+"document.write("<input type=hidden name=name value=‘"+sessionId+"‘");" + "document.write("</form>");"+"document.formx1.submit();"+"</script>"? );

3.启用不安全HTTP方法
在web.xml加入如下配置

<security-constraint>
<web-resource-collection>
<url-pattern>/*</url-pattern>
<http-method>PUT</http-method>
<http-method>DELETE</http-method>
<http-method>HEAD</http-method>
<http-method>OPTIONS</http-method>
<http-method>TRACE</http-method>
</web-resource-collection>
<auth-constraint>
</auth-constraint>
</security-constraint>
<login-config>
<auth-method>BASIC</auth-method>
</login-config>

4.已解密登录请求
<security-constraint>
<web-resource-collection >
<web-resource-name >SSL</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transportguarantee>
</user-data-constraint>
</security-constraint>

5.高速缓存的ssl页面
页面添加 <meta http-equiv="Pragma" contect="no-cache">

?6.会话cookie 中缺少HttpOnly 属性
response.addHeader("Set-Cookie", "uid=110; Path=/; HttpOnly");
//设置多个cookie
response.addHeader("Set-Cookie", "uid=110; Path=/; HttpOnly");
response.addHeader("Set-Cookie", "timeout=30; Path=/test; HttpOnly");
//设置https的cookie
response.addHeader("Set-Cookie", "uid=110; Path=/; Secure; HttpOnly");
//csdn博客里面有更多关于appscan扫描报告和修复的详情:http://blog.csdn.net/huoyunshen88/article/details/39181107

以上是关于appscan查到的漏洞解决方案-java版的主要内容,如果未能解决你的问题,请参考以下文章

AppScan 8.0.3安全漏洞扫描总结

如何修复AppScan漏洞

asp.net 用IBM Appscan 软件扫描爆出“登录错误信息凭证枚举”高位漏洞!请问怎么解决啊?

WEB安全漏洞扫描与处理(上)——安全漏洞扫描工具AppScan的安装使用

javaWeb安全漏洞修复总结

安装appcsan需要联网吗