-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
new: [detection-engineering] new taxonomy to describe detection-engin…
…eering pattern
- Loading branch information
Showing
1 changed file
with
38 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{ | ||
"namespace": "detection-engineering", | ||
"description": "Taxonomy related to detection engineering techniques", | ||
"version": 1, | ||
"expanded": "Detection engineering", | ||
"predicates": [ | ||
{ | ||
"value": "pattern-matching", | ||
"expanded": "Pattern matching", | ||
"description": "Describe the cardinality of patterns matching." | ||
} | ||
], | ||
"values": [ | ||
{ | ||
"predicate": "pattern-matching", | ||
"entry": [ | ||
{ | ||
"value": "high", | ||
"expanded": "high", | ||
"description": "A high number of patterns detected in the tagged item.", | ||
"numerical_value": 100 | ||
}, | ||
{ | ||
"value": "medium", | ||
"expanded": "medium", | ||
"description": "A medium number of patterns detected in the tagged item.", | ||
"numerical_value": 50 | ||
}, | ||
{ | ||
"value": "low", | ||
"expanded": "low", | ||
"description": "A low number of patterns detected in the tagged item.", | ||
"numerical_value": 25 | ||
} | ||
] | ||
} | ||
] | ||
} |