mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-09 19:27:39 +02:00
clarify generator variable
This commit is contained in:
@@ -214,7 +214,10 @@ if the "hidden_modules" key is present in known_modules.
|
||||
# Determine the symbols associated with a hook
|
||||
hooked_symbols = kernel.get_symbols_by_absolute_location(hook_address)
|
||||
hooked_symbols = ",".join(
|
||||
[s.split(constants.BANG)[-1] for s in hooked_symbols]
|
||||
[
|
||||
hooked_symbol.split(constants.BANG)[-1]
|
||||
for hooked_symbol in hooked_symbols
|
||||
]
|
||||
)
|
||||
yield ParsedFtraceOps(
|
||||
ftrace_ops.vol.offset,
|
||||
|
||||
Reference in New Issue
Block a user