Skip to content

Commit

Permalink
Merge pull request volatilityfoundation#1463 from j-t-1/svclist
Browse files Browse the repository at this point in the history
Add a required framework version
  • Loading branch information
ikelos authored Dec 21, 2024
2 parents ea273fe + b9fa217 commit e7e4d76
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,ending address for
Returns a tuple of starting address and size of
the VAD containing services.exe
"""

Expand Down

0 comments on commit e7e4d76

Please sign in to comment.