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 17:27, 21 July 2006 by Weilin Zhong (talk | contribs) (Contents provided by Fortify.)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

This is a Vulnerability. To view all vulnerabilities, please see the Vulnerability Category page.

This article includes content generously donated to OWASP by MicroFocus Logo.png

Abstract

The program violates secure coding principles for mobile code by declaring a member variable public but not final.

Description

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.

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 Threats

Related Attacks

Related Vulnerabilities

Related Countermeasures

Categories