forked from p15670423/monkey
island: Go through internal config when generating reverse schema for unscanned attack techniques' reasons
This commit is contained in:
parent
80811334d7
commit
7bdbdb1bfb
|
@ -25,6 +25,21 @@ def get_config_schema_per_attack_technique(schema: Dict) -> Dict[str, Dict[str,
|
|||
definition_type, config_field, attack_technique, reverse_schema
|
||||
)
|
||||
|
||||
properties = schema["properties"]
|
||||
for prop in properties:
|
||||
property_type = properties[prop]["title"]
|
||||
for tab_name in properties[prop]["properties"]:
|
||||
tab = properties[prop]["properties"][tab_name]
|
||||
for config_option_name in tab["properties"]:
|
||||
config_option = tab["properties"][config_option_name]
|
||||
for attack_technique in config_option.get("related_attack_techniques", []):
|
||||
# No config values could be a reason that related attack techniques are left
|
||||
# unscanned. See https://github.com/guardicore/monkey/issues/1518 for more.
|
||||
config_field = f"{config_option['title']} ({tab['title']})"
|
||||
_add_config_field_to_reverse_schema(
|
||||
property_type, config_field, attack_technique, reverse_schema
|
||||
)
|
||||
|
||||
return reverse_schema
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue