Upload files to "Modules/Knowledge/Malware"

This commit is contained in:
2024-11-30 00:53:36 -05:00
parent 27c143fdea
commit b679b5b48a
2 changed files with 53 additions and 0 deletions

View File

@ -0,0 +1,27 @@
def get_content():
"""
Returns structured content for malware persistence mechanisms.
"""
return [
{
"title": "Persistence Techniques",
"content": """
- Registry Keys, Startup Folders.
- Scheduled Tasks, Services.
"""
},
{
"title": "Indicators of Persistence",
"content": """
- Unexpected DLLs in memory or on disk.
- Scheduled tasks executing at odd times.
"""
},
{
"title": "Detection Techniques",
"content": """
- Memory forensics for hidden processes.
- Analyzing autorun entries and system services.
"""
}
]