Skip to content

Commit

Permalink
Windows: Add version to driverirp.DriverIrp plugin
Browse files Browse the repository at this point in the history
This plugin class was missing a `_version` attribute, so I added one and
set it to (1, 0, 0).
  • Loading branch information
dgmcdona committed Mar 12, 2024
1 parent 13f0bb2 commit 953b433
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions volatility3/framework/plugins/windows/driverirp.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ class DriverIrp(interfaces.plugins.PluginInterface):
"""List IRPs for drivers in a particular windows memory image."""

_required_framework_version = (2, 0, 0)
_version = (1, 0, 0)

@classmethod
def get_requirements(cls):
Expand Down

0 comments on commit 953b433

Please sign in to comment.