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 delete on close detection to process ghosting. Update plugin to c… #1731

Merged
merged 3 commits into from
Mar 25, 2025

Conversation

atcuno
Copy link
Contributor

@atcuno atcuno commented Mar 24, 2025

…urrent coding flow

@ikelos This adds the Delete On Close detection plus updates all of the plugin to our current coding standards.

@atcuno atcuno requested a review from ikelos March 24, 2025 04:52
Copy link
Member

@ikelos ikelos left a 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),
Copy link
Member

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?

Copy link
Contributor Author

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.

Copy link
Contributor Author

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:
Copy link
Member

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?

Copy link
Contributor Author

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.

Copy link
Contributor Author

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"
Copy link
Member

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?

Copy link
Contributor Author

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.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

addressed in latest commit.

@atcuno
Copy link
Contributor Author

atcuno commented Mar 25, 2025

ok @ikelos check my new comments and commits

@ikelos ikelos merged commit b881fa1 into develop Mar 25, 2025
24 checks passed
@ikelos ikelos deleted the process_ghosting_update_with_delete_on_close branch March 25, 2025 09:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants