Source code for volatility3.plugins.linux.envars

from volatility3.plugins.linux import envvars
import logging

vollog = logging.getLogger(__name__)


[docs]class Envars(envvars.Envvars):
[docs] def run(self, *args, **kwargs): vollog.warning( "The linux.envars plugin has been renamed to linux.envvars and will only be accessible through the new name in a future release" ) return super().run(*args, **kwargs)