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"

From OWASP
Jump to: navigation, search
(Description)
Line 14: Line 14:
 
==Description==
 
==Description==
  
 +
 +
===Access Violation===
 
The program violates secure coding principles for mobile code by returning a private array variable from a public access method.
 
The program violates secure coding principles for mobile code by returning a private array variable from a public access method.
  
Line 19: Line 21:
  
 
For more details about what is mobile code and its security concerns, please see [[:Category:Unsafe Mobile Code]].
 
For more details about what is mobile code and its security concerns, please see [[:Category:Unsafe Mobile Code]].
 
  
 
==Risk Factors==
 
==Risk Factors==

Revision as of 16:32, 17 February 2009

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): 02/17/2009


Description

Access Violation

The program violates secure coding principles for mobile code by returning a private array variable from a public access method.

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.

Risk Factors

  • Talk about the factors that make this vulnerability likely or unlikely to actually happen
  • Discuss the technical impact of a successful exploit of this vulnerability
  • Consider the likely [business impacts] of a successful attack


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;
		}
			...
	}


Related Attacks


Related Vulnerabilities


Related Controls

Related Technical Impacts


References

TBD