Upload files to "Modules/Knowledge/Malware"
This commit is contained in:
26
Modules/Knowledge/Malware/malware_analysis.py
Normal file
26
Modules/Knowledge/Malware/malware_analysis.py
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
def get_content():
|
||||||
|
"""
|
||||||
|
Returns structured content for malware analysis and response.
|
||||||
|
"""
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
"title": "File Analysis Tools",
|
||||||
|
"content": """
|
||||||
|
- Tools: Volatility, Cuckoo Sandbox, MalwareBazaar.
|
||||||
|
- Snapshot analysis highlights changes post-execution.
|
||||||
|
"""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "Indicators and Artifacts",
|
||||||
|
"content": """
|
||||||
|
- Prefetch: Tracks execution times and paths.
|
||||||
|
- Amcache: Logs SHA-1 hashes and execution metadata.
|
||||||
|
"""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "Persistence Mechanisms",
|
||||||
|
"content": """
|
||||||
|
- Common Techniques: Scheduled Tasks, Registry Keys, Startup Folders, Services.
|
||||||
|
"""
|
||||||
|
}
|
||||||
|
]
|
27
Modules/Knowledge/Malware/malware_persistence.py
Normal file
27
Modules/Knowledge/Malware/malware_persistence.py
Normal 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.
|
||||||
|
"""
|
||||||
|
}
|
||||||
|
]
|
Reference in New Issue
Block a user