-
Is there a way to delete temporary files? For example, I am using version 23.10.31 in the following manner: |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
Can you provide a sample that we can use for reproduction ? Thanks :) |
Beta Was this translation helpful? Give feedback.
-
After some internal discussion, we agreed not to implement this auto-deletion. The rationale is that this deletion strategy could lead to issues after extraction, even more so with emulation in mind. A script or a symlink could reference an archive that got deleted since the extraction was successful, blocking the script from running as expected. Also, we don't want to have this auto-deletion strategy enabled by default. This means we would need to add yet another command line switch that users can use to tell unblob they want to auto-delete successfully extracted files. This would definitely add more confusion to a CLI that already needs some rethinking. Bringing even more confusion on the subject of files vs chunks, carve vs extract. Having
We might revisit this decision in the future. In the meantime there's a patch you can apply at https://github.com/onekey-sec/unblob/pull/766/files |
Beta Was this translation helpful? Give feedback.
-
Binwalk has the option |
Beta Was this translation helpful? Give feedback.
After some internal discussion, we agreed not to implement this auto-deletion. The rationale is that this deletion strategy could lead to issues after extraction, even more so with emulation in mind. A script or a symlink could reference an archive that got deleted since the extraction was successful, blocking the script from running as expected.
Also, we don't want to have this auto-deletion strategy enabled by default. This means we would need to add yet another command line switch that users can use to tell unblob they want to auto-delete successfully extracted files. This would definitely add more confusion to a CLI that already needs some rethinking. Bringing even more confusion on t…