-
Notifications
You must be signed in to change notification settings - Fork 7
Filterable Workflow Results #67
Copy link
Copy link
Open
Labels
Description
So I was testing out OpenRelik with a KAPE and one of the things that I noticed, is that even a relatively simple analysis (e.g. KAPE -> Unzip -> Extract EVTX -> Run Strings and Grep) will lead to a large number of files being generated. It would be nice to not only sort these results, but also filter them according to some criteria. Stuff that could be useful would include:
- Search for file name
- Filter by Type (perhaps use Checkboxes?)
- Filter by Size (e.g. x<file.size<y)
- Owner of files
- Which container outputted the file (e.g. if I only want the results from the LLM)
- Bonus: Searching by Content might be nice, but I do foresee that it will probably not make sense, especially considering how long such a search would take
I think I could make some time to implement some of the simpler filters (its been a while since I last programmed Vue), but there are quite a few architectural questions that arise from adding filtering, especially since it probably makes sense to have the backend handle parts of the filtering process.
Reactions are currently unavailable