Open patrickdalla opened 4 weeks ago
This implementation is dependent of BPList PR, so it has the commits of that PR too.
Some issues/improvements derived from this implementation:
1) Can be implemented "specialized" parsers for specific object classes found inside the Object graph. Maybe an improvement can be to extract such kind of objects as new subitems, once registered. For example, I found some objects with info o a IGUser class that seems to represent instagram user information inside of a NSKeyedArchiver file of a IGDirectBanyanRankedRecipientsCollection object.
2) The metadata name of the extracted timestamps are given as the tree path to the variable. I think IPED was not designed to support such long metadata names. One possible solution is to extract any object that has as timestamp field member as subitem, so the metadata name would be the path starting from this object class name.
On the long metadata name given from path issue: i've found one case that was leading to IPED indexing halt due to this long names (concatenated in eventtimegroups metadata) so I changed the implementation to use only the last member name on the object path.
Closes #2351.