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
Filtering on the syscall argument of sys_enter does not work, neither with a syscall name nor with its number.
e.g. sys_enter.args.syscall=321 or sys_enter.args.syscall=bpf do not work.
Output of tracee version:
Tracee version: v0.20.0
Output of uname -a:
Linux ****** 5.15.133.1-microsoft-standard-WSL2 #1 SMP Thu Oct 5 21:02:42 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux
Additional details
The problem appears to be in the following check from pkt/filters/args.go line 59:
I have an initial solution to make sys_enter.args.syscall=bpf working asap. Making both (number/name) to work would demand changes in the filter parser.
Description
Filtering on the syscall argument of sys_enter does not work, neither with a syscall name nor with its number.
e.g.
sys_enter.args.syscall=321
orsys_enter.args.syscall=bpf
do not work.Output of
tracee version
:Output of
uname -a
:Additional details
The problem appears to be in the following check from
pkt/filters/args.go
line 59:Conversion of the argument value to string form doesn't happen specifically for the syscall argument.
The text was updated successfully, but these errors were encountered: