-
Notifications
You must be signed in to change notification settings - Fork 16
Proposal: Deprecate MAEC Candidate Indicators in Favor of STIX Indicators
Status: Open
Comment Period Closes:
Affects Backwards Compatibility: Yes
Relevant Issues: https://github.com/MAECProject/schemas/issues/84
There are currently two separate structures for Indicators: MAEC Candidate Indicators and STIX Indicators. Each is intended to accomplish a different goal: a MAEC Candidate Indicator references the MAEC entities - Behaviors, Actions, and CybOX Objects - that may be relevant to detecting a particular malware instance, while a STIX Indicator is inherently a mapping between a specific set of observable conditions (the “observable pattern”, comprised of CybOX Objects and/or Events) and some sort of adversary modus operandi (the TTP). Although each construct serves its own purpose, having two separate Indicator-related structures is redundant and potentially confusing for MAEC and STIX users.
This proposal is related to the following proposed change to the schema: https://github.com/MAECProject/schemas/wiki/Proposal:-Make-Collections-Top-Level-Entities
Rather than defining MAEC Candidate Indicators, we propose populating STIX TTPs directly with information on Actions and Behaviors. Note that this will require modification to STIX TTPs so that they allow references to MAEC-derived malware data (i.e., Actions and Behaviors).
Indicator patterns for malware artifacts (e.g., files and registry keys) would be captured in STIX, not in MAEC, through the use of the existing Indicator:IndicatorType
structure.
To continue to allow MAEC users to tag data as a potential indicator, without needing a full Indicator structure, a MAEC Collection could be used. The Collection-related maecVocabs:CollectionEntityTypeEnum
that defines the Collection entity_type
field would include a "potential indicator" value.
Accordingly, the following types in the MAEC Bundle schema would be deprecated:
CandidateIndicatorType
CandidateIndicatorListType
CandidateIndicatorCompositionType
CandidateIndicatorCollectionType
CandidateIndicatorCollectionListType
<Collection id="collection-1" entity_type="potential indicator">
<Name>Example Potential Indicator Collection</Name>
<Entity_Reference entity_id="action-1"/>
<Entity_Reference entity_id="action-2"/>
<Entity_Reference entity_id="behavior-1"/>
</Collection>
This change will not be backward compatible and is one of several revisions planned in the new major version.
- Should MAEC Candidate Indicators be deprecated in favor of using STIX Indicators?
- Should potential Indicators be captured in MAEC Collections?
- If so, should the
entity_type
field of a Collection be specified with the value "potential indicator"? - How should STIX TTPs be modified to capture MAEC-derived data?