-
Notifications
You must be signed in to change notification settings - Fork 496
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 delete on close detection to process ghosting. Update plugin to c… #1731
Conversation
…urrent coding flow
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No showstoppers, just me questioning things that are probably fine. Tell me to go away if none of them are useful/important... 5;)
("DeletePending", str), | ||
("DeletePending", int), | ||
("DeleteOnClose", int), | ||
("Base", format_hints.Hex), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this the ordering we want? Feels like Base should be earlier (next to Process maybe?) Entirely your call, just looks weird after two small int values?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I will change it to be more like the other plugins.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done in latest commit.
|
||
if isinstance(delete_pending, int) and delete_pending not in [0, 1]: | ||
if delete_pending and delete_pending == 1: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems like a different check and wouldn't it be accomplished be just delete_pending == 1
that's kind of a more specific version of delete_pending
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes will just do the == check.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
addressed in latest commit.
) | ||
if not has_imagefilepointer: | ||
vollog.warning( | ||
"ImageFilePointer checks are only supported on Windows 10 builds when the ImageFilePointer member of _EPROCESS is present" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this specific to windows 10, or does it apply to 7 or 11? Seems strange to be saying windows 10 specifically here? Can this error never happen on a different version of windows?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice catch. Should be "10+" like other plugins.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
addressed in latest commit.
ok @ikelos check my new comments and commits |
…urrent coding flow
@ikelos This adds the Delete On Close detection plus updates all of the plugin to our current coding standards.