Hi I'm getting the violation as Below Malicious code vulnerability - May expose internal representation by returning reference to mutable object
in my code i wrote like this
public String[] chkBox() {
return chkBox;
How we can solve it.
feedback
|
|
As the error message states, you're returning internal state (chkBox is - most likely - part of the internal state of an object even though you're not showing its definition) This can cause problems if you - for example - do
Since an array object, as all Java objects, is passed by reference, this will change the original array stored inside your object as well. What you most likely want to do to fix this is a simple
which returns a copy of the array instead of the actual array. | |||
|
feedback
|
|
Let's suppose the following:
Now consider this code:
By returning a reference to the actual array that represents the This is bad from a design perspective (it is called a "leaky abstraction"). However, if this class is used in a context where there may also be untrusted code, this (the (Of course, the code checker has no way of knowing if this particular class is security critical. That's for you to understand.) | |||
|
feedback
|