Skip to content

Commit

Permalink
add additional ATT&CK info to suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
mikecarenzo committed Aug 24, 2023
1 parent bf3c960 commit 328c3e8
Show file tree
Hide file tree
Showing 3 changed files with 1,066 additions and 1,062 deletions.
4 changes: 2 additions & 2 deletions src/attack_flow_builder/attack/update_attack_intel.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ async function updateApplicationAttackIntel(path, ...urls) {
console.log("→ Generating Application Intel File...");
let intel = {
tactics : types.get("tactic"),
tactic_recs : types.get("tactic").map(o => o.id).sort(),
tactic_recs : types.get("tactic").map(o => `${o.id} (${o.matrix.split(/\s+/)[0]} / ${o.name})`).sort(),
technique : types.get("technique"),
technique_recs : types.get("technique").map(o => o.id).sort()
technique_recs : types.get("technique").map(o => `${o.id} (${o.name})`).sort()
};

// Generate intel file
Expand Down
Loading

0 comments on commit 328c3e8

Please sign in to comment.