Skip to content

Commit

Permalink
limit tactic and technique suggestions to ID only
Browse files Browse the repository at this point in the history
  • Loading branch information
mikecarenzo committed Aug 22, 2023
1 parent de178e3 commit 795dd87
Show file tree
Hide file tree
Showing 2 changed files with 1,060 additions and 1,060 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} - ${o.name} (${o.matrix})`).sort(),
tactic_recs : types.get("tactic").map(o => o.id).sort(),
technique : types.get("technique"),
technique_recs : types.get("technique").map(o => `${o.id} - ${o.name}`).sort()
technique_recs : types.get("technique").map(o => o.id).sort()
};

// Generate intel file
Expand Down
Loading

0 comments on commit 795dd87

Please sign in to comment.