-
Notifications
You must be signed in to change notification settings - Fork 75
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 an automatic merge convenience feature #71
Comments
I think there is a little misunderstanding here. What other tools do is this:
That one is a tentative approach. Conversely, RecuperaBit only merges stuff that can be merged without random assumptions. For instance, different parts of the same MFT almost always get detected and merged correctly. But being a digital forensics tool it cannot "invent" information that is not there. In some cases a skilled analyst could be able to ascertain that other parts can be merged, but the software cannot do that.
That could be doable in some simple cases, but if the data runlists differ (for instance, the disk has been defragmented... which often leads to a lot of bogus partitions), how do you decide which one is correct? |
Weell, I don't know, to be honest I was just extrapolating from a pattern I was seeing in the files I was recovering. Anyway, I guess like rather than an "easy mode", the option instead could just be about some kind of "single partition" assumption? |
It's not so easy: if you put everything in one bin, you might encounter multiple files with the same id. Then you have to decide what parts to keep. |
Nothing wrong with that. |
That's not how the reconstruction work, the identifiers must be unique. |
Yes, I understand (I think). In my use case above for example I had 31 unique identifiers for some given path and file name. Because using the windows image viewer to pick up the best recovered pictures, is far easier then than just "guessing from CLI", if I can explain. |
Now, I get that recuperabit has the most sophisticated recovery algorithm ever.
And with the godsent help of #68 I could even find 31 possible locations for one of my missing photos (of which 5 were even good and 3 only partially unreadable). As opposed to 13 random files by NTFS Recovery (which still had 1 okay though).
But one very useful feature that has (aside of the GUI /s) is that it could present to me the files in a single "unified virtual disk" view. No hundreds of separate tentative "partitions".
I don't really know if that's just deriving some information better from my disk image, or if it isn't using some post hoc trick (for example, if in any partition you find the actual "long path" of some file, then you assign all the elements with the same index to its same parent) ... But it would be nice if this also worked here.
Of course, please, by all means take your time to finish the conversion to python3 first d:
The text was updated successfully, but these errors were encountered: