Upload files to "Modules/Knowledge/SOC"
This commit is contained in:
27
Modules/Knowledge/SOC/security_best_practices.py
Normal file
27
Modules/Knowledge/SOC/security_best_practices.py
Normal 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.
|
||||
"""
|
||||
}
|
||||
]
|
Reference in New Issue
Block a user