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,25 @@
def get_content():
"""
Returns structured content for case studies and specific incidents.
"""
return [
{
"title": "Golden Ticket Attack",
"content": """
- Resolution: Change `krbtgt` account password twice.
"""
},
{
"title": "SQL Injection Defense",
"content": """
- Parameterized queries as the most effective mitigation.
"""
},
{
"title": "Cloud Security Issues",
"content": """
- Misconfigured buckets: Files can be enumerated and downloaded.
- IMDSv2: Mitigates SSRF exploitation.
"""
}
]