CWE-608 Structs:动作表单类中存在非私有域

admin 2021年12月4日16:18:04评论37 views字数 2054阅读6分50秒阅读模式

CWE-608 Structs:动作表单类中存在非私有域

Struts: Non-private Field in ActionForm Class

结构: Simple

Abstraction: Variant

状态: Draft

被利用可能性: unkown

基本描述

An ActionForm class contains a field that has not been declared private, which can be accessed without using a setter or getter.

相关缺陷

  • cwe_Nature: ChildOf cwe_CWE_ID: 20 cwe_View_ID: 699 cwe_Ordinal: Primary

  • cwe_Nature: ChildOf cwe_CWE_ID: 668 cwe_View_ID: 1000 cwe_Ordinal: Primary

适用平台

Language: {'cwe_Name': 'Java', 'cwe_Prevalence': 'Undetermined'}

常见的影响

范围 影响 注释
['Integrity', 'Confidentiality'] ['Modify Application Data', 'Read Application Data']

可能的缓解方案

Implementation

策略:

Make all fields private. Use getter to get the value of the field. Setter should be used only by the framework; setting an action form field from other actions is bad practice and should be avoided.

示例代码

In the following Java example the class RegistrationForm is a Struts framework ActionForm Bean that will maintain user input data from a registration webpage for a online business site. The user will enter registration data and through the Struts framework the RegistrationForm bean will maintain the user data.

bad Java

public class RegistrationForm extends org.apache.struts.validator.ValidatorForm {

// variables for registration form
public String name;
public String email;
...

public RegistrationForm() {

super();

}
public ActionErrors validate(ActionMapping mapping, HttpServletRequest request) {...}
...

}

However, within the RegistrationForm the member variables for the registration form input data are declared public not private. All member variables within a Struts framework ActionForm class must be declared private to prevent the member variables from being modified without using the getter and setter methods. The following example shows the member variables being declared private and getter and setter methods declared for accessing the member variables.

good Java

public class RegistrationForm extends org.apache.struts.validator.ValidatorForm {

// private variables for registration form
private String name;
private String email;
...

public RegistrationForm() {

super();

}

public ActionErrors validate(ActionMapping mapping, HttpServletRequest request) {...}

// getter and setter methods for private variables
...

}

分类映射

映射的分类名 ImNode ID Fit Mapped Node Name
Software Fault Patterns SFP28 Unexpected access points

文章来源于互联网:scap中文网

  • 左青龙
  • 微信扫一扫
  • weinxin
  • 右白虎
  • 微信扫一扫
  • weinxin
admin
  • 本文由 发表于 2021年12月4日16:18:04
  • 转载请保留本文链接(CN-SEC中文网:感谢原作者辛苦付出):
                   CWE-608 Structs:动作表单类中存在非私有域http://cn-sec.com/archives/613448.html

发表评论

匿名网友 填写信息