Skip to content

Commit 74a0f99

Browse files
authored
Update mitre_attack_csv.py
1 parent 0465acc commit 74a0f99

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

mitre_attack_csv.py

+1
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ def tohtml(s):
7676
assert mitre_id!="",f"Didn't find a mitre id for {t}"
7777

7878
name = t['name'] if 'name' in t else ""
79+
name = tohtml(name)
7980
platforms = t['x_mitre_platforms'] if 'x_mitre_platforms' in t else []
8081
kill_chain_phases = t['kill_chain_phases'] if 'kill_chain_phases' in t else []
8182
kill_chain_phases = [tactics[x['phase_name']] for x in kill_chain_phases if x['kill_chain_name']=="mitre-attack"]

0 commit comments

Comments
 (0)