Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Edited by NavBot (jp)

Wiki Markup
According to \[[JLS Section 8.4.8.3, Requirements in Overriding and Hiding|http://java.sun.com/docs/books/jls/third_edition/html/classes.html#8.4.8.3]\]:

"The access modifier of an overriding or hiding method must provide at least as much access as the overridden or hidden method, or a compile-time error occurs."

The allowed accesses are:

Overridden/hidden method modifier

Overriding/hiding method modifier

public

public

protected

protected or public

default

default or protected or private

private

anything but private

This also means that there is potential for some functionality having a restrictive modifier to be overridden by a less restrictive modifier.

Noncompliant Code Example

This noncompliant code example exemplifies how a malicious subclass Sub can override the doLogic method of the super class. Any user of Sub will be able to invoke the doLogic method even though the base class BadScope defined it with the private access modifier.

Code Block
bgColor#FFcccc
class BadScope {
  private void doLogic() {System.out.println("Super invoked");}
}

public class Sub extends BadScope {
  public void doLogic() {System.out.println("Sub invoked");
  //do restrictive operations
  }
}

Compliant Solution

Do not override a method unless absolutely necessary. Declare all methods and fields final to avoid malicious subclassing. This is in compliance with <xyz rule>

Code Block
bgColor#ccccff
class BadScope {
  private final void doLogic() {System.out.println("Super invoked");}
}

Risk Assessment

Subclassing allows access restrictions to be weakened, possibly compromising the security of a Java application.

Rule

Severity

Likelihood

Remediation Cost

Priority

Level

SCP01-J

medium

probable

high

P4

L3

Automated Detection

TODO

Related Vulnerabilities

Search for vulnerabilities resulting from the violation of this rule on the CERT website.

References

Wiki Markup
\[[JLS 05|AA. Java References#JLS 05]\] [Section 8.4.8.3, Requirements in Overriding and Hiding|http://java.sun.com/docs/books/jls/third_edition/html/classes.html#8.4.8.3]


SCP00-J. Use as minimal scope as possible for all variables and methods      03. Scope (SCP)      SCP02-J. Use nested classes carefully