I’m a Software Security Engineer at Block Inc., specializing in cloud-native security pipelines and application security.
Previously at Meta and Praetorian, I focused on building secure systems and contributing to the security community through research and open-source projects. I am also the CEO & Founder of OmniChat AI, where we developed a multimodal agentic AI platform that provides unified APIs for multimodal input processing, enabling developers to build complex applications with a single integration layer.
Tags
Latest Posts
# Seccomp-BPF: Confining Linux Processes at the Syscall Boundary
A deep dive into Linux seccomp-BPF — building syscall sandboxes from raw BPF filters to production-grade policies, with practical C examples and analysis of how Chrome, Docker, and systemd use…
# eBPF for Security Monitoring: Kernel-Level Visibility Without the Overhead
A deep dive into using eBPF to build high-performance, kernel-level security monitoring tools — covering syscall tracing, network inspection, and intrusion detection with practical Python examples.
# Writing a Memory Allocator from Scratch: glibc Heap Internals and Security Hardening
Every call to malloc hides a small miracle of systems engineering. In the time it takes your program to allocate 16 bytes, glibc’s heap allocator has consulted a multi-tiered bin system, potentially…