30 lines
997 B
Python
30 lines
997 B
Python
def get_content():
|
|
"""
|
|
Returns structured content focusing on cybersecurity as a business decision.
|
|
"""
|
|
return [
|
|
{
|
|
"title": "Cybersecurity as a Business Decision",
|
|
"content": """
|
|
- Seen more as a cost than an investment.
|
|
- Enables business functions but is often treated as separate from business infrastructure.
|
|
"""
|
|
},
|
|
{
|
|
"title": "The Reality of Security Analysts",
|
|
"content": """
|
|
- Shortage of skilled professionals.
|
|
- High burnout rates in L1 SOC analyst roles.
|
|
- Overwhelmed by data, tools, and lack of actionable insights.
|
|
"""
|
|
},
|
|
{
|
|
"title": "Autonomous SOC Expectations",
|
|
"content": """
|
|
- Fully autonomous SOCs are unrealistic.
|
|
- SOC analysts need creativity to solve problems and handle manual tasks effectively.
|
|
- Agile/DevOps approaches are being implemented in 84% of organizations to improve processes.
|
|
"""
|
|
}
|
|
]
|