Skip to content

Commit 094cdf1

Browse files
committed
Linux: netfilter plugin: Fix hooked field to match vol2 output
1 parent 7b0cb4f commit 094cdf1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

volatility3/framework/plugins/linux/netfilter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def _run(self) -> Iterator[Tuple[int, str, str, int, int, str, bool]]:
190190
priority = int(hook_ops.priority)
191191
hook_ops_hook = hook_ops.hook
192192
module_name = self.get_module_name_for_address(hook_ops_hook)
193-
hooked = module_name is not None
193+
hooked = module_name is None
194194

195195
yield netns, proto_name, hook_name, priority, hook_ops_hook, module_name, hooked
196196

0 commit comments

Comments
 (0)