Tag: eBPF technology

eBPF IDS Linux
eBPF Use Cases

Create eBPF IDS on Linux

I will walk you through a working eBPF IDS Linux setup that hooks kernel events, streams signals to user space, and keeps performance predictable. I start from how the verifier and JIT work in the linux kernel so you can pick the right attach points. I explain kprobes, tracepoints, uprobes, XDP, and LSM in plain […]

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 
Cilium use cases eBPF
eBPF Ecosystem

Cilium eBPF Use Cases

Can kernel-level programmability really replace heavy sidecars and fragile chains in cloud-native networking? We think it can—and I’ll show you why this shift matters for teams running containers at scale. Built in Go and powered by eBPF inside the Linux kernel, this open-source solution ties networking and security directly to container workloads. That means fine-grained […]

William