Upload files to "Modules/Knowledge/MITRE"
This commit is contained in:
27
Modules/Knowledge/MITRE/mitre_attack_framework.py
Normal file
27
Modules/Knowledge/MITRE/mitre_attack_framework.py
Normal file
@ -0,0 +1,27 @@
|
||||
def get_content():
|
||||
"""
|
||||
Returns structured content for the MITRE ATT&CK Framework.
|
||||
"""
|
||||
return [
|
||||
{
|
||||
"title": "Overview",
|
||||
"content": """
|
||||
- Framework for categorizing adversary tactics and techniques.
|
||||
- Based on real-world observations.
|
||||
"""
|
||||
},
|
||||
{
|
||||
"title": "Persistence Categories",
|
||||
"content": """
|
||||
- Registry Keys, Scheduled Tasks.
|
||||
- Services, Startup Folders.
|
||||
"""
|
||||
},
|
||||
{
|
||||
"title": "Application",
|
||||
"content": """
|
||||
- Helps identify TTPs used in attacks.
|
||||
- Aligns defensive strategies with adversary behavior.
|
||||
"""
|
||||
}
|
||||
]
|
Reference in New Issue
Block a user