Tag: eBPF tools

eBPF for system tracing
eBPF Use Cases

Trace System Calls with eBPF

I show how I trace system calls using eBPF to get practical, low-overhead visibility into application behavior. I run small sandboxed programs inside the linux kernel to capture execve, connect, send and recv events. The verifier and JIT keep the approach safe and fast. I explain what you need: a compatible kernel, basic permissions, and […]

William 
eBPF port scanning detection
Security Tools

Detect Port Scans with eBPF

The eBPF port scanning detection approach shows how kernel-level programs can answer TCP SYNs without leaving the fast path. I guide you through a compact XDP example that reads Ethernet, IPv4, and TCP headers in the kernel. You will see how a simple program spots a SYN and replies with a SYN-ACK to emulate an […]

William