shortcut class name

This commit is contained in:
SolitudePy
2025-06-07 21:58:43 +03:00
parent 21d66839fe
commit c71fd30c8a
@@ -3,7 +3,7 @@
#
import logging
from volatility3.framework import interfaces, deprecation
from volatility3.plugins.windows import malware
from volatility3.plugins.windows.malware import unhooked_system_calls as unhooked_syscalls
vollog = logging.getLogger(__name__)
@@ -11,7 +11,7 @@ vollog = logging.getLogger(__name__)
class unhooked_system_calls(
interfaces.plugins.PluginInterface,
deprecation.PluginRenameClass,
replacement_class=malware.unhooked_system_calls.UnhookedSystemCalls,
replacement_class=unhooked_syscalls.UnhookedSystemCalls,
removal_date="2026-06-07",
):
"""Detects hooked ntdll.dll stub functions in Windows processes (deprecated)."""