mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-29 03:09:48 +02:00
Merge pull request #1463 from j-t-1/svclist
Add a required framework version
This commit is contained in:
@@ -18,6 +18,7 @@ vollog = logging.getLogger(__name__)
|
||||
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):
|
||||
@@ -41,7 +42,7 @@ class SvcList(svcscan.SvcScan):
|
||||
@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
|
||||
"""
|
||||
|
||||
|
||||
Reference in New Issue
Block a user