免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 913 | 回复: 0
打印 上一主题 下一主题

升级struts的一点见闻 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-05-14 01:47 |只看该作者 |倒序浏览

                   有一段时间没看struts,上次开发公司的样式管理系统,选择了struts和DWR,这次开始规划新的jsw系统开发平台,想在开始的时候,升级一下类库,看了下
struts
主页,才发现struts项目变成了含有两个子项目的“大工程”,按照他们的说法,既要保持成熟的request-based framework,叫做Struts Action,又要为want to use lastest technology的用户提供component-based framework,named Struts Shale.

   先不去研究shale,Struts Action按照计划将升级为版本2,essentially,struts action2 will be webwork2.3!

   呵呵,真是事事难料!

   struts action framework现在可用的版本是1.2.9,这个版本主要修正了三个安全问题:

The first issue is due to an error when handling a request with a "org.apache.struts.taglib.html.Constants.CANCEL" parameter, which could be exploited by attackers to cause the action to be canceled without being detected from applications that do not use the "isCancelled" check.
The second flaw is due to an error in BeanUtils that does not properly handle a "multipart/form-data" encoded form with a parameter name that references the public "getMultipartRequestHandler()" method, which could be exploited by attackers to cause a denial of service or gain access to elements in the "CommonsMultipartRequestHandler" implementation and BeanUtils.
The third vulnerability is due to input validation errors in "LookupDispatchAction" when handling a parameter name that does not correspond to an entry in the "lookupMap", which could be exploited by attackers to cause arbitrary scripting code to be executed by the user's browser in the security context of an affected Web site.

    更详细的release notes,可以看这个网址
http://struts.apache.org/struts-doc-1.2.9/userGuide/release-notes.html

    下载文件,看一下要升级到1.2.9需要的工作(大家具体的根据自己的情况看一下这个列表
http://wiki.apache.org/struts/StrutsUpgrade


    我要做的工作首先是把ActionError升级为ActionMessage,ActionError已经被deprecated,但是ActionErrors并没有被deprecated,struts开发团队也想这么做,但是有一些core api使用了ActionErrors(例如ActionForm.validate()返回的就是ActionErrors),所以他们只是建议你尽量使用ActionMessages啦,呵呵

   升级后的代码这样写:

   ActionMessages am = new ActionMessages();
   am.add( ActionMessages.GLOBAL_MESSAGE,  
           new ActionMessage( "not.authorized.for.account" ) );
   saveErrors( request, am );
   ActionMessages am = new ActionMessages();
   am.add( ActionMessages.GLOBAL_MESSAGE,  
           new ActionMessage( "not.authorized.for.account" ) );
   saveErrors( request, am );
   ActionMessages am = new ActionMessages();
   am.add( ActionMessages.GLOBAL_MESSAGE,  
           new ActionMessage( "not.authorized.for.account" ) );
   saveErrors( request, am );

然后输出:
   
      
   
   具体详见:
http://wiki.apache.org/struts/StrutsDeprecatedActionErrors

   好了,今天先写到这里,已经半夜了,大家做个好梦:)

  
               
               

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/17133/showart_112367.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP