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

Code Correctness: null Argument to equals()

From OWASP
Revision as of 17:55, 19 July 2006 by Weilin Zhong (talk | contribs)

(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 expression obj.equals(null) should always be false.

Description

The program uses the equals() method to compare an object with null. The contract of the equals() method requires this comparison to always return false[1].

Examples

Related Threats

Related Attacks

Related Vulnerabilities

Related Countermeasures

Reference

[1] Sun JavaDoc for Object. http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Object.html#equals(java.lang.Object)

Categories