mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-08 02:37:39 +02:00
Fix architecture typo blocking scheduled_tasks on 32-bit images
The kernel requirement listed "Intel33". Intel layers only ever report Intel32 or Intel64, so on a 32-bit image the requirement could never be satisfied and the plugin aborted with a misleading "Unsatisfied requirement ... kernel.layer_name" instead of running.
This commit is contained in:
@@ -1119,7 +1119,7 @@ class ScheduledTasks(interfaces.plugins.PluginInterface, timeliner.TimeLinerInte
|
||||
requirements.ModuleRequirement(
|
||||
name="kernel",
|
||||
description="Windows kernel",
|
||||
architectures=["Intel33", "Intel64"],
|
||||
architectures=["Intel32", "Intel64"],
|
||||
),
|
||||
requirements.VersionRequirement(
|
||||
name="hivelist", component=hivelist.HiveList, version=(2, 0, 0)
|
||||
|
||||
Reference in New Issue
Block a user