Skip to content

Commit

Permalink
Merge pull request #70 from Iorpim/master
Browse files Browse the repository at this point in the history
Updated Att&ck to version 9.0
  • Loading branch information
its-a-feature committed May 11, 2021
2 parents 14b06e3 + 25ae4cc commit 75a46ef
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 28 deletions.
57 changes: 30 additions & 27 deletions mythic-docker/app/attack_parse.py
Original file line number Diff line number Diff line change
@@ -1,27 +1,30 @@
import json as js
import pprint

file = open("full_attack.json", "r")
output = open("small_attack.json", "w")
attack = js.load(file)
attack_list = []
for obj in attack["objects"]:
if obj["type"] == "attack-pattern":
t_num = "Not Found" # just an error case
for ext_ref in obj["external_references"]:
if "external_id" in ext_ref and ext_ref["source_name"] == "mitre-attack":
t_num = ext_ref["external_id"]
name = obj["name"]
os = " ".join(obj["x_mitre_platforms"])
tactics = [
x["phase_name"]
for x in obj["kill_chain_phases"]
if x["kill_chain_name"] == "mitre-attack"
]
tactics = " ".join(tactics)
# tactic = obj['kill_chain_phases'][0]['phase_name']
attack_list.append(
{"t_num": t_num, "name": name, "os": os, "tactic": tactics}
)
full_output = {"techniques": attack_list}
output.write(js.dumps(full_output))
import json as js
import pprint

file = open("full_attack.json", "r")
output = open("small_attack.json", "w")
attack = js.load(file)
attack_list = []
for obj in attack["objects"]:
if obj["type"] == "attack-pattern":
t_num = "Not Found" # just an error case
for ext_ref in obj["external_references"]:
if "external_id" in ext_ref and ext_ref["source_name"] == "mitre-attack":
t_num = ext_ref["external_id"]
name = obj["name"]
if "x_mitre_platforms" in obj: # "x_mitre_platform" is now not always present
os = " ".join(obj["x_mitre_platforms"])
else:
os = ""
tactics = [
x["phase_name"]
for x in (obj["kill_chain_phases"] if "kill_chain_phases" in obj else []) # Neither is "kill_chain_phases"
if x["kill_chain_name"] == "mitre-attack"
]
tactics = " ".join(tactics)
# tactic = obj['kill_chain_phases'][0]['phase_name']
attack_list.append(
{"t_num": t_num, "name": name, "os": os, "tactic": tactics}
)
full_output = {"techniques": attack_list}
output.write(js.dumps(full_output))
Loading

0 comments on commit 75a46ef

Please sign in to comment.