惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

小众软件
小众软件
博客园 - Franky
罗磊的独立博客
G
Google Developers Blog
The GitHub Blog
The GitHub Blog
P
Proofpoint News Feed
Recent Announcements
Recent Announcements
V
V2EX
F
Fortinet All Blogs
阮一峰的网络日志
阮一峰的网络日志
Blog — PlanetScale
Blog — PlanetScale
月光博客
月光博客
U
Unit 42
GbyAI
GbyAI
A
About on SuperTechFans
WordPress大学
WordPress大学
Engineering at Meta
Engineering at Meta
雷峰网
雷峰网
Microsoft Azure Blog
Microsoft Azure Blog
Martin Fowler
Martin Fowler
D
DataBreaches.Net
The Cloudflare Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
MongoDB | Blog
MongoDB | Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How I got a threat-classification AI running on-agent in ...
ALSOPS · 2026-06-16 · via DEV Community

When I tell people that Watch Cortex classifies threats in under 8ms on-agent — no cloud call, no GPU, no round-trip — the first question is usually: how?

The second question is: why bother? Just send it to the cloud.

Let me answer the second one first, because it explains all the engineering decisions that follow.


Why on-agent matters

The cloud-call model for security agents has a fundamental problem: it fails when you need it most.

Network incidents, backend outages, high-latency connections — all of these happen. And they correlate with attacks. An attacker who can disrupt your monitoring before escalating isn't a theoretical threat; it's a documented technique (T1562.001 in MITRE ATT&CK).

If your security agent phones home and gets no answer, you're flying blind during an attack. That's not a tradeoff I'm willing to make.

Beyond reliability: latency. A cloud round-trip is 50-200ms under good conditions. That's an eternity in an SSH brute-force sequence. Cortex needs to classify and respond before the attacker's next attempt lands — sub-second total, which means the classification step has to be under 10ms.

So: on-agent, <8ms, no GPU. Those were the constraints. Here's how I built to them.


What "classification" actually means here

First, let's be precise about what Cortex is doing. It's not doing NLP. It's not running a large model. It's doing behavioral event classification — looking at structured telemetry events and deciding: is this a threat, and if so, what kind?

Input: a stream of structured events — process forks, network connections, file writes, auth attempts — with context (parent process, timestamp, user, path, connection direction).

Output: a threat classification with confidence score, threat category, and recommended response action.

That framing changes the problem significantly. I'm not asking "what does this log line mean in English?" I'm asking "does this pattern of events match known attack behavior?"


The model architecture

Cortex uses a gradient-boosted decision tree ensemble (XGBoost, specifically) for the primary classifier, with a lightweight neural layer for anomaly scoring on top.

Why GBT instead of a neural network?

  1. Inference speed. A well-tuned XGBoost model with ~200 trees classifies a feature vector in under 1ms on a modern CPU. Neural networks at equivalent accuracy are 10-50x slower for structured tabular data.

  2. No GPU required. GBT inference is pure CPU arithmetic — matrix multiplications over narrow feature vectors. An EC2 t3.micro can run it comfortably alongside the monitoring agent without noticeable CPU impact.

  3. Explainability. SHAP values let me tell the operator exactly which features drove the classification. That's how Cortex generates plain-language investigation summaries — not LLM-generated prose, but template-filled explanations grounded in feature importance scores.

  4. Small model size. The serialized Cortex model is ~1.2MB. It ships with the agent binary, pre-synced. No cold-start, no download-on-first-use.

The anomaly layer is a small autoencoder (3 layers, ~15K parameters) that learns each server's baseline behavior over the first 72 hours. It flags events that deviate from that baseline even when they don't match known attack patterns. This is what catches novel techniques that the GBT hasn't been trained on.


Feature engineering: where the real work is

The model is the easy part. Feature engineering is where I spent 80% of the time.

Raw events are useless to a classifier. What matters is the context around an event — the temporal patterns, the process ancestry, the prior history of the entities involved.

Cortex computes ~140 features per event. A few illustrative examples:

Process ancestry features:

  • Depth of the process tree from init
  • Whether the parent is a known-good daemon vs. a user shell
  • Number of unique children spawned by this parent in the last 60 seconds
  • Whether this process name has been seen under this parent before (binary: novel lineage)

Network features:

  • Is the destination IP in a known-bad range (Tor exit nodes, bulletproof hosting ASNs)?
  • Is this the first time this process has made a network connection?
  • Is the destination port non-standard for this process's typical behavior?
  • Is the connection outbound from a process that typically doesn't make outbound connections?

Temporal features:

  • Auth failure rate per source IP in a rolling 60-second window
  • Time since last successful auth from this IP
  • Number of distinct usernames targeted by this source IP
  • Whether this event is occurring during an unusual time window for this server

File integrity features:

  • Was the file path modified by a process in the authorized-writer set?
  • Is the path in a high-sensitivity directory (authorized_keys, sudoers, cron.d)?
  • How recently was this file last modified?

The key insight: most of these features require stateful context, not just the current event. The agent maintains an in-memory state store — process tables, connection history, auth attempt logs, file write history — that the feature extractor queries in microseconds. This is why the agent runs as a persistent daemon rather than a per-event script.


The 8ms breakdown

Here's where the time actually goes:

Step Time
Event receipt from kernel (eBPF probe) ~0.1ms
State store lookup + feature extraction ~1.5ms
GBT inference (XGBoost, 200 trees) ~0.8ms
Anomaly score (autoencoder) ~1.2ms
Threat category resolution + confidence calibration ~0.3ms
Response decision + action dispatch ~0.5ms
SHAP explanation generation ~3.5ms
Total ~8ms

SHAP generation is surprisingly expensive — it's the largest chunk. In a future version I may cache SHAP values for common event types and only run full SHAP on novel patterns. But 8ms total is fast enough that I haven't prioritized it.

The eBPF kernel probes are the other interesting piece. Cortex uses a small eBPF program (compiled with libbpf) attached to kprobes for execve, connect, openat, and a handful of others. The probe captures the raw event and writes it to a ring buffer; the userspace agent reads the ring buffer in a tight loop. This gives sub-millisecond event delivery from kernel to userspace — much faster than reading audit logs from /var/log/audit/.


Training data: the unglamorous part

A model is only as good as its training data, and training data for Linux attack behavior is genuinely hard to get.

I ended up with four sources:

  1. Public datasets. DARPA VAST, CERT Insider Threat, CIC-IDS2017/2018. These are academic datasets with labeled attack traffic. Useful for broad coverage, but they're old and the attack patterns don't match modern techniques.

  2. Honeypots. I run a small fleet of intentionally vulnerable Linux VMs (minimal hardening, weak SSH passwords) exposed to the public internet. They get attacked constantly. I log everything and use it as labeled attack data after manual review.

  3. Red team exercises. I've run controlled red team scenarios against test VMs — mimicking common MITRE ATT&CK techniques — and captured the resulting telemetry as positive training examples.

  4. Production negatives. Telemetry from normal server operation — cron jobs, package installs, legitimate SSH sessions, monitoring agents — gives me the negative class (normal behavior). This is the largest portion of the training set by volume.

The hardest problem: class imbalance. In production, attacks are rare events. A naive classifier learns to just say "not attack" and achieves 99.9% accuracy, which is useless. Cortex uses SMOTE oversampling on the minority class during training, plus a heavily tuned decision threshold that optimizes for false-negative minimization rather than accuracy. I'd rather have a false positive (unnecessary alert) than a false negative (missed attack).


Fleet immune memory: how threat signatures propagate

When Cortex detects and confirms a novel threat pattern on one agent, it extracts a compact threat signature: a vector of the most discriminative features that characterized the attack.

This signature is broadcast to all other agents in the fleet over an encrypted WebSocket connection to the backend, which fans it out immediately. Each receiving agent adds the signature to its local threat library.

The signature is not the full model — it's a set of rules derived from feature importance: "if source IP is in this /24, and auth failure rate exceeds X/min, and targeted usernames include 'admin' or 'root', classify as brute force with 0.95 confidence."

These derived rules are fast to evaluate — microseconds, not milliseconds — and supplement the GBT classifier for known-active attack campaigns.

When a human operator corrects a Cortex decision (false positive or false negative), the correction is also broadcast fleet-wide. The correction adjusts the confidence calibration for that threat category and, if it's a false positive on a specific process/path combination, adds it to a server-specific allowlist that propagates to similar servers in the fleet (matched by OS version and installed packages).


What I got wrong the first time

A few things I had to unlearn:

I started with a larger model. My first attempt used a 1,000-tree ensemble with deeper trees and more features. It was more accurate on benchmarks. It was also 40ms inference time, which broke the latency requirement. Ruthlessly pruning to 200 shallower trees while maintaining accuracy was a week of work.

I underestimated feature extraction time. I assumed feature extraction was trivial. It's not — especially the temporal features that require querying rolling windows over the state store. Most of my latency wins came from optimizing the state store (switched from SQLite to a hand-rolled ring-buffer structure in memory) rather than the model itself.

I tried to make the model explain itself in prose. My first attempt at investigation summaries used a small language model to generate natural-language explanations from the feature values. It added 50ms and the explanations were worse than what I ended up with: structured templates filled in by SHAP feature importance. "High-frequency SSH auth failures from new IP (3,800 attempts / 4 min)" is more useful than a paragraph.


Where it goes from here

A few things on the roadmap:

  • Per-server model fine-tuning. Right now Cortex ships one global model and adapts at inference time using the anomaly layer. Long-term, I want to fine-tune the GBT on each server's specific behavior profile after a 30-day baseline period.

  • eBPF program hot-reload. Currently, updating the kernel probes requires an agent restart. I'm working on a mechanism to push updated eBPF programs without dropping the ring buffer or interrupting monitoring.

  • Threat intelligence federation. Beyond fleet immune memory, I'm looking at integrating with external threat intel feeds (VirusTotal, AbuseIPDB, Shodan) to supplement the classifier's context for external IPs and file hashes.


If you're building something in this space — autonomous security agents, on-device ML inference, eBPF-based monitoring — I'm happy to trade notes. Drop a comment or reach out directly.

Watch Cortex — 14-day free trial, no credit card.


Built by AL'S-OPS LLC. Feedback and security disclosures: security@alsopss.com.