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 Array Declaration

From OWASP
Revision as of 17:25, 21 July 2006 by Weilin Zhong (talk | contribs) (Contents from 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 an array public, final and static.

Description

In most cases an array declared public, final and static is a bug. Because arrays are mutable objects, the final constraint requires that the array object itself be assigned only once, but makes no guarantees about the values of the array elements. Since the array is public, a malicious program can change the values stored in the array. In most situations the array should be made private.

For more details about mobile code and its security concerns, please see Category:Unsafe Mobile Code.

Examples

The following Java Applet code mistakenly declares an array public, final and static.

	public final class urlTool extends Applet {
		public final static URL[] urls;
		...
	}

Related Threats

Related Attacks

Related Vulnerabilities

Related Countermeasures

Categories