Abstract

Autonomous SOC platforms that take containment actions without human confirmation introduce a new attack class: false-positive weaponization, in which the attacker's goal is not to evade detection but to be detected by a carefully crafted artificial event, so the defender's own response automation takes a harmful action. This article names and formalizes the Defender-as-Weapon (DaW) attack pattern, constructs a three-variant taxonomy (quarantine, credential revocation, and network block weaponization), derives the DaW cost equation that explains why the asymmetry between attacker cost and defender damage makes it economically rational, and builds the reversibility constraint as the core architectural defense. The primary finding is that DaW attacks are enabled not by a flaw in the detection model but by a flaw in the response architecture: any autonomous action whose execution is cheaper than its reversal, and whose trigger is achievable at lower cost than the expected damage, constitutes an exploitable DaW surface.

Security operations orthodoxy treats false positives as a nuisance — wasted analyst attention and alert fatigue. In an autonomous SOC that takes containment actions without human confirmation, a false positive is no longer merely a waste of time. It is a weapon. An attacker who can reliably trigger a specific false positive in an autonomous detection system can cause that system to quarantine a production server, revoke the credentials of a key service account, or block a critical network segment. The attacker's goal is not concealment but disclosure — to be detected, and to direct the consequences of that detection against the defender's own infrastructure. This article names this attack class the Defender-as-Weapon (DaW) pattern, formalizes its economics, and derives the architectural controls that close the attack surface without compromising autonomous response capability.

The DaW Pattern: From Nuisance to Weapon

A false positive, in the conventional SOC context, is an alert generated in response to benign activity that the detection model incorrectly classified as malicious. Its cost is measured in analyst time: the human who reviews the alert, determines it is benign, and closes it. That cost is bounded and recoverable. In an autonomous SOC where the triage-to-response pipeline executes without a human confirmation step, the cost of a false positive is no longer bounded to analyst attention — it extends to whatever action the autonomous responder takes upon receiving the alert.

The DaW pattern exploits this architectural property. The attacker deliberately generates a benign-looking event that they expect will trigger a specific detection rule, and they choose that rule specifically because its autonomous response action will cause operational harm to the defender. The attacker is not trying to evade detection. They want to be detected — by a specific rule, at a specific time, against a specific target.

This attack class is structurally distinct from other autonomous SOC manipulation strategies that avoid or suppress detection. DaW is an affirmative exploitation of the detection-to-response pipeline: the attacker uses the pipeline as an execution primitive, directing its containment actions against the defender's own assets. NIST AI 100-1 (2023) identifies reliability and safety failures of AI systems as primary risk categories; DaW attacks instantiate the safety failure class specifically by exploiting the autonomous system's response capability against its operator's interests.

🛡️ Countermeasures
  • Treat any autonomous containment action as a security-critical operation with equivalent safeguards to a privileged administrative action: require audit logging, rate limiting, and blast-radius constraints regardless of the confidence score that triggered it.
  • Map every detection rule to its autonomous response action and assess each mapping for DaW exploitability: can an attacker at a minimum foothold generate the triggering events for this rule? Is the response action reversible within a defined window? If not, escalate the response to human confirmation.
  • Apply the DaW test to the response architecture during design review: for each planned autonomous response action, ask 'could an attacker force this action against our infrastructure, and what would that cost us?'

Threat Model: Three DaW Sub-Patterns

DaW attacks decompose into three variants based on the response action the attacker induces: quarantine weaponization, credential revocation weaponization, and network block weaponization. Each targets a different layer of the SOC's autonomous response capability.

Quarantine weaponization induces the autonomous SOC to isolate a target host from the network. The attacker generates activity on or from a target host that triggers a high-confidence detection rule with an automatic quarantine response. If the host is a production server — a database, a payment processor, an authentication service — the quarantine action takes the service offline. The attacker chooses both the triggering activity (designed to match the detection rule) and the target (a host whose isolation causes maximum operational disruption). The attacker does not need access to the target host; they only need to generate events that appear to originate from it or are associated with it.

Credential revocation weaponization induces the autonomous SOC to revoke or suspend the credentials of a target service account. If the target account is a shared service identity used by a critical application, revocation causes an authentication failure cascade: every service that depends on that account stops functioning until a human administrator manually restores the credentials. The attacker's trigger must match a detection rule whose automated response is credential suspension — common in zero-trust architectures that implement automated identity-based containment.

Network block weaponization induces the autonomous SOC to block a network path, IP range, or firewall rule in a way that cuts off critical connectivity. The target may be the path between two production services, a BGP peer, or a cloud provider's API endpoint. Like quarantine and credential attacks, the trigger must be crafted to match a high-confidence detection rule whose response action is a network configuration change. Network block attacks are often harder to attribute — the connectivity loss may appear at first as a network infrastructure failure rather than a security incident.

The DaW attacker's goal of operational disruption decomposes into three weaponizable response action classes, each targeting a different layer of the autonomous SOC's containment capability.Defender-as-Weapon Attack SurfaceOperational DisruptionDaW attacker goalQuarantineWeaponizationisolate production hostCredential Revocationsuspend service accountNetwork Blockcut critical path
The DaW attacker's goal of operational disruption decomposes into three weaponizable response action classes, each targeting a different layer of the autonomous SOC's containment capability.
🛡️ Countermeasures
  • For each DaW sub-pattern, define a DaW-resistant detection rule standard: any rule whose automated response action can cause quarantine, credential revocation, or network block must require corroboration from two independent signals before autonomous execution.
  • Maintain an explicit list of assets in each category (production-critical hosts, shared service accounts, critical network paths) that are excluded from single-signal autonomous containment; these assets require human confirmation regardless of the alert's confidence score.
  • Implement a 'DaW surface audit' before deploying or modifying any detection rule with an automated containment response: enumerate every asset the rule could autonomously contain, and assess whether any is in the excluded high-impact category.

Quarantine Weaponization: The Production-Host Kill Chain

The quarantine sub-pattern illustrates the DaW mechanism most clearly. Consider an environment where a detection rule fires on 'process injection detected on a host' and triggers an automated quarantine response — the host is removed from the production network segment. This detection-response pair is designed for workstations running endpoint detection agents.

An attacker with code execution on any host on the same network can generate spoofed process telemetry appearing to originate from a target production server. Depending on the endpoint detection implementation, this may require nothing more than sending crafted log entries to the SIEM from a compromised workstation — the same telemetry injection primitive described in the literature — but with the goal of triggering, rather than evading, the detection rule. The attacker selects the highest-impact production host as the spoofed source.

The response automation quarantines the target production host within the rule's response latency — often seconds. The host loses network connectivity. Any services running on it become unavailable. The operations team receives an alert of a 'security incident' and begins incident response procedures. While the operations team investigates a false alarm, the attacker proceeds with their actual objective: data exfiltration from a now-less-monitored system, lateral movement using a different path, or establishing persistence during the incident response confusion.

The attack's operational effectiveness relies on the time asymmetry between the SOC's automated containment (seconds) and the operations team's response to restore the quarantined host (minutes to hours, depending on whether the incident responders quickly determine the alert was a false positive). During that window, the attacker has operational cover — the security team is focused on a false alarm.

The DaW attacker creates a feedback loop in which crafted events cause autonomous containment, containment creates operational disruption, and disruption enables the actual attack objective.DaW Feedback Loop: False Positive as an Execution PrimitiveCraft FP Eventstarget specific ruleDetection Fireshigh-confidence triggerAutonomousContainmentquarantine /revoke / blockOperationalDisruptionservice outageExploitationWindowattacker proceedsrule matchesauto-responseasset unavailablecover providedrepeat if needed
The DaW attacker creates a feedback loop in which crafted events cause autonomous containment, containment creates operational disruption, and disruption enables the actual attack objective.
🛡️ Countermeasures
  • Require that process injection detection rules triggering automated host quarantine be validated against the detection agent on the target host, not only against SIEM log entries — spoofed telemetry that does not match the agent's own on-host records should not trigger an automated quarantine.
  • Set a maximum quarantine duration without human confirmation: any automated quarantine that is not confirmed by a human analyst within a configured time limit (e.g., 15 minutes) is automatically reversed. This limits the DaW attack's operational window.
  • Generate a meta-alert whenever an automated quarantine or credential revocation action is executed: the response action itself is a security event that should be reviewed independently of the detection that triggered it.

The DaW Cost Equation: Why the Asymmetry Is Exploitable

The economic rationale for DaW attacks is a cost asymmetry: the attacker's cost to generate a triggering false positive is substantially lower than the defender's cost to recover from the automated response action. Formalizing this asymmetry clarifies under what conditions the attack is rational and how defenses can shift the asymmetry.

Let C_trigger be the attacker's cost of generating the triggering events — the operational cost of producing the activity that matches the target detection rule. For a quarantine attack relying on spoofed SIEM telemetry, this may require only code execution on a single compromised workstation. Let D_quarantine be the defender's operational cost of an unplanned production host quarantine: service downtime cost per minute multiplied by the mean time to restore (MTTR) the quarantined host to production. For a high-traffic production service, D_quarantine may be orders of magnitude larger than C_trigger.

Biggio and Roli (2018) characterized the adversarial advantage in terms of the cost asymmetry between attack and defense in the ML setting. In the DaW context, the analogous asymmetry is between the cost of generating a triggering input (attack) and the cost of the automated response action (defense absorbed as attack impact). The DaW attack succeeds when D_quarantine × P_success > C_trigger, where P_success is the probability that the crafted events trigger the intended detection rule and produce the desired automated response. The condition is met trivially when D_quarantine >> C_trigger, which is the case for any production service whose downtime cost far exceeds the cost of generating a few dozen spoofed log entries.

The practical implication is that the DaW attack becomes more economically attractive — and therefore more likely to be exploited — as autonomous SOC platforms expand the set of automated containment actions available to them without proportionally increasing the safeguards on those actions. Each new automated response capability added to the SOC is a new DaW surface if it lacks reversibility controls.

The attacker's cost to trigger a DaW response is typically orders of magnitude lower than the defender's operational cost to recover from it, making the attack economically rational.DaW Cost Asymmetry: Attacker vs. DefenderAttacker Trigger Costgenerate spoofed eventsDefender MTTR Costproduction downtimeDefender RecoveryCostincident response effortRate-Limited Triggerwith DaW controlsBounded Blast Radiuswith reversibility gatelow costvery high costhigh costreducedboundedBars show illustrative relative magnitudes; absolute values are environment-specific.
The attacker's cost to trigger a DaW response is typically orders of magnitude lower than the defender's operational cost to recover from it, making the attack economically rational.
🛡️ Countermeasures
  • Measure and publish the DaW asymmetry for each detection-to-response rule pair: calculate D_quarantine for each asset class and compare it to the estimated C_trigger; any pair where D_quarantine >> C_trigger without a confirming safeguard is a high-priority DaW risk.
  • Apply economic safeguards that increase C_trigger: require additional confirming evidence that is harder to spoof (e.g., EDR agent attestation, network flow confirmation) before executing high-D_quarantine response actions, so the attacker's cost to trigger must exceed a minimum that is closer to D_quarantine.
  • Set organizational DaW thresholds: define a maximum acceptable D_quarantine for any automated response action and require human confirmation for actions that exceed that threshold.

The Reversibility Constraint

The DaW attack's operational window is bounded by the defender's recovery time: the time from when the automated containment action is executed to when it is reversed after the false positive is identified. During this window, the attacker has the operational disruption they sought. A shorter recovery time reduces the attack's effectiveness; a recovery time of zero (perfectly reversible actions executed with an automatic undo) eliminates it entirely.

The reversibility constraint is an architectural requirement for any autonomous SOC response: every automated containment action must have a defined undo path whose execution is at least as fast as the action itself, and ideally automatic. A quarantine action that can be executed in five seconds must have a restoration path that can be executed in five seconds. A credential revocation that takes seconds to execute must have a re-provisioning path that takes seconds — not hours, as is common in environments where credential restoration requires manual helpdesk ticket resolution.

In practice, many autonomous SOC response actions have asymmetric reversibility: the undo path is substantially slower than the action path. NIST AI 100-1 (2023) identifies graceful degradation and recovery as required AI safety properties; the reversibility constraint is the autonomous SOC's realization of those properties in the specific context of containment actions. Implementing it requires two architectural changes: first, every automated response action must be executed through an automation layer that records the exact configuration change made and supports an atomic undo operation; second, the reversal must be triggered automatically when the alert is confirmed as a false positive, not left to manual operator action.

Rubinstein et al. (2009) showed that defenders can reduce the impact of adversarial input manipulation by monitoring for anomalous patterns in the manipulation itself — in the DaW context, this translates to monitoring for patterns of triggered-and-immediately-reversed automated responses, which may indicate an attacker is probing the detection rules for DaW targets.

🛡️ Countermeasures
  • Define and document the reversibility time for every automated response action before deployment; any action without a defined reversibility time must not be deployed for autonomous execution.
  • Implement automated reversal: when an alert that triggered an autonomous containment action is subsequently closed as a false positive, trigger an automatic reversal of the containment action without requiring manual operator intervention.
  • Audit the undo-path latency for existing automated response actions quarterly; flag and escalate any action whose reversal latency exceeds its execution latency by more than a configurable factor.

Countermeasures: Closing the DaW Surface

DaW attacks are enabled by three architectural properties that can each be addressed independently: single-signal autonomous action (a high-confidence score alone is sufficient to trigger containment), irreversible response actions (the undo path is too slow or too manual to limit the attack window), and unconstrained blast radius (any asset can be autonomously contained regardless of its production criticality).

Single-signal protection requires a corroboration requirement for all high-impact automated actions. Any response action that can quarantine a production host, revoke a service credential, or block a network path must require confirmation from at least two independent signal sources before execution. The second signal must be from a channel that is structurally independent of the first — if the first signal is SIEM-normalized event telemetry, the second must be from the on-host EDR agent, a network flow record, or an identity provider authentication event. This makes DaW attacks that rely on a single spoofable channel (e.g., SIEM telemetry injection) insufficient to trigger the target response.

Irreversibility protection requires the automated restoration infrastructure described in the reversibility constraint above: every action has an atomic undo, and that undo is triggered automatically on false-positive confirmation. This converts the DaW window from 'time to identify and manually restore' to 'time to identify' — a substantially shorter interval.

Blast-radius limits require defining a protected asset tier that cannot be autonomously contained by any single detection rule. Production-critical hosts, shared service accounts, and critical network paths are placed in this tier and require human confirmation for any containment action. This does not eliminate autonomous containment — it scopes it to assets below the blast-radius threshold. Apruzzese et al. (2023) note that effective ML-based security systems must be designed with an explicit account of their failure modes and their consequences; blast-radius limits operationalize that requirement for the autonomous SOC.

A DaW-hardened autonomous SOC gate checks reversibility and corroboration before executing any containment action, escalating to human review for high-blast-radius targets.DaW-Hardened Response Decision GateContainment Action?response triggeredYesIn Protected Tier?critical host / accountYesNoHuman Confirmationmandatory reviewCorroboration Met?2+ independent sourcesYesNoExecute + Auto-UndoPathreversible, timedEscalateinsufficient evidence
A DaW-hardened autonomous SOC gate checks reversibility and corroboration before executing any containment action, escalating to human review for high-blast-radius targets.
🛡️ Countermeasures
  • Deploy the decision gate shown above as a hard policy layer between the alert triage engine and any automated containment actuator; all automated response actions flow through the gate without exception.
  • Test the gate quarterly using DaW canary scenarios: attempt to trigger a targeted false positive against a canary asset in the protected tier and verify that the gate escalates to human review rather than executing autonomously.
  • Log every gate decision with full provenance — the alert, the confidence score, the corroboration check results, and the action taken — for forensic audit.

Limitations

This analysis frames DaW attacks as requiring the attacker to know the target detection rule and its automated response action. In practice, the attacker may need to probe the environment to discover which rules have automated responses and which response actions those rules trigger. Probing itself carries a detection risk — repeated anomalous events that do not trigger containment responses give the attacker information about which rules are not configured for automated response. A monitoring layer that tracks probe-like patterns (many distinct anomalous events below response thresholds from the same source) adds cost to the attacker's reconnaissance phase.

The corroboration requirement countermeasure assumes that the two independent signal channels are structurally separate. If both channels ultimately derive from the same underlying data source — for example, if both the SIEM event and the EDR telemetry are ingested from the same endpoint agent — a DaW attacker who compromises the agent can spoof both signals simultaneously. The architectural independence of the corroboration channels must be verified empirically, not assumed.

The economic analysis (DaW cost equation) is qualitative rather than quantitative: it establishes the direction of the asymmetry but does not provide measured values of C_trigger or D_quarantine for any specific environment. These values are environment-specific and can be measured using the assessment harness in the toolkit below.

⚠️
No-touch DaW. An attacker does not need access to the target asset to execute a quarantine or credential revocation DaW attack — they only need the ability to generate events that appear to originate from or be associated with it, which is possible through SIEM telemetry injection from any compromised host on the same segment.
🛡️ Countermeasures
  • Monitor for DaW probe patterns: repeated anomalous events from the same source that do not trigger containment responses may indicate an attacker mapping the detection-to-response rule set; flag and escalate such patterns as reconnaissance candidates.
  • Verify that corroboration channel pairs are architecturally independent at each annual architecture review; document any dependency chain between the two channels and flag shared underlying data sources as DaW risks requiring additional safeguards.
  • Run the DaW cost assessment harness (see toolkit) quarterly to measure the current C_trigger and D_quarantine for the top-10 DaW-risk detection-to-response rule pairs.

Key takeaways

  • The Defender-as-Weapon (DaW) attack pattern exploits autonomous SOC response automation by deliberately triggering a false positive to cause the defender's own containment actions to disrupt production — the attacker's goal is not evasion but weaponized detection.
  • DaW attacks decompose into three sub-patterns (quarantine, credential revocation, and network block weaponization) each targeting a different autonomous response action layer; a DaW surface exists wherever an automated response action can be triggered by events an attacker can generate.
  • The DaW cost equation explains why the attack is economically rational: for any production-critical asset, the operational cost of unplanned quarantine or credential revocation vastly exceeds the attacker's cost to generate the triggering events — a fundamental asymmetry that defenders must close architecturally.
  • The reversibility constraint is the core architectural defense: every automated containment action must have an atomic undo path of equal or shorter latency, triggered automatically on false-positive confirmation, converting the DaW exploitation window from minutes/hours to seconds.
  • Three independent safeguards close the DaW surface: corroboration requirements (two independent signal sources before autonomous action), a protected asset tier (critical hosts and accounts require human confirmation), and blast-radius limits (scope autonomous containment to assets below a defined impact threshold).

Practitioner Toolkit

Copy-paste, strictly defensive artifacts you can use today. Nothing here attacks a real system.

DaW Risk Surface Audit Gatechecklist

Pre-deployment gate checklist for assessing any new detection-to-response rule pair for DaW exploitability.

  • The response action is documented with its exact execution scope (which asset classes it can affect)
  • Every asset that can be autonomously affected by this rule is classified by production-impact tier (critical / standard / dev)
  • Critical-tier assets require corroboration from 2+ independent signal sources before this rule can trigger autonomous containment
  • A reversibility path is defined: the undo operation is atomic, its latency is ≤ the action latency, and it is triggered automatically on false-positive confirmation
  • A blast-radius calculation has been performed: the maximum number of assets this rule can autonomously contain in any 15-minute window is documented and approved
  • The triggering event criteria have been assessed for DaW exploitability: can an attacker at minimum foothold generate events that match the rule against a target they do not control?
  • The DaW cost ratio (D_quarantine / C_trigger) has been estimated for the top-5 target assets; any pair with a ratio > 100:1 requires a mandatory second signal
  • A DaW canary test has been run against a staging copy of this rule before production deployment
🧪DaW Cost Assessment Harnessharness

Pseudocode harness for measuring C_trigger and D_quarantine for a detection-to-response rule pair — run against staging only.

# DaW Cost Assessment Harness
# Measures attacker cost to trigger a rule and defender cost if the rule fires
# MUST NOT run against production systems

RULE_ID = 'process-injection-auto-quarantine'  # rule under assessment
CANARY_HOST = 'canary-lab-server-01'  # staging canary, not production

# Step 1: Measure C_trigger (attacker cost)
# How many events / what type of access is needed to trigger the rule?
def measure_trigger_cost(rule_id, target_host):
    start_time = now()
    # Generate synthetic events that match the rule's criteria
    # (sanitized canary events in lab environment only)
    synthetic_events = generate_canary_events(rule_id, source=target_host)
    inject_to_siem(synthetic_events)
    alert_triggered = wait_for_rule_trigger(rule_id, timeout=60)
    trigger_latency = now() - start_time
    return {
        'events_needed': len(synthetic_events),
        'latency_seconds': trigger_latency,
        'access_required': 'single-host code exec',
        'triggered': alert_triggered
    }

# Step 2: Measure D_quarantine (defender cost if rule fires)
def measure_defender_cost(target_host):
    # Estimate downtime cost from asset metadata
    asset = get_asset_metadata(target_host)
    downtime_cost_per_minute = asset.business_value / (365 * 24 * 60)
    mean_restore_minutes = measure_restore_time(target_host)  # from DR runbooks
    return {
        'downtime_cost_per_min': downtime_cost_per_minute,
        'mean_restore_minutes': mean_restore_minutes,
        'total_d_quarantine': downtime_cost_per_minute * mean_restore_minutes
    }

trigger = measure_trigger_cost(RULE_ID, CANARY_HOST)
cost = measure_defender_cost(CANARY_HOST)
ratio = cost['total_d_quarantine'] / max(trigger['events_needed'], 1)
if ratio > 100:
    report('HIGH DaW RISK: asymmetry ratio %d:1 — requires second signal safeguard' % ratio)
Sanitized pseudocode — staging/lab environment only. Never run against production systems, real credentials, or live network paths.
📝DaW-Aware Autonomous Response Policy Promptprompt template

System prompt for an LLM-assisted policy review agent that evaluates any proposed detection-to-response rule for DaW exploitability.

You are a security architecture reviewer evaluating a proposed autonomous SOC detection-to-response rule for Defender-as-Weapon (DaW) attack exploitability.

A DaW attack occurs when an adversary deliberately triggers a false positive in the detection rule to cause the automated response action to harm the defender's own production infrastructure.

For the rule presented to you, evaluate the following:

1. TRIGGER ACCESSIBILITY: Can an attacker with only single-host code execution generate events that match this rule's detection criteria against a target they do not control? If yes, what is the minimum footprint required?

2. RESPONSE IMPACT: What is the highest-impact production asset that this rule could automatically contain? Classify it as CRITICAL (service outage if contained), STANDARD (recoverable within 15 min), or DEV (no production impact).

3. REVERSIBILITY: Is the response action reversible within 5 minutes by an automated undo operation, or does reversal require manual operator action?

4. CORROBORATION: Does the rule require two independent signal sources to trigger, or can a single spoofable signal source (e.g., SIEM telemetry alone) trigger it?

5. DaW VERDICT: Based on your analysis, rate this rule as HIGH / MEDIUM / LOW DaW risk, with a one-sentence justification and a specific architectural change that would reduce the risk rating.

Format your response as: TRIGGER_ACCESSIBILITY | RESPONSE_IMPACT | REVERSIBILITY | CORROBORATION | DaW_VERDICT | RECOMMENDED_CHANGE
Paste into the policy review agent's system prompt when evaluating new automated response rules.

Glossary

Defender-as-Weapon (DaW)
An attack pattern in which the adversary deliberately triggers a false positive in an autonomous SOC to cause the defender's own response automation to take a harmful containment action against the defender's production infrastructure.
Quarantine Weaponization
A DaW sub-pattern in which the attacker crafts events to trigger an automated host isolation response against a production-critical target.
Credential Revocation Weaponization
A DaW sub-pattern in which the attacker crafts events to trigger an automated credential suspension response against a service account whose revocation causes an authentication failure cascade.
Network Block Weaponization
A DaW sub-pattern in which the attacker crafts events to trigger an automated firewall rule or network policy change that cuts off critical connectivity.
Reversibility Constraint
An architectural requirement that every automated SOC containment action must have a defined atomic undo path with latency no greater than the action itself, triggered automatically on false-positive confirmation.
DaW Cost Equation
The economic condition under which a DaW attack is rational: when the defender's operational damage from the automated response action, multiplied by the probability of success, exceeds the attacker's cost to generate the triggering events.
Blast-Radius Limit
An architectural control that restricts autonomous containment to assets below a defined production-impact threshold, requiring human confirmation for actions against production-critical hosts, service accounts, or network paths.
Corroboration Requirement
A safeguard requiring that any automated containment action be triggered only by two or more structurally independent signal sources, preventing single-channel spoofing from being sufficient to cause a DaW response.

References

  1. MITRE ATLAS: Adversarial Threat Landscape for AI Systems
  2. OWASP Agentic Security Initiative: Agentic AI Threats and Mitigations (2025)
  3. OWASP Top 10 for LLM Applications (2025)
  4. NIST AI 100-1: Artificial Intelligence Risk Management Framework (AI RMF 1.0)
  5. Biggio & Roli — Wild Patterns: Ten Years After the Rise of Adversarial Machine Learning (Pattern Recognition, 2018)
  6. Sommer & Paxson — Outside the Closed World: On Using Machine Learning for Network Intrusion Detection (IEEE S&P, 2010)
  7. Apruzzese et al. — The Role of Machine Learning in Cybersecurity (Digital Threats: Research and Practice, 2023)
  8. Rubinstein et al. — ANTIDOTE: Understanding and Defending Against Poisoning of Anomaly Detectors (IMC, 2009)