CWE-1177 – Use of Prohibited Code
Description The software uses a function, library, or third party component that has been explicitly prohibited, whether by the developer or the customer. Modes of...
CWE-118 – Incorrect Access of Indexable Resource (‘Range Error’)
Description The software does not restrict or incorrectly restricts operations within the boundaries of a resource that is accessed using an index or pointer, such...
CWE-1187 – DEPRECATED: Use of Uninitialized Resource
Description This entry has been deprecated because it was a duplicate of CWE-908. All content has been transferred to CWE-908. Modes of Introduction: ...
CWE-1102 – Reliance on Machine-Dependent Data Representation
Description The code uses a data representation that relies on low-level data representation or constructs that may vary across different processors, physical machines, OSes, or...
CWE-1103 – Use of Platform-Dependent Third Party Components
Description The product relies on third-party software components that do not provide equivalent functionality across all desirable platforms. Modes of Introduction: Related Weaknesses...
CWE-1104 – Use of Unmaintained Third Party Components
Description The product relies on third-party components that are not actively supported or maintained by the original developer or a trusted proxy for the original...
CWE-1105 – Insufficient Encapsulation of Machine-Dependent Functionality
Description The product or code uses machine-dependent functionality, but it does not sufficiently encapsulate or isolate this functionality from the rest of the code. Modes...
CWE-1106 – Insufficient Use of Symbolic Constants
Description The source code uses literal constants that may need to change or evolve over time, instead of using symbolic constants. Modes of Introduction: ...
CWE-1107 – Insufficient Isolation of Symbolic Constant Definitions
Description The source code uses symbolic constants, but it does not sufficiently place the definitions of these constants into a more centralized or isolated location....
CWE-1108 – Excessive Reliance on Global Variables
Description The code is structured in a way that relies too much on using or setting global variables throughout various points in the code, instead...