mirror of
https://github.com/DISARMFoundation/DISARMframeworks.git
synced 2024-12-25 23:39:48 -05:00
17 lines
471 B
Python
17 lines
471 B
Python
from stix2 import Identity
|
|
|
|
|
|
def make_disarm_identity():
|
|
"""Creates the default DISARM identity used for indicating authorship of various components in the bundle.
|
|
|
|
Returns:
|
|
identity: a STIX Identity object
|
|
|
|
"""
|
|
identity = Identity(
|
|
name="DISARM Foundation",
|
|
identity_class="organization",
|
|
description="DISARM is a framework designed for describing and understanding disinformation incidents.",
|
|
)
|
|
return [identity]
|