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,33 @@
def get_content():
"""
Returns structured content for client-side exploitation techniques.
"""
return [
{
"title": "Common Client-Side Attack Vectors",
"content": """
- Web browsers, browser extensions.
- Document and image rendering applications.
"""
},
{
"title": "Common File Format Attacks",
"content": """
- Exploits weaknesses in how applications handle file requests.
- Examples: PDF, DOC(X), RTF, WMF.
"""
},
{
"title": "Malvertising",
"content": """
- Injecting malicious code into trusted websites.
"""
},
{
"title": "Phishing",
"content": """
- Goals: Click a link, open an attachment.
- Vectors: Emails with malicious attachments (e.g., PDF, DOC(X), WMF).
"""
}
]