IPED
IPED copied to clipboard
Support timeevent grouping/clustering
Change timeline desing to support event types grouping, like WinEvtx, filesystem MACD , P2P etc.
This could be used for:
- Filter out unimportant eventtypes that overloads timechart and timeline view.
- Index/cache based on more important timeevent groups, avoiding memory overload.
So the user could still view all timeevents, but for the more common, the APP would be optimized.
Event type grouping would be declared in a config file, in JSON or XML format.
Hi @lfcnassif,
While waiting processing of big case for ALeappBridgeTask testing, I have done adraft to this issue. It groups time events based on prefix (not prefixed event types goes into BasicProperties). I've made a video to ilustrate it.
The cache/indexing is also done on time event group base, i.e., one index/cache per timeeventgroup, so it keeps in memory only needed info to plot the corresponding time event group chosen.
Although the checkbox on video, it is not yet possible to choose multiple time event groups. And I have a question on this: Could we subdivide this enhancement in others:
- Propose this simpler implementation (almost finished) that only allows on selected time event group.
- Create other issue to propose multiple time event groups selection
- Customize time event groups not by prefix, but by some configurable file
https://github.com/sepinf-inc/IPED/assets/28692427/ad8d1986-81bf-4f80-8914-c29dfef249e7
Hi @patrickdalla, this seems very useful, thanks!
one index/cache per timeeventgroup
Would this be backwards compatible with old cases? I think this is important.
- Propose this simpler implementation (almost finished) that only allows on selected time event group.
- Create other issue to propose multiple time event groups selection
Will the user be able to plot arbitrary event types together like he/she is able today? I think it is important to keep.
- Customize time event groups not by prefix, but by some configurable file
This is useful, but I agree it can be implemented later.
Hi @lfcnassif , Answering the question:"Would this be backwards compatible with old cases?"
The persisted indexes/cache info will be based on group of events (subdir name). So, when opening old cases, the old index with all events won't be changed, but new ones will be created for each group. It will become redundant, consuming space, but will be backward compatible.