Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a required framework version #1463

Merged
merged 2 commits into from
Dec 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading