Skip to content

Commit

Permalink
Add a required framework version
Browse files Browse the repository at this point in the history
Added _required_framework_version and set it to the same value (2, 0, 0) as its plugin requirement of svcscan. Also tweaked one comment.
  • Loading branch information
j-t-1 authored Dec 21, 2024
1 parent cc8fbd5 commit b9fa217
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion volatility3/framework/plugins/windows/svclist.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
class SvcList(svcscan.SvcScan):
"""Lists services contained with the services.exe doubly linked list of services"""

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

def __init__(self, *args, **kwargs):
Expand All @@ -41,7 +42,7 @@ def get_requirements(cls) -> List[interfaces.configuration.RequirementInterface]
@classmethod
def _get_exe_range(cls, proc) -> Optional[Tuple[int, int]]:
"""
Returns a tuple of starting address and size of the
Returns a tuple of starting address and size of
the VAD containing services.exe
"""

Expand Down

0 comments on commit b9fa217

Please sign in to comment.