BF Memory Use (MUS) Class

Definition

Memory Use (MUS) class – An object is initialized, read, written, or cleared improperly.

Taxonomy

OperationsDefinition
Initialize ObjectInitialize Object operation – Change the undefined data value of an object to a meaningful one – e.g., after an object is allocated.
ReadRead operation – Retrieve the data value of an object from memory.
WriteWrite operation – Change the data value of an object in memory to another meaningful value.
ClearClear operation – Change the meaningful data value of an object to a non-meaningful one (e.g., via zeroization) – e.g., before object deallocation.
OperandsDefinition
DataData operand – The data value of an object – i.e., the actual value that is stored in memory.
AddressAddress operand attribute – The memory address for an object. Its value is data of another object -- the object's pointer, used to reference and traverse it.
SizeSize operand – The memory size of an object – the number of bytes allocated for an object in memory. Its value is contained by (is data of) of another object.
CausesDefinition
Code BugCode Bug type – An error in the implementation of an operation – proper operands over an improper operation. A first cause for the chain of weaknesses underlying a software security vulnerability. Must be fixed to resolve the vulnerability.
   Missing CodeMissing Code bug - The operation is entirely absent.
   Erroneous CodeErroneous Code bug - There is a coding error in the implementation of the operation.
Data FaultData Fault/Error type – The data of an object has harmed semantics or inconsistent or wrong value.
   NULL PointerNULL Pointer fault/error – The pointer does not point to a valid object; usually holds the zero memory address.
   Forbidden AddressForbidden Address fault/error – The pointer holds an OS protected address or a non-existing address.
   Wrong SizeWrong Size fault/error – The value used as size or length (i.e., the number of elements) does not match an object's memory size or length (e.g., to limit a pointer reposition or index increment/decrement in a repetition statement).
Type FaultType Fault/Error type – The set or range of allowed values of an entity is wrong or the operations allowed on them are wrong.
   Cast PointerCast Pointer fault/error – A pointer is type cast to a data type that is incompatible with its object's data type.
Address FaultAddress Fault/Error type – The address of an object is wrong.
   Wild PointerWild Pointer fault/error – Holds an arbitrary address, because it has not been initialized or an erroneous allocation routine is used.
   Dangling PointerDangling Pointer fault/error – Still holds the address of its successfully deallocated object (e.g., a pointer to a freed heap object or address of a stack object returned by a function).
   Untrusted PointerUntrusted Pointer fault/error – The pointer is modified to an improperly checked address.
   Overbound PointerOverbound Pointer fault/error – Holds an address that is above the upper boundary of its object.
   Underbound PointerUnderbound Pointer fault/error – Holds an address that is below the lower boundary of its object.
   Wrong Position PointerWrong Position Pointer fault/error – Holds the address of a miscalculated position inside its object bounds.
Size FaultType Fault/Error type – The set or range of allowed values of an entity is wrong or the operations allowed on them are wrong.
   Insufficient SizeInsufficient Size fault/error – The allocated memory is too little for the data it should store.
ConsequencesDefinition
Data ErrorData Fault/Error type – The data of an object has harmed semantics or inconsistent or wrong value.
   Uninitialized ObjectUninitialized Object fault/error – The object was never assigned a meaningful value.
Memory Corruption/Disclosure Final ErrorMemory Corruption/Disclosure final error type – An exploitable or undefined system behavior caused by memory addressing, allocation, use, or deallocation bugs.
   Not Cleared ObjectNot Cleared Object final error – An object's data value is not changed to a non-meaningful one before deallocation.
   Object CorruptionObject Corruption final error – An object's data value is unintentionally altered.
   Type ConfusionType Confusion final error – A casted pointer and its object have incompatible data types.
   Use After Deallocateuse after free or use after return) final error – An attempt to use (dereference, read, write, or clear) a deallocated object (e.g., via a pointer to a freed or reallocated heap object -- use after free) or out of scope object (e.g., via a returned by a function pointer to a stack object -- use after return).
   Buffer OverflowBuffer Overflow final error – Write data above the upper bound of an object (i.e., buffer overwrite).
   Buffer UnderflowBuffer Underflow final error – Write data below the lower bound of an object (i.e., buffer under-write).
   Buffer Over-ReadBuffer Over-Read final error – Read data above the upper bound of an object.
   Buffer Under-ReadBuffer Under-Read final error – Read data below the lower bound of an object.
Operations AttributesDefinition
MechanismMechanism operation attribute type – Shows how the operation the operation with a bug or faulty operand is performed.
   DirectDirect operation attribute – The operation is on a particular object element.
   SequentialSequential operation attribute – The operation is via iterating over the object elements.
Source CodeSource Code operation attribute type – Shows where the code of the operation with a bug or faulty operand resides within the software, firmware, or hardware.
   CodebaseCodebase operation attribute – The operation is in the programmer's code - in the application itself.
   Third-PartyThird-Party operation attribute – The operation code is in a third-party source.
   Standard LibraryStandard Library operation attribute – The operation code is in the standard library for a particular programming language.
   Compiler/InterpreterCompiler/Interpreter operation attribute – The operation code is in the language processor that allows execution or creates executables (interpreter, compiler, assembler).
Execution SpaceExecution Space operation attribute type – Shows where the operation with a bug or faulty operand is executed and the privilege level at which it runs.
   UserlandUserland operation attribute – The bugged code runs in an environment with privilege levels, but in unprivileged mode (e.g., ring 3 in x86 architecture).
   KernelKernel operation attribute – The bugged code runs in an environment with privilege levels with access privileged instructions (e.g., ring 0 in x86 architecture).
   Bare-MetalBare-Metal operation attribute – The bugged code runs in an environment without privilege control. Usually, the program is the only software running and has total access to the hardware.
Operands AttributesDefinition
         Address KindAddress Kind operand attribute type - Shows how much memory is accessed (i.e., the span) outside the bounds of an object.
            Huge
            Moderate
            Little
         Address StateAddress State operand attribute type – Shows where the address is (i.e., its location) in the memory layout.
            Stack
            Heap
            /other/
         Size KindSize Kind operand attribute type – Shows what is used as the size or length (i.e., the number of elements) of an object - e.g., as the limit for traversal over the elements.
            ActualActual operand attribute – The real size or length (i.e., the number of elements) of the allocated memory for an object.
            UsedUsed operand attribute – A supplied value to be used as the size or length (i.e., the number of elements) of an object.