-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2062362
commit c253e3b
Showing
4 changed files
with
82 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
"caption": "Threat Actor", | ||
"description": "Threat actor is responsible for the observed malicious activity.", | ||
"extends": "object", | ||
"name": "threat_actor", | ||
"attributes": { | ||
"name": { | ||
"description": "The name of the threat actor.", | ||
"requirement": "optional" | ||
}, | ||
"type": { | ||
"caption": "Threat Actor Type", | ||
"description": "The classification of the threat actor based on their motivations, capabilities, or affiliations. Common types include nation-state actors, cybercriminal groups, hacktivists, or insider threats.", | ||
"requirement": "optional" | ||
}, | ||
"type_id": { | ||
"caption": "Threat Actor Type ID", | ||
"description": "The normalized datastore resource type identifier.", | ||
"requirement": "recommended", | ||
"enum": { | ||
"0": { | ||
"caption": "Unknown", | ||
"description": "The threat actor type is unknown." | ||
}, | ||
"1": { | ||
"caption": "Nation-state" | ||
}, | ||
"2": { | ||
"caption": "Cybercriminal" | ||
}, | ||
"3": { | ||
"caption": "Hacktivists" | ||
}, | ||
"4": { | ||
"caption": "Insider" | ||
}, | ||
"99": { | ||
"caption": "Other", | ||
"description": "The threat actor type is not mapped." | ||
} | ||
} | ||
} | ||
} | ||
} |