-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add tactics, techniques, and mitigations from MITRE ATLAS #247
base: develop
Are you sure you want to change the base?
Conversation
22bc1fd
to
0d8f393
Compare
needs a few minor tweaks
|
First point makes sense. Can you clarify the second point concretely with an example? |
0d8f393
to
f9bea58
Compare
f9bea58
to
2aed8f7
Compare
Can you revert the actual ontology changes in this pull so its just the generative code. Also, were there any other additions necessary? I think you added the convenience classes I requested. |
Which ontology changes? Do you mean d3f:atlas-id, d3f:ATLASTactic, d3f:ATLASTechnique, etc? We need the Tactics, Techniques, and Mitigations to have superclasses, as they aren't ATT&CK Enterprise tactics and techniques. Keep this to group them? But remove ATLASTechnique and Tactic? What should the replacement superclasses be? I kind of want technique classes, like d3f:ReconnaissanceTechnique, to be ideally decoupled from ATT&CK Enterprise so we can reuse it as a superclass to organize techniques across all ATT&CK frameworks. :ATLASReconnaissanceTechnique a owl:Class ;
rdfs:label "Reconnaissance - ATLAS - Technique" ;
rdfs:subClassOf :ATLASTechnique,
:OffensiveTechnique,
[ a owl:Restriction ;
owl:onProperty :enables ;
owl:someValuesFrom :AML.TA0002 ] . |
Signed-off-by: Adrian Medina <[email protected]>
2aed8f7
to
04d3d58
Compare
Addresses #245
make update-atlas
command to generate mappings following example ofmake update-attack
Please help me review and correct any mistakes in this mapping, especially in the Python code I could use another pair of eyes. Thank you.