Adding category for each event #720
Replies: 2 comments 1 reply
-
@AsafEitani Have you tried using the tracee sets? Filtering failed events is also possible using tracee filters. Use |
Beta Was this translation helpful? Give feedback.
-
@yanivagman Maybe we could leverage sets but I think we need to add a couple, for example security_bprm_check is not flagged as execution. Also the meaning of adding categorization is to add a field to each event with it's category (sorry that wasn't so clear from my initial issue) By filtering I mainly ment in a later date via Splunk\elasticsearch. Adding that field would make it much easier. |
Beta Was this translation helpful? Give feedback.
-
Adding a category could enable users to better understand the meaning of each syscall that's being logged by tracee.
It will also help analysts to produce easier queries and perform more advanced analysis (like get all the execve calls that weren't followed by a security_bprm_check)
Another issue that this might solve is delayed returned values from execve. at the moment tracee-ebf logs failed execve events twice:
By adding categories we will be able to categorize those failure events to "Failed syscalls" category - thus enabling for cleaner queries over successful executions and querying for any failed execution will be as easy as filtering the category.
Categories could range from Execution to Connections and even Misc for syscalls that won't fit in any other category.
Beta Was this translation helpful? Give feedback.
All reactions