Upload files to "Modules/Knowledge/SOC"

This commit is contained in:
2024-11-30 00:52:43 -05:00
parent c48c705ef2
commit 74c0aaafcf
5 changed files with 156 additions and 0 deletions

View File

@ -0,0 +1,27 @@
def get_content():
"""
Returns structured content for general security best practices.
"""
return [
{
"title": "Endpoint Security",
"content": """
- Application allow lists to prevent unauthorized execution.
- Multi-factor authentication for critical accounts.
"""
},
{
"title": "Network Security",
"content": """
- Default deny for outbound traffic.
- Monitor SMB and other protocols for misuse.
"""
},
{
"title": "Incident Response",
"content": """
- First steps: Verify the incident and scope its impact.
- Root cause analysis to prevent recurrence.
"""
}
]