Skip to content

Commit 714fc16

Browse files
committed
fix: [stix2 import] Fixed registry key values mapping name
- Following 596143e where we fixed the mapping in the parent mapping, but we forgot to change it also in the indicators mapping
1 parent cf5cb0f commit 714fc16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

misp_stix_converter/stix2misp/converters/stix2_indicator_converter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1415,7 +1415,7 @@ def reddit_account_pattern_mapping(cls, field: str) -> Union[dict, None]:
14151415
@classmethod
14161416
def registry_key_values_pattern_mapping(
14171417
cls, field: str) -> Union[dict, None]:
1418-
return cls.registry_key_values_mapping().get(field)
1418+
return cls.registry_key_values_object_mapping().get(field)
14191419

14201420
@classmethod
14211421
def sigma_object_mapping(cls) -> dict:

0 commit comments

Comments
 (0)