28 lines
867 B
Python
28 lines
867 B
Python
def get_content():
|
|
"""
|
|
Returns structured content for MITRE's "Summit the Pyramid" framework.
|
|
"""
|
|
return [
|
|
{
|
|
"title": "MITRE's Summit the Pyramid",
|
|
"content": """
|
|
- A framework to prioritize and address threats effectively.
|
|
- Aligns detection and response efforts with adversarial TTPs.
|
|
"""
|
|
},
|
|
{
|
|
"title": "Threat-Informed Defense",
|
|
"content": """
|
|
- Know your threats to focus detection efforts.
|
|
- Be realistic about available log sources and noise levels.
|
|
"""
|
|
},
|
|
{
|
|
"title": "Additional Resources",
|
|
"content": """
|
|
- [Red Canary: Threat Detection Report](https://redcanary.com/threat-detection-report/trends/by-industry/)
|
|
- Summit the Pyramid focuses on actionable defense strategies.
|
|
"""
|
|
}
|
|
]
|