Skip to content

Commit a6cdb6d

Browse files
committed
Adds support for MITRE ATT&CK References
1 parent 256ad33 commit a6cdb6d

20 files changed

+1413
-17
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# frozen_string_literal: true
2+
3+
module Msf
4+
module Mitre
5+
module Attack
6+
module Categories
7+
PATHS = {
8+
'TA' => 'tactics',
9+
'DS' => 'datasources',
10+
'S' => 'software',
11+
'M' => 'mitigations',
12+
'A' => 'assets',
13+
'G' => 'groups',
14+
'C' => 'campaigns',
15+
'T' => 'techniques'
16+
}.freeze
17+
end
18+
end
19+
end
20+
end

0 commit comments

Comments
 (0)