We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0465acc commit 74a0f99Copy full SHA for 74a0f99
mitre_attack_csv.py
@@ -76,6 +76,7 @@ def tohtml(s):
76
assert mitre_id!="",f"Didn't find a mitre id for {t}"
77
78
name = t['name'] if 'name' in t else ""
79
+ name = tohtml(name)
80
platforms = t['x_mitre_platforms'] if 'x_mitre_platforms' in t else []
81
kill_chain_phases = t['kill_chain_phases'] if 'kill_chain_phases' in t else []
82
kill_chain_phases = [tactics[x['phase_name']] for x in kill_chain_phases if x['kill_chain_name']=="mitre-attack"]
0 commit comments