mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-17 20:35:40 +02:00
10 lines
310 B
Python
10 lines
310 B
Python
"""All Windows OS plugins"""
|
|
|
|
import os
|
|
|
|
from volatility.framework import constants
|
|
|
|
# This is necessary to ensure the core plugins are available, whilst still be overridable
|
|
plugin_path_components = __name__.split('.')[2:]
|
|
__path__ = [os.path.join(x, *plugin_path_components) for x in constants.PLUGINS_PATH]
|