mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-23 06:42:21 +02:00
21 lines
669 B
Python
21 lines
669 B
Python
# This file is Copyright 2025 Volatility Foundation and licensed under the Volatility Software License 1.0
|
|
# which is available at https://www.volatilityfoundation.org/license/vsl-v1.0
|
|
#
|
|
import logging
|
|
from volatility3.framework import interfaces, deprecation
|
|
from volatility3.plugins.linux.malware import check_syscall
|
|
|
|
vollog = logging.getLogger(__name__)
|
|
|
|
|
|
class Check_syscall(
|
|
interfaces.plugins.PluginInterface,
|
|
deprecation.PluginRenameClass,
|
|
replacement_class=check_syscall.Check_syscall,
|
|
removal_date="2026-06-07",
|
|
):
|
|
"""Check system call table for hooks (deprecated)."""
|
|
|
|
_required_framework_version = (2, 0, 0)
|
|
_version = (1, 0, 0)
|