This site is the archived OWASP Foundation Wiki and is no longer accepting Account Requests.
To view the new OWASP Foundation website, please visit https://owasp.org
Difference between revisions of "Unsafe Mobile Code"
Weilin Zhong (talk | contribs) (Moved the definition of mobile code and its security concern to Category:Unsafe Mobile Code.) |
Weilin Zhong (talk | contribs) m (Added Category:Unsafe Mobile Code) |
||
Line 49: | Line 49: | ||
[[Category:Code Snippet]] | [[Category:Code Snippet]] | ||
+ | |||
+ | [[Category:Unsafe Mobile Code]] |
Revision as of 17:15, 21 July 2006
This is a Vulnerability. To view all vulnerabilities, please see the Vulnerability Category page.
Abstract
The program violates secure coding principles for mobile code by returning a private array variable from a public access method.
Description
Returning a private array variable from a public access method allows the calling code to modify the contents of the array, effectively giving the array public access and contradicting the intentions of the programmer who made it private.
For more details about what is mobile code and its security concerns, please see Category:Unsafe Mobile Code.
Examples
The following Java Applet code mistakenly returns a private array variable from a public access method.
public final class urlTool extends Applet { private URL[] urls; public URL[] getURLs() { return urls; } ... }