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

推荐订阅源

freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
T
Tailwind CSS Blog
J
Java Code Geeks
Microsoft Azure Blog
Microsoft Azure Blog
GbyAI
GbyAI
爱范儿
爱范儿
量子位
Martin Fowler
Martin Fowler
V
V2EX
博客园 - 三生石上(FineUI控件)
I
InfoQ
MongoDB | Blog
MongoDB | Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
N
Netflix TechBlog - Medium
D
DataBreaches.Net
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Last Week in AI
Last Week in AI
U
Unit 42
Apple Machine Learning Research
Apple Machine Learning Research
H
Help Net Security
T
The Blog of Author Tim Ferriss
Hugging Face - Blog
Hugging Face - Blog
美团技术团队
Engineering at Meta
Engineering at Meta

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
Three Detection Paradigms. One Dataset. One Result.
@alonso_isid · 2026-05-10 · via DEV Community

Three Detection Paradigms. One Dataset. One Result.

For the last 147 days I’ve been building aRGus, an open-source Network Detection & Response (NDR) pipeline focused on behavioral detection using machine learning and real packet telemetry.

Today we completed something I personally wanted to see for a long time:

A direct comparison between three radically different network security paradigms on the same dataset, same hardware, and same analysis conditions.

Not “which tool is better”.

But what each paradigm is actually capable of seeing.


The Experiment

We used the CTU-13 Neris botnet scenario from 2011.

The malicious corpus contains:

  • 646 malicious flows
  • IRC beaconing
  • HTTP anomalies
  • SMB lateral movement
  • classic botnet behavior patterns

Three systems analyzed the same capture:

System Paradigm
Suricata Signature-based IDS
Zeek Telemetry & anomaly observation
aRGus Behavioral ML-based NDR

Environment:

  • Commodity hardware
  • Same PCAP corpus
  • Same execution constraints
  • No tuning magic
  • Default operational assumptions

Results

Detection Metrics

System F1 Score Recall Alerts
Suricata 6.0.10 (50K ET Open rules) 0.000 0% 0
Zeek 8.1.2 (default scripts) 0.042 2% 14
aRGus NDR 0.998 100% 646

What This Actually Means

The conclusion is not:

“aRGus destroys Suricata and Zeek.”

That would completely miss the point.

The result is a taxonomy of detection paradigms.


1. Signature Detection — Suricata

Suricata is exceptional at detecting threats it already knows.

But the experiment demonstrated something important:

If the behavior does not match an existing rule, the engine may remain completely silent.

In this scenario:

  • 50,000+ ET Open rules
  • 646 malicious flows
  • zero alerts

This is not a failure of Suricata.

It is the expected limitation of signature dependency.

A signature engine requires prior knowledge.

No signature → no detection.


2. Observability Without Classification — Zeek

Zeek produced one of the most interesting outcomes.

Under default policy:

  • 14 alerts
  • 100% precision
  • only 2% recall

At first glance, this looks weak.

But then we inspected weird.log.

Zeek observed:

  • IRC beaconing
  • malformed HTTP behavior
  • SMB anomalies
  • protocol irregularities
  • suspicious communication patterns

In total:

  • 182 anomaly observations from the malicious host

The key insight:

Zeek saw the anomalies.

It simply did not classify them as attacks.

That distinction matters enormously.

Observability is not classification.

Telemetry alone is not detection logic.


3. Behavioral Classification — aRGus

aRGus approaches the problem differently.

Instead of asking:

“Does this match a known signature?”

it asks:

“Does this flow statistically behave like malicious activity?”

The pipeline extracts behavioral features from packet telemetry and classifies flows using machine learning models trained on malicious and legitimate traffic patterns.

Result:

  • F1: 0.998
  • Recall: 100%
  • 646 malicious flows detected

The important part is not the metric itself.

The important part is that the system classified malicious behavior regardless of:

  • malware family age,
  • IOC availability,
  • rule existence,
  • or threat naming.

Why This Matters

Many organizations cannot afford enterprise-grade NDR platforms.

Hospitals.
Schools.
Municipalities.
Small public institutions.

Yet they face the same ransomware operators as large enterprises.

The original motivation behind aRGus was simple:

Can modern behavioral detection be built using:

  • open-source tooling,
  • commodity hardware,
  • and reproducible research?

This experiment suggests the answer may be yes.


Important Caveats

This is not a claim that:

  • signatures are obsolete,
  • Zeek is ineffective,
  • or ML is magically superior.

All three paradigms solve different problems.

In real environments, they complement each other.

A mature detection stack likely needs:

  • signature detection,
  • telemetry observation,
  • behavioral analysis,
  • and correlation between all layers.

This benchmark is only one experiment.
One dataset.
One botnet family.
One point in the design space.

But it revealed something fundamental:

Different detection architectures do not merely differ in performance.

They differ in philosophy.


Research & Project

Feedback, criticism, and collaboration are welcome.