Skip to content

Commit 9ddf2d9

Browse files
committed
refs
1 parent fc7e13f commit 9ddf2d9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

volatility3/framework/plugins/windows/etwpatch.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
vollog = logging.getLogger(__name__)
1313

1414

15+
# EtwpEventWriteFull -> https://github.com/SolitudePy/Stealthy-ETW-Patch
16+
# CAPA rule -> https://github.com/mandiant/capa-rules/blob/master/anti-analysis/anti-av/patch-event-tracing-for-windows-function.yml
1517
class EtwPatch(interfaces.plugins.PluginInterface):
1618
"""Identifies ETW (Event Tracing for Windows) patching techniques used by malware to evade detection.
1719
@@ -80,7 +82,6 @@ def _generator(self):
8082
kernel_module_name=self.config["kernel"],
8183
filter_func=filter_func,
8284
):
83-
8485
try:
8586
proc_id = proc.UniqueProcessId
8687
proc_name = utility.array_to_string(proc.ImageFileName)

0 commit comments

Comments
 (0)