Zum Hauptinhalt springen
Echtzeit-Radar & Feeds
Alle RSS Feeds ➔
👥 Community & Social
Windows Tipps & SecurityGrafikkarte vor Überhitzung schützen: So geht’s(25.09.2026 um 08:00 Uhr)
••••••••••
Windows Tipps & SecurityGrafikkarte vor Überhitzung schützen: So geht’s(25.09.2026 um 08:00 Uhr)
••••••••••
Intelligence View
⚡ tsecurity.de Intelligence

Why AI-Powered IPS Systems Fail and How I Reduced False Positives by 96% Without Blocking Traffic

Intrusion Prevention Systems (IPS) don’t usually fail because the models are weak. They fail because detection and enforcement are tightly coupled. Most modern “AI-IPS” designs still follow the same flawed logic: Detect → Decide → Block …

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!

Intrusion Prevention Systems (IPS) don’t usually fail because the models are weak.

They fail because detection and enforcement are tightly coupled.



Most modern “AI-IPS” designs still follow the same flawed logic:




Detect → Decide → Block




This works in controlled benchmarks.

It collapses in production.



In this post, I’ll explain:




  • why false positives explode in AI-IPS systems,

  • why better models alone don’t solve the problem,

  • and how a staged, decoupled architecture with honeypot feedback reduced false positives by 96% in my prototype — without blocking benign traffic.







The Core Problem: IPS Is Treated as a Classification Task



Most AI-IPS pipelines are framed as binary classification:




Traffic → Features → Model → {Malicious | Benign}






The implicit assumption:




  • High confidence = safe to enforce

  • Low confidence = model problem



That assumption is wrong.






Why?



Because network traffic is adversarial, ambiguous, and non-stationary.



Even a 98% accurate classifier can:




  • block legitimate but rare traffic,

  • mislabel new application behaviors,

  • fail catastrophically during distribution shifts.



In production, false positives are more damaging than false negatives:




  • They break services

  • Trigger alert fatigue

  • Force operators to disable enforcement entirely



That’s why many IPS deployments quietly downgrade into IDS-only mode.









The Real Issue: Detection ≠ Decision



The mistake is architectural, not statistical.



Most systems bind:





  • detection certainty directly to enforcement action



In reality, “uncertain” traffic is not “benign” or “malicious”.

It’s unverified.



Treating uncertainty as a classification failure guarantees noise.









My Approach: Decoupled, Staged Validation



Instead of asking:




“Is this packet malicious?”




I reframed the problem as:




“How much confidence do we have right now to enforce action?”







High-level architecture






Traffic
↓
Fast ML Detection Layer
↓
Confidence-based Routing
├── High confidence → Immediate enforcement
├── Low confidence → Pass-through
└── Ambiguous → Dynamic honeypot / sandbox
↓
Behavioral verification
↓
Feedback to detector






The key shift:




  • Detection produces a signal

  • Decision is deferred unless confidence is sufficient









Why Honeypots Matter (and Not as Traps)



In this system, honeypots are not passive decoys.



They are:




  • verification instruments

  • used only for ambiguous traffic

  • dynamically selected based on protocol and behavior



Instead of blocking suspicious flows:




  • I let them interact in a controlled environment

  • observe command patterns, persistence, retries, payload changes

  • and then retroactively update trust



This turns uncertainty into signal.









Results (Prototype Evaluation)



Using the UNSW-NB15 dataset as a baseline:




  • Baseline false positive rate: 12.8%

  • After staged validation: 0.48%

  • Net reduction: ~96.2%



Latency impact:




  • ML inference: ~0.003–0.007 ms amortized per flow under batched execution (batch size dynamically determined by ingress buffering and scheduler constraints (≈143,000 flows/sec))

  • Honeypot routing: applied only to the ambiguous traffic subset, leaving high-confidence benign and malicious flows on the fast path

  • Overall impact: no blanket performance degradation on backbone traffic, as enforcement and verification are decoupled from primary detection



Crucially:




  • No legitimate traffic was blocked purely on model output

  • Enforcement only happened after behavioral confirmation









Why This Works Better Than “Better Models”



I tried:




  • deeper ensembles

  • tighter thresholds

  • feature engineering



All of them helped marginally.



None solved the core issue.



The improvement came from system design, not model tuning.



Key principles:




  • Separate signal generation from action

  • Treat uncertainty as a first-class state

  • Use interaction, not prediction, to resolve ambiguity









Implications for AI Security Systems



This pattern generalizes beyond IPS:




  • Fraud detection

  • Abuse prevention

  • Account takeover detection

  • Even EO/GeoAI risk verification



Anywhere false positives are expensive:




Decoupling detection from enforcement is mandatory.










What I’d Do Next



If this were production-bound:




  • Replace static honeypots with adaptive service emulations

  • Add long-term trust scoring

  • Integrate cross-session behavioral memory

  • Move toward agent-based verification instead of rule-bound traps









Closing Thought



AI doesn’t fail security systems.

Coupling does.



If your system can’t say “I’m not sure yet”,

it will eventually say “block everything” — or nothing at all.









By



Alay Sharma

1. Sofort-Triage & Abwehrmaßnahmen

SOC Incident Playbook: Remote Code Execution (RCE) Defense
Syntax validiert (0 Fehler)
title: Detect Exploitation - Why AI-Powered IPS Systems Fail and How I Reduced False Positives by 96% Without Blocking Traffic
id: 056dd411-b5cd-4535-8315-2d372ecb350a
status: experimental
description: Automatisch generierte SIEM-Erkennungsregel basierend auf CTI Intelligence
references:
  - https://tsecurity.de/
author: iShareStuff CTI Automated Detection Engine
date: 2026-09-26
logsource:
  category: network_connection
  product: any
detection:
  selection:
      CommandLine|contains:
        - 'exploit'
  condition: selection
falsepositives:
  - Legitime administrative Zugriffe oder Penetrationstests
level: high
tags:
  - attack.initial_access
Syntax validiert (0 Fehler)
rule CTI_Threat_Indicator {
    meta:
        author = "iShareStuff CTI Automated Detection Engine"
        date = "2026-09-26"
        description = "YARA Signature for "
    strings:
        $str = "Why AI-Powered IPS Systems Fai" ascii wide
    condition:
        any of them
}
Syntax validiert (0 Fehler)
index=security sourcetype IN ("cisco:asa", "pan:traffic", "zeek_conn", "suricata", "WinEventLog:Security")
("Why AI-Powered IPS Systems Fail and How ")
| stats count earliest(_time) as first_seen latest(_time) as last_seen by src_ip, dest_ip, dest_host, signature
| eval first_seen=strftime(first_seen, "%Y-%m-%d %H:%M:%S"), last_seen=strftime(last_seen, "%Y-%m-%d %H:%M:%S")
| sort - count
Syntax validiert (0 Fehler)
message: "*Why AI-Powered IPS Systems Fail and How *"
Syntax validiert (0 Fehler)
CommonSecurityLog
| where Message has "Why AI-Powered IPS Systems Fail and How "
| summarize EventCount = count(), FirstSeen = min(TimeGenerated), LastSeen = max(TimeGenerated) by SourceIP, DestinationIP, DestinationPort, Activity
| extend DetectionRule = "iShareStuff-CTI-Compiled"
| sort by EventCount desc

2. Cyber Threat Intelligence & Forensik

🎯
MITRE ATT&CK Matrix Navigator 14 Taktiken
Reconnaissance
-
Resource Development
-
Initial Access
Execution
Persistence
-
Privilege Escalation
Defense Evasion
Credential Access
-
Discovery
-
Lateral Movement
-
Collection
-
Command and Control
Exfiltration
-
Impact
tsecurity.de Cognitive Threat RAG
Fokus-Vektor:

Kognitive Analyse für identifizierte Bedrohung: Erhöhte Bedrohungslage im Bereich Why AI-Powered IPS Systems Fail and How .... Basierend auf 368k Vektor-Korrelationen werden sofortige Isolationsmaßnahmen für betroffene Endpunkte empfohlen.

🛡️ Angriffsfläche & Exposure

Netzwerk/Remote-Zugriff ohne Vorauthentifizierung möglich.

⚡ Empfohlene Sofortmaßnahmen
  • 1. Perimeter-Inspektion: Relevante Portfreigaben und exponierte Endpunkte unverzüglich scannen.
  • 2. Patch-Applikation: Hersteller-Hotfix einspielen oder betroffene Daemons in isolierte DMZ-Segmente überführen.
  • 3. Telemetrie & EDR-Alerts: Prozessaufrufe und Child-Processes auf anomale Shell-Spawns überwachen.
🔗 Semantisch verwandte Zero-Days MariaDB 11.7 VEC
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten Why AI-Powered IPS Systems Fail and How I Reduced False Positives by 96% Without Blocking Traffic

Thematisch verwandte Begriffe: AIPowered, Systems, Fail, Reduced · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-88003 | InvoicePlane is a self-hosted open source application for managing invoi…
Advisory →
tsecurity.de Icon
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag