Enriched Indicator
psengine.stix2.enriched_indicator.EnrichedIndicator
¶
EnrichedIndicator(
name: str,
type_: str,
evidence_details: list,
link_hits: list = None,
risk_mapping: list = None,
ai_insights: dict = None,
author: Identity = None,
confidence: int = None,
create_indicator: bool = True,
create_obs: bool = True,
tlp_marking: str = 'amber',
)
Bases: IndicatorEntity
Class for converting Indicator + risk score + links to OpenCTI bundle.
RAISES | DESCRIPTION |
---|---|
STIX2TransformError
|
If transformation fails. |
PARAMETER | DESCRIPTION |
---|---|
name
|
An indicator value.
TYPE:
|
type_
|
A Recorded Future type of indicator.
TYPE:
|
evidence_details
|
Risk rules and evidence details.
TYPE:
|
link_hits
|
A list of lists for link hits.
TYPE:
|
risk_mapping
|
A risk rule to TTP mapping.
TYPE:
|
ai_insights
|
AI insights for IOC in Recorded Future.
TYPE:
|
author
|
A Recorded Future Identity.
TYPE:
|
confidence
|
A confidence score of the indicator.
TYPE:
|
create_indicator
|
A flag that governs if the indicator should be created.
TYPE:
|
create_obs
|
A flag that governs if the observable should be created.
TYPE:
|
tlp_marking
|
The TLP level. Defaults to amber.
TYPE:
|