Cloud security, detection engineering, and eBPF. I build tools that monitor and protect at the kernel level.
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.
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}16
For security research, collaboration, or just to connect.