Skip to content

Commit

Permalink
Add missing files
Browse files Browse the repository at this point in the history
  • Loading branch information
atcuno committed Mar 10, 2025
1 parent 7289f7d commit b8c0b1e
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion volatility3/framework/plugins/windows/callbacks.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def get_requirements(cls) -> List[interfaces.configuration.RequirementInterface]
name="ssdt", plugin=ssdt.SSDT, version=(2, 0, 0)
),
requirements.PluginRequirement(
name="poolscanner", plugin=poolscanner.PoolScanner, version=(2, 0, 0)
name="poolscanner", plugin=poolscanner.PoolScanner, version=(3, 0, 0)
),
requirements.PluginRequirement(
name="driverirp", plugin=driverirp.DriverIrp, version=(1, 0, 0)
Expand Down
2 changes: 1 addition & 1 deletion volatility3/framework/plugins/windows/driverscan.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def get_requirements(cls):
architectures=["Intel32", "Intel64"],
),
requirements.PluginRequirement(
name="poolscanner", plugin=poolscanner.PoolScanner, version=(2, 0, 0)
name="poolscanner", plugin=poolscanner.PoolScanner, version=(3, 0, 0)
),
]

Expand Down
2 changes: 1 addition & 1 deletion volatility3/framework/plugins/windows/filescan.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def get_requirements(cls):
architectures=["Intel32", "Intel64"],
),
requirements.PluginRequirement(
name="poolscanner", plugin=poolscanner.PoolScanner, version=(2, 0, 0)
name="poolscanner", plugin=poolscanner.PoolScanner, version=(3, 0, 0)
),
]

Expand Down
2 changes: 1 addition & 1 deletion volatility3/framework/plugins/windows/mutantscan.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def get_requirements(cls):
architectures=["Intel32", "Intel64"],
),
requirements.PluginRequirement(
name="poolscanner", plugin=poolscanner.PoolScanner, version=(2, 0, 0)
name="poolscanner", plugin=poolscanner.PoolScanner, version=(3, 0, 0)
),
]

Expand Down
2 changes: 1 addition & 1 deletion volatility3/framework/plugins/windows/registry/hivescan.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def get_requirements(cls):
architectures=["Intel32", "Intel64"],
),
requirements.PluginRequirement(
name="poolscanner", plugin=poolscanner.PoolScanner, version=(2, 0, 0)
name="poolscanner", plugin=poolscanner.PoolScanner, version=(3, 0, 0)
),
requirements.PluginRequirement(
name="bigpools", plugin=bigpools.BigPools, version=(2, 0, 0)
Expand Down
2 changes: 1 addition & 1 deletion volatility3/framework/plugins/windows/thrdscan.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def get_requirements(cls):
architectures=["Intel32", "Intel64"],
),
requirements.PluginRequirement(
name="poolscanner", plugin=poolscanner.PoolScanner, version=(2, 0, 0)
name="poolscanner", plugin=poolscanner.PoolScanner, version=(3, 0, 0)
),
]

Expand Down

0 comments on commit b8c0b1e

Please sign in to comment.