Upload files to "Modules/Knowledge/SANS"

This commit is contained in:
2024-11-30 00:53:02 -05:00
parent 74c0aaafcf
commit fb30aeb51f
8 changed files with 302 additions and 0 deletions

View File

@ -0,0 +1,27 @@
def get_content():
"""
Returns structured content for network defense strategies and tools.
"""
return [
{
"title": "Web Proxy Types",
"content": """
- Open Source: Squid, Nginx, Apache Traffic Server.
- Commercial: Symantec Web Filter, Forcepoint, Zscaler.
"""
},
{
"title": "NetFlow and IPFIX",
"content": """
- Session data for L3/L4 troubleshooting.
- Enables rapid detection without full packet captures.
"""
},
{
"title": "SOC Essentials",
"content": """
- Functions: Detection, Auditing, Response, Operations/Maintenance.
- Outsourcing vs. internal teams: Benefits and trade-offs.
"""
}
]