-
Notifications
You must be signed in to change notification settings - Fork 166
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
eBPF probes: 32 bit applications support #279
Comments
Hi! |
/kind feature |
We would be interested in this feature as well. This may be a big security gap. |
Yep we know that; that's unfortunate and we must implement its support. I'll try to target 0.33 for this. |
You are right @2Bor2C, we will try to insert it in |
Issues go stale after 90d of inactivity. Mark the issue as fresh with Stale issues rot after an additional 30d of inactivity and eventually close. If this issue is safe to close now please do so with Provide feedback via https://github.com/falcosecurity/community. /lifecycle stale |
/remove-lifecycle stale |
Issues go stale after 90d of inactivity. Mark the issue as fresh with Stale issues rot after an additional 30d of inactivity and eventually close. If this issue is safe to close now please do so with Provide feedback via https://github.com/falcosecurity/community. /lifecycle stale |
/remove-lifecycle stale |
Issues go stale after 90d of inactivity. Mark the issue as fresh with Stale issues rot after an additional 30d of inactivity and eventually close. If this issue is safe to close now please do so with Provide feedback via https://github.com/falcosecurity/community. /lifecycle stale |
@FedeDP any update on this? /remove-lifecycle stale |
Nope :( still need to schedule some time for this! |
@alexburt Feature is scheduled for Falco 0.36 release and tracked under Falco issue falcosecurity/falco#2472. According to our new roadmap planning we may have 2 libs releases per one Falco release, therefore the feature may land earlier in libs. |
Hi, |
Hello,
Is there a reason why 32 bit syscalls is not supported by eBPF driver ?
My test program opens /etc/shadow and normally triggers the alert. But there is no alerts when I compile program as ELF 32-bit (gcc -m32).
Looks like 32 bit calls just skipped by eBPF probe (https://github.com/falcosecurity/libs/blob/master/driver/bpf/probe.c):
if (bpf_in_ia32_syscall())
return 0;
Any reason for that ?
The text was updated successfully, but these errors were encountered: