Deploy Kaimz on
your own infrastructure
Kaimz is self-hosted, end to end. Stand up the brain and console, install agents, and watch detections and the Threat Storyline populate in real time.
Kaimz is self-hosted, end to end. Stand up the brain and console, install agents, and watch detections and the Threat Storyline populate in real time.
Kaimz is self-hosted. You run three things: the brain (correlation + APIs), the console (web UI), and one or more agents on the endpoints you protect.
Hub-and-spoke, all inside your network:
No component calls a vendor cloud. Intel feeds (NVD/CISA/IOC) are pulled on a schedule and cached locally.
Agents register to the brain, stream process / network / AMSI telemetry, and run scans (vuln, malware, NHI, exposure, ransomware canary, device posture).
# Linux — one-line install (registers to your brain) curl -fsSL https://<brain-host>/install-agent.sh | sudo bash # Windows — elevated PowerShell irm https://<brain-host>/install-agent.ps1 | iex
Every engine ships in every edition — nothing is a paid bolt-on to get basic protection.
REST over HTTPS. Authenticate with a console session or an API-key header.
# List managed assets curl -H "x-kaimz-key: <YOUR_KEY>" https://<brain-host>:4000/v1/assets # Trigger a device-posture scan curl -X POST -H "x-kaimz-key: <YOUR_KEY>" \ https://<brain-host>:4000/v1/device-posture/scan
Common endpoints include /v1/assets, /v1/detections, /v1/incidents, /v1/siem, /v1/nhi, /v1/exposure, /v1/ransomware and /v1/device-posture.