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: Dangerous Array Declaration"

From OWASP
Jump to: navigation, search
Line 2: Line 2:
 
{{Template:Fortify}}
 
{{Template:Fortify}}
  
[[Category:FIXME|This is the text from the old template. This needs to be rewritten using the new template, and needs review]]
+
__TOC__
 +
 
 +
[[ASDR Table of Contents]]
 +
 
 +
 
  
 
Last revision (mm/dd/yy): '''{{REVISIONMONTH}}/{{REVISIONDAY}}/{{REVISIONYEAR}}'''
 
Last revision (mm/dd/yy): '''{{REVISIONMONTH}}/{{REVISIONDAY}}/{{REVISIONYEAR}}'''
  
[[ASDR_TOC_Vulnerabilities|Vulnerabilities Table of Contents]]
+
[[Category:FIXME|This is the text from the old template. This needs to be rewritten using the new template, and needs review]]
 
 
[[ASDR Table of Contents]]
 
__TOC__
 
  
  
Line 76: Line 77:
 
[[Category:Code Snippet]]
 
[[Category:Code Snippet]]
 
[[Category: Authorization Vulnerability]]
 
[[Category: Authorization Vulnerability]]
 +
[[Category:Vulnerability]]

Revision as of 14:21, 9 November 2008

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

ASDR Table of Contents


Last revision (mm/dd/yy): 11/9/2008


Description

The program violates secure coding principles for mobile code by declaring an array public, final and static.

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.


Risk Factors

TBD

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 Attacks


Related Vulnerabilities


Related Controls


Related Technical Impacts


References

TBD