Skip to main content

CWE-103: Struts: Incomplete validate() Method Definition

VariantDraft

The product has a validator form that either does not define a validate() method, or defines a validate() method but does not call super.validate().

View on MITRE
Back to CWE Lookup

Extended Description

If the code does not call super.validate(), the Validation Framework cannot check the contents of the form against a validation form. In other words, the validation framework will be disabled for the given form.

Technical Details

Structure
Simple

Applicable To

Languages
Java
Platforms

Frequently Asked Questions

What is CWE-103: Struts: Incomplete validate() Method Definition?+

CWE-103: Struts: Incomplete validate() Method Definition is a Common Weakness Enumeration (CWE) entry maintained by MITRE. The product has a validator form that either does not define a validate() method, or defines a validate() method but does not call super.validate(). If the code does not call super.validate(), the Validation Framework cannot check the contents of the form against a validation form. In other words, the validation framework will be disabled for the given form.

What are the security consequences of Struts: Incomplete validate() Method Definition?+

If exploited, CWE-103 (Struts: Incomplete validate() Method Definition) it can compromise Other, Confidentiality, Integrity and Availability, leading to outcomes such as Other.

How do you prevent or mitigate Struts: Incomplete validate() Method Definition?+

Recommended mitigations for CWE-103 include: Implement the validate() method and call super.validate() within that method.

Which programming languages are affected by Struts: Incomplete validate() Method Definition?+

CWE-103 commonly affects Java. Note that weaknesses are often language-agnostic patterns, so secure coding practices apply broadly.

What is the difference between a CWE and a CVE?+

A CWE (Common Weakness Enumeration) like CWE-103 describes a category of software weakness — the underlying flaw type. A CVE (Common Vulnerabilities and Exposures) identifies a specific, real-world vulnerability in a particular product. In short, a CWE is the kind of mistake, and a CVE is an instance of that mistake being found in software.

Learn More