CWE-1054 – Invocation of a Control Element at an Unnecessarily Deep Horizontal Layer
Description The code at one architectural layer invokes code that resides at a deeper layer than the adjacent layer, i.e., the invocation skips at least...
CWE-1055 – Multiple Inheritance from Concrete Classes
Description The software contains a class with inheritance from more than one concrete class. Modes of Introduction: Related Weaknesses CWE-1093 Consequences Other:...
CWE-1056 – Invokable Control Element with Variadic Parameters
Description A named-callable or method control element has a signature that supports a variable (variadic) number of parameters or arguments. Modes of Introduction: ...
CWE-1057 – Data Access Operations Outside of Expected Data Manager Component
Description The software uses a dedicated, central data manager component as required by design, but it contains code that performs data-access operations that do not...
CWE-1058 – Invokable Control Element in Multi-Thread Context with non-Final Static Storable or Member Element
Description The code contains a function or method that operates in a multi-threaded environment but owns an unsafe non-final static storable or member data element....
CWE-1059 – Insufficient Technical Documentation
Description The product does not contain sufficient technical or engineering documentation (whether on paper or in electronic form) that contains descriptions of all the relevant...
CWE-106 – Struts: Plug-in Framework not in Use
Description When an application does not use an input validation framework such as the Struts Validator, there is a greater risk of introducing weaknesses related...
CWE-1060 – Excessive Number of Inefficient Server-Side Data Accesses
Description The software performs too many data queries without using efficient data processing functionality such as stored procedures. Modes of Introduction: Related Weaknesses...
CWE-1061 – Insufficient Encapsulation
Description The software does not sufficiently hide the internal representation and implementation details of data or methods, which might allow external components or modules to...
CWE-1062 – Parent Class with References to Child Class
Description The code has a parent class that contains references to a child class, its methods, or its members. Modes of Introduction: Related...