mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-29 19:29:42 +02:00
22 lines
652 B
Python
22 lines
652 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 deprecation, interfaces
|
|
from volatility3.plugins.windows.registry import cachedump
|
|
|
|
vollog = logging.getLogger(__name__)
|
|
|
|
|
|
class Cachedump(
|
|
interfaces.plugins.PluginInterface,
|
|
deprecation.PluginRenameClass,
|
|
replacement_class=cachedump.Cachedump,
|
|
removal_date="2026-09-25",
|
|
):
|
|
"""Dumps lsa secrets from memory (deprecated)"""
|
|
|
|
_required_framework_version = (2, 0, 0)
|
|
_version = (1, 0, 2)
|