CWE一覧に戻る
CWE-495

パブリック・メソッドから返されるプライベート・データ構造

Private Data Structure Returned From A Public Method
脆弱性 レビュー中
JA

この製品には、パブリックと宣言されているが、プライベートなデータ構造への参照を返すメソッドがある。

EN

The product has a method that is declared public, but returns a reference to a private data structure, which could then be modified in unexpected ways.

Scope: Integrity / Impact: Modify Application Data
Declare the method private.
Clone the member data and keep an unmodified version of the data private to the object.
Use public setter methods that govern how a private member can be modified.
MITRE公式ページ — CWE-495