From 5fabd7a04bfefcb961c7aa7c9235dc081b9d7b28 Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Sun, 23 Feb 2025 15:49:18 +0000 Subject: [PATCH] Linux: Correct partial renaming attempt - take 2 --- volatility3/framework/plugins/linux/sockstat.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/volatility3/framework/plugins/linux/sockstat.py b/volatility3/framework/plugins/linux/sockstat.py index c6487a934..adbb5d6ea 100644 --- a/volatility3/framework/plugins/linux/sockstat.py +++ b/volatility3/framework/plugins/linux/sockstat.py @@ -33,10 +33,10 @@ class SockHandlers(interfaces.configuration.VersionableInterface): self._task = task if not requirements.VersionRequirement.matches_required( - net.NetSymbols.version, self._net_version_required + network.NetSymbols.version, self._net_version_required ): raise ValueError( - f"Version mismatch of volatility library NetSymbols version ({net.NetSymbols.version}) and needed version ({self._net_version_required})" + f"Version mismatch of volatility library NetSymbols version ({network.NetSymbols.version}) and needed version ({self._net_version_required})" ) network.NetSymbols.apply(self._symbol_table)