Software engineering student at USTHB. I build detection engines, cloud security scanners, and runtime monitoring tools.
My work bridges kernel-level programming with cloud-native architectures — from eBPF probes to CSPM scanners.
eBPF-based runtime security monitor that hooks kernel syscalls, builds per-process behavioral baselines, and kills anomalous processes in real time.
Container-aware detection engine. Detects container escapes, cross-namespace attacks, and suspicious behavior via 9 kernel probes with K8s audit correlation.
1// beacon-guard: eBPF syscall hook2SEC("tracepoint/syscalls/sys_enter_execve")3int hook_execve(struct trace_event_raw_sys_enter *ctx) {4 struct event *e;5 e = bpf_ringbuf_reserve(&rb, sizeof(*e), 0);6 if (!e) return 0;78 e->pid = bpf_get_current_pid_tgid() >> 32;9 e->type = EXECVE_EVENT;10 bpf_probe_read_user_str(e->comm, sizeof(e->comm),11 (void *)ctx->args[0]);1213 bpf_ringbuf_submit(e, 0);14 return 0;15}
For security research, collaboration, or just to connect.