Source ↗
Security infrastructure

linux-aegis.
Policy enforcement where attacks actually happen.

A Linux kernel security module (LSM) — enforcing security policy in kernel space, at the syscall boundary, before damage is done instead of after detection.

CLinux kernel · LSMMIT
View source ↗ Releases Full catalog
git clone https://github.com/Hartwell-Labs/linux-aegis

Engineering, not promises.

Every capability below ships in the open-source core — MIT licensed, CI on every push.

LSM architecture

Implements the Linux Security Module interface — hooks into the kernel's security decision points, not a side-channel daemon.

Kernel-space enforcement

Policy is enforced where the attacks actually happen: at the syscall boundary, with no race between detection and response.

Deny by policy

Explicit allow/deny decisions per operation — containment that does not depend on the attacked process cooperating.

Complements userspace agents

Pairs naturally with behavioral monitors like talus: they observe, aegis enforces.

Small, auditable surface

A focused C codebase meant to be read line by line — kernel code earns trust by being reviewable.

Open source

MIT licensed and built in the open, with CI on every push.