You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 14, 2026. It is now read-only.
Hey, I was continuing to test out some features and I stumbled across something that I found a bit counter-intuitive. When you apply filters they are applied using an ANY logic (any([filename_filter, file_extension_filter, file_signature_filter])). Intuitively I would have expected the filters to apply on top of each other (i.e. the security.evtx file), instead I get all files that have the word security and all evtx files.
Don't get me wrong, I think this behavior makes sense, but it would be nice to have this noted somewhere, since it confused me why I had so many files passed to my next worker.
Hey, I was continuing to test out some features and I stumbled across something that I found a bit counter-intuitive. When you apply filters they are applied using an ANY logic (
any([filename_filter, file_extension_filter, file_signature_filter])). Intuitively I would have expected the filters to apply on top of each other (i.e. the security.evtx file), instead I get all files that have the word security and all evtx files.Don't get me wrong, I think this behavior makes sense, but it would be nice to have this noted somewhere, since it confused me why I had so many files passed to my next worker.