Skip to content

Commit

Permalink
Windows: Update the required framework version for plugins outputting…
Browse files Browse the repository at this point in the history
… LayerData
  • Loading branch information
ikelos committed Feb 15, 2025
1 parent fcbc4fa commit 07b0503
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion volatility3/framework/plugins/windows/malfind.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
class Malfind(interfaces.plugins.PluginInterface):
"""Lists process memory ranges that potentially contain injected code."""

_required_framework_version = (2, 4, 0)
_required_framework_version = (2, 22, 0)

@classmethod
def get_requirements(cls):
Expand Down
2 changes: 1 addition & 1 deletion volatility3/framework/plugins/windows/mbrscan.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
class MBRScan(interfaces.plugins.PluginInterface):
"""Scans for and parses potential Master Boot Records (MBRs)"""

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

@classmethod
Expand Down
4 changes: 2 additions & 2 deletions volatility3/framework/plugins/windows/mftscan.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ def run(self):
class ADS(interfaces.plugins.PluginInterface):
"""Scans for Alternate Data Stream"""

_required_framework_version = (2, 7, 0)
_required_framework_version = (2, 22, 0)

_version = (1, 0, 1)

Expand Down Expand Up @@ -396,7 +396,7 @@ def run(self):
class ResidentData(interfaces.plugins.PluginInterface):
"""Scans for MFT Records with Resident Data"""

_required_framework_version = (2, 7, 0)
_required_framework_version = (2, 22, 0)

_version = (1, 0, 1)

Expand Down

0 comments on commit 07b0503

Please sign in to comment.