We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
pid
This is code is confusing as it expects a two element tuple even though the default is None:
https://github.com/volatilityfoundation/volatility3/blob/develop/volatility3/framework/plugins/windows/pstree.py#L64
I was trying to understand pid but its typing in the function parameters shows:
pid: objects.Pointer,
But then self._processes is declared as:
self._processes
self._processes: Dict[int, Tuple[interfaces.objects.ObjectInterface, int]] = {}
And it definitely seems to store ints:
https://github.com/volatilityfoundation/volatility3/blob/develop/volatility3/framework/plugins/windows/pstree.py#L100
@superponible can you take a look at this one?
The text was updated successfully, but these errors were encountered:
superponible
No branches or pull requests
This is code is confusing as it expects a two element tuple even though the default is None:
https://github.com/volatilityfoundation/volatility3/blob/develop/volatility3/framework/plugins/windows/pstree.py#L64
I was trying to understand
pid
but its typing in the function parameters shows:pid: objects.Pointer,
But then
self._processes
is declared as:self._processes: Dict[int, Tuple[interfaces.objects.ObjectInterface, int]] = {}
And it definitely seems to store ints:
https://github.com/volatilityfoundation/volatility3/blob/develop/volatility3/framework/plugins/windows/pstree.py#L100
@superponible can you take a look at this one?
The text was updated successfully, but these errors were encountered: