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
Unsafe Mobile Code: Dangerous Public Field
From OWASP
Revision as of 18:28, 27 May 2009 by MediaWiki spam cleanup (talk | contribs) (Reverting to last version not containing links to www.textnobasace.com)
#REDIRECT Unsafe Mobile Code
Last revision (mm/dd/yy): 05/27/2009
Description
The program violates secure coding principles for mobile code by declaring a member variable public but not final.
All public member variables in an Applet and in classes used by an Applet should be declared final to prevent an attacker from manipulating or gaining unauthorized access to the internal state of the Applet.
For more details about mobile code and its security concerns, please see Category:Unsafe Mobile Code.
Risk Factors
TBD
Examples
The following Java Applet code mistakenly declares a member variable public but not final.
public final class urlTool extends Applet { public URL url; ... }
Related Attacks
Related Vulnerabilities
Related Controls
Related Technical Impacts
References
TBD