What is AI Incident Response?
AI incident response is the structured process of detecting, containing, investigating, and recovering from failures or security incidents in AI and machine learning systems. Unlike traditional IT incident response, which focuses on infrastructure availability and data breaches, AI incident response addresses the unique failure modes of probabilistic systems.
How AI Incident Response Differs from Traditional IR
Traditional IR vs. AI Incident Response
| Dimension | Traditional IR | AI Incident Response |
|---|---|---|
| Primary Focus | System availability, data confidentiality | Model performance, output quality, fairness |
| Incident Types | Malware, DDoS, unauthorized access | Model drift, adversarial attacks, bias, hallucinations |
| Detection Methods | SIEM, IDS/IPS, log analysis | Performance monitoring, drift detection, anomaly detection |
| Forensics | Disk imaging, memory dumps, network captures | Model interrogation, feature attribution, training data analysis |
| Recovery | Restore from backup, patch systems | Model rollback, retraining, data cleaning, validation |
| Skills Required | Security analysts, network engineers | Data scientists, ML engineers, security researchers |
The NIST Computer Security Incident Handling Guide (SP 800-61) provides the foundational framework for incident response, but requires AI-specific adaptations. MITRE’s ATLAS framework (Adversarial Threat Landscape for Artificial-Intelligence Systems) extends traditional ATT&CK with ML-specific tactics and techniques.[6][7]
Types of AI Incidents
AI incidents fall into several distinct categories, each requiring different detection and response procedures:
1. Model Performance Degradation
Gradual or sudden decline in model accuracy, precision, or recall. Causes include data drift (input distribution changes), concept drift (relationship changes between features and target), training-serving skew, or infrastructure issues.
Example: Amazon’s Hiring Algorithm (2018)
Amazon abandoned an AI recruiting tool after discovering it systematically downgraded resumes from women. The model was trained on historical hiring data that reflected gender bias in technical roles, learning to penalize keywords like "women’s chess club captain."[8]
2. Adversarial Attacks
Intentional manipulation of inputs to cause misclassification or targeted behavior. Types include evasion attacks (test-time perturbations), poisoning attacks (training data corruption), model extraction, and membership inference attacks.
Example: Tesla Autopilot Phantom Braking (2021-2022)
Researchers demonstrated adversarial attacks against Tesla’s vision system using strategically placed stickers that caused phantom object detection and emergency braking. NHTSA investigated over 750,000 vehicles for sudden braking incidents.[9]
3. Data Poisoning
Corruption of training data to degrade model performance or introduce backdoors. Particularly dangerous in systems using continuous learning, federated learning, or third-party datasets.
Example: Microsoft Tay (2016)
Microsoft’s Tay chatbot was taken offline within 16 hours after coordinated users exploited its learning mechanism to teach it offensive content. The bot learned from Twitter interactions without adequate filtering, demonstrating the vulnerability of online learning systems to data poisoning.[10]
4. Bias and Discrimination Incidents
Systematic unfair treatment of protected groups. Can result from biased training data, proxy features, or amplification of historical discrimination. Carries legal and reputational risk.
Example: SafeRent Solutions ($2.2M Settlement, 2024)
SafeRent’s tenant screening algorithm faced class-action litigation for systematic discrimination against Black and Hispanic renters. The settlement required eliminating automated accept/decline scores and mandatory independent fairness audits.[11]
5. Hallucinations and Output Failures
Generative AI producing false, fabricated, or nonsensical outputs presented as factual. Particularly dangerous in legal, medical, and financial applications where users trust AI-generated content.
Example: Air Canada Chatbot Liability (2024)
Air Canada was held liable for incorrect bereavement fare information provided by its chatbot. The court ruled the airline responsible for its chatbot’s statements, establishing precedent that companies cannot disclaim responsibility for AI-generated misinformation.[12]
6. Privacy Breaches and Data Leakage
Unintended exposure of training data through model outputs, membership inference attacks that reveal whether specific individuals were in training data, or model inversion attacks that reconstruct training samples.
Example: Samsung ChatGPT Ban (2023)
Samsung banned employee use of ChatGPT after engineers accidentally leaked proprietary source code and meeting notes by using the tool for code optimization and meeting transcription. The data became part of ChatGPT’s training corpus, potentially exposing it to competitors.[13]
The AI Incident Response Lifecycle
Based on NIST SP 800-61, the AI incident response lifecycle consists of six phases. Unlike traditional IR, AI incidents often require iteration between investigation and containment as root causes emerge through model analysis.
Preparation
Build capabilities before incidents occur: monitoring infrastructure, runbooks, team training, stakeholder contacts, rollback procedures.
Detection
Identify anomalies through automated monitoring, user reports, or external notifications. Determine if incident requires escalation.
Containment
Stop ongoing harm while preserving evidence. Options: model rollback, traffic reduction, feature flags, circuit breakers, full shutdown.
Eradication
Remove root cause: clean poisoned data, retrain models, patch vulnerabilities, remove backdoors, address bias sources.
Recovery
Restore normal operations: validate corrected model, implement enhanced monitoring, gradual rollout, stakeholder communication.
Lessons Learned
Post-incident review: document timeline, identify gaps, update procedures, implement preventive controls, share knowledge.
Building an AI Incident Response Team
AI incident response requires a cross-functional team combining traditional security skills with AI/ML expertise. Larger organizations may maintain dedicated AI security teams; smaller organizations can augment existing IR teams with ML specialists.
Core Roles and Responsibilities
AI Incident Response Team RACI Matrix
| Role | Responsibilities | Required Skills |
|---|---|---|
| Incident Commander | Coordinate response, stakeholder communication, decision authority | Leadership, communication, technical breadth |
| ML Engineer | Model forensics, performance analysis, retraining, deployment | MLOps, model debugging, feature engineering |
| Data Scientist | Statistical analysis, bias detection, data quality assessment | Statistics, fairness metrics, exploratory analysis |
| Security Analyst | Adversarial attack investigation, forensics, threat intelligence | Security analysis, MITRE ATLAS, adversarial ML |
| Data Engineer | Data lineage tracing, pipeline investigation, data cleaning | ETL, data governance, pipeline debugging |
| Legal/Compliance | Regulatory notification, disclosure decisions, liability assessment | AI regulations, privacy law, incident reporting |
| Communications | Customer notification, public statements, internal updates | Crisis communication, technical translation |
Detection and Monitoring
Effective AI incident response begins with robust detection capabilities. The average AI incident takes 4.5 days to detect—compared to 2.3 days for traditional security incidents—because organizations lack AI-specific monitoring.[2]
Detection Methods
- Performance Monitoring: Track accuracy, precision, recall, F1, AUC-ROC across demographic groups. Alert on degradation beyond thresholds (e.g., 5% accuracy drop, 10% disparity increase).
- Drift Detection: Monitor input distribution shift (data drift) and prediction distribution shift (concept drift) using statistical tests (KS test, PSI, JS divergence).
- Anomaly Detection: Identify unusual prediction patterns, confidence distributions, or feature values that may indicate adversarial inputs or data quality issues.
- Output Validation: Check for hallucinations using retrieval-augmented generation, fact-checking pipelines, or human-in-the-loop review for high-stakes decisions.
- User Reports: Establish clear channels for users to report unexpected behavior, bias, or errors. Many incidents (Amazon hiring, SafeRent) were detected through user complaints.
Monitoring Infrastructure
Production AI systems should implement comprehensive observability:
Essential Monitoring Capabilities
Model Metrics
- • Prediction accuracy and error rates
- • Confidence distributions
- • Fairness metrics (demographic parity, equalized odds)
- • Drift scores (data and concept)
Infrastructure Metrics
- • Inference latency and throughput
- • Resource utilization (CPU, GPU, memory)
- • Error rates and timeout frequency
- • Model version tracking
Data Quality
- • Feature distribution statistics
- • Missing value rates
- • Out-of-range value detection
- • Schema validation failures
Security Events
- • Adversarial input detection
- • Unusual query patterns
- • API abuse indicators
- • Model extraction attempts
Containment Strategies
Containment stops ongoing harm while preserving forensic evidence. AI incidents require model-specific containment tactics beyond traditional infrastructure isolation.
Containment Options (Ordered by Invasiveness)
Traffic Throttling
Tactic: Reduce traffic to affected model using rate limiting or load balancer adjustment. Use when: Investigating performance degradation but not confirmed critical failure. Preserves: Full functionality for reduced user base while limiting blast radius.
Shadow Mode
Tactic: Route production traffic through model for logging but use fallback for actual decisions. Use when: Suspected bias or accuracy issues requiring investigation without user impact. Preserves: Business continuity while collecting incident data.
Feature Flag Disable
Tactic: Disable AI feature while keeping core application functional. Use when: AI feature is non-critical and incident requires immediate mitigation. Preserves: Core service availability with graceful feature degradation.
Model Rollback
Tactic: Revert to previous known-good model version. Use when: Incident began after recent deployment and previous version was stable. Preserves: Previous functionality level; loses recent improvements.
Full Shutdown
Tactic: Complete service shutdown. Use when: Ongoing harm (privacy breach, safety risk, discriminatory decisions) exceeds business continuity value. Preserves: Organization from liability; eliminates service availability.
Containment Decision Matrix
Containment Strategy by Incident Type
| Incident Type | Severity Low | Severity Medium | Severity High |
|---|---|---|---|
| Performance Degradation | Traffic throttling | Shadow mode | Model rollback |
| Adversarial Attack | Rate limiting | Input filtering | Full shutdown |
| Data Poisoning | Shadow mode | Model rollback | Full shutdown + retrain |
| Bias/Discrimination | Shadow mode | Feature flag disable | Full shutdown |
| Hallucinations | Output filtering | Human-in-loop | Feature flag disable |
| Privacy Breach | Output filtering | Full shutdown | Full shutdown + legal |
Investigation and Root Cause Analysis
AI incident investigation requires both traditional forensics and ML-specific analysis techniques. The goal is to determine what happened, why it happened, and what data/models were affected.
Model Forensics Techniques
- Model Interrogation: Analyze decision boundaries, feature importance, and activation patterns to understand model behavior. Use SHAP values, LIME, or integrated gradients to explain individual predictions.
- Training Data Analysis: Inspect training data for quality issues, bias, or poisoning. Check data lineage to identify when/where corruption occurred. Compare training distribution to production inputs.
- Prediction Analysis: Review logged predictions during incident window. Identify patterns in misclassifications, confidence scores, or demographic disparities. Look for adversarial input signatures.
- Version Comparison: Compare incident model version to previous stable version. Use model diff tools to identify changed weights, architecture, or preprocessing. Check deployment logs for configuration changes.
- Supply Chain Review: Audit third-party models, datasets, libraries, and APIs. Check for known vulnerabilities in ML frameworks (CVEs in TensorFlow, PyTorch, etc.). Validate model provenance and checksums.
MITRE ATLAS Framework
For adversarial incidents, map attacker techniques to MITRE ATLAS (Adversarial Threat Landscape for AI Systems). ATLAS extends ATT&CK with ML-specific tactics:[7]
MITRE ATLAS Tactics
| Tactic | Description | Example Techniques |
|---|---|---|
| Reconnaissance | Gather information about ML system | Model probing, API exploration, documentation harvesting |
| Resource Development | Establish resources for attacks | Acquire datasets, develop perturbations, build shadow models |
| ML Model Access | Obtain model access or information | Model extraction, membership inference, API abuse |
| ML Attack Staging | Prepare attack components | Craft adversarial examples, poison training data, create backdoors |
| Evade ML Model | Cause misclassification | Adversarial perturbations, input manipulation, confidence reduction |
| Impact | Manipulate or disrupt ML capabilities | Model poisoning, availability attacks, integrity compromise |
Communication and Disclosure
AI incident communication requires balancing transparency, legal obligations, and reputation management. Regulatory requirements increasingly mandate disclosure of AI failures.
EU AI Act Article 73: serious incident reporting
Article 73 of Regulation (EU) 2024/1689 requires providers of high-risk AI systems to report serious incidents to the market surveillance authority of the member state where the incident occurred. Fifteen days is the outer limit, not the deadline — two shorter clocks override it, and the obligation starts as soon as a causal link to the AI system is established or reasonably suspected rather than when the investigation finishes:[14]
| Trigger | Deadline from awareness |
|---|---|
| Widespread infringement, or serious and irreversible disruption of critical infrastructure | 2 days |
| Death of a person | 10 days |
| All other serious incidents | 15 days |
An initial report may be incomplete. Where the full picture is not yet available, the expectation is that the provider files on time and follows up with a complete report, not that it waits for certainty and misses the window.
What Constitutes a “Serious Incident”?
- • Any incident that directly or indirectly leads to death, serious harm to health, or serious disruption of critical infrastructure
- • Serious breach of fundamental rights protected under EU law (discrimination, privacy, due process)
- • 15-day reporting deadline from when provider becomes aware of the incident
- • Follow-up reports required if additional information becomes available
The other two clocks: GDPR Article 33 and SOC 2
Most teams plan for one deadline and are then caught by a shorter one. A single AI incident routinely engages three regimes at once, and they start at different moments, run for different periods, and are owed to different people. The EU AI Act clock runs on a serious incident involving a high-risk system. The GDPR clock runs on personal data, which is the one most AI incidents actually touch. SOC 2 sets no external deadline at all but decides, after the fact, whether the response was auditable.
| Regime | Trigger | Clock | Owed to |
|---|---|---|---|
| EU AI Act Art. 73 | Serious incident involving a high-risk AI system | 2, 10 or 15 days from awareness | Market surveillance authority |
| GDPR Art. 33 | Personal data breach | 72 hours from awareness | Lead supervisory authority |
| GDPR Art. 34 | Breach posing high risk to individuals | Without undue delay | The affected individuals |
| SOC 2 CC7.3–CC7.5 | Any security event evaluated as an incident | No external deadline; tested at audit | The auditor, from your own records |
Three consequences worth designing for. GDPR is usually the binding constraint at 72 hours, and it runs on awareness rather than on confirmation, so a partial notification followed by updates is the expected pattern and not an admission of disorder. The GDPR and EU AI Act clocks can both be running on the same incident with different content owed to different authorities. And SOC 2 is the one that judges you retrospectively: CC7.3 asks whether the event was evaluated, CC7.4 whether it was responded to, and CC7.5 whether recovery happened, with an auditor sampling incidents from the period and testing whether the documented process was the process actually followed.
That last point is where AI incidents tend to fail an audit rather than fail a deadline. The response usually happened; what is missing is the record that it happened in the order claimed. If containment was a model rollback at 02:14 and a guardrail change at 02:40, the evidence needs to show both, with times and an approver, and it needs to have been written when the events occurred rather than reconstructed for the auditor afterwards.
Stakeholder Communication Matrix
Who to Notify and When
| Stakeholder | Timing | Content |
|---|---|---|
| Internal Leadership | Immediately upon detection | Incident summary, business impact, containment status |
| Legal/Compliance | Within 1 hour | Full technical details, regulatory exposure, disclosure obligations |
| Affected Users | 24-72 hours (depending on severity) | What happened, what data/decisions affected, remediation steps |
| Regulators (EU) | 15 days (serious incidents) | EU AI Act Article 73 format: nature, severity, corrective measures |
| Customers (B2B) | Per contractual SLA | Service impact, timeline, compensatory measures |
| Public/Media | Only if necessary | Controlled messaging, avoid speculation, focus on remediation |
Communication Best Practices
- Be Specific About Impact: Don’t say "some users may have been affected." Quantify: "Approximately 1,200 loan applications processed between March 1-5 may have been subject to biased scoring."
- Explain in Plain Language: Avoid jargon like "model drift" or "concept shift." Say: "Our fraud detection system became less accurate because customer behavior changed during the pandemic."
- Provide Recourse: Tell affected users what they can do. "If your application was denied between these dates, you can request manual review at [email/link]."
- Don’t Disclaim Responsibility: Air Canada tried to argue its chatbot was a "separate legal entity"—and lost. You’re responsible for your AI’s outputs.[12]
Recovery and Remediation
Recovery restores normal operations with validated fixes. Unlike traditional IR where recovery means "restore from backup," AI recovery often requires retraining, revalidation, and gradual rollout.
Recovery Steps
Root Cause Remediation
Actions: Clean poisoned data, retrain with balanced datasets, patch vulnerabilities, implement input validation, add adversarial robustness training.
Validation: Verify fix addresses root cause, not just symptoms. Test on holdout data representing incident conditions.
Model Revalidation
Actions: Run full test suite including fairness tests, adversarial robustness tests, edge case coverage, stress testing. Compare performance to pre-incident baseline.
Validation: Achieve statistical significance in improvement. Document test results for regulatory compliance.
Enhanced Monitoring
Actions: Add monitoring for incident-specific signals (e.g., if bias incident, add demographic disparity dashboards). Tighten alert thresholds. Implement earlier warning indicators.
Validation: Confirm alerts would have fired during incident timeline (backtesting).
Gradual Rollout
Actions: Deploy to canary environment (5% traffic) → staged rollout (25% → 50% → 100%). Monitor each stage for regression. Maintain rollback capability.
Validation: Performance metrics equal or exceed pre-incident baseline across all stages.
Stakeholder Notification
Actions: Notify affected users of resolution. Provide recourse for historical decisions (e.g., manual review of rejected applications). Update regulators on corrective measures.
Validation: Confirm all contractual and regulatory notification obligations met.
Post-Incident Review and Lessons Learned
Post-incident reviews convert incidents into organizational learning. Conduct within 1-2 weeks while details are fresh, with blame-free focus on process improvement.
Post-Incident Review Agenda
Essential Review Components
- Incident Timeline: Reconstruct complete timeline from initial cause through detection, containment, investigation, and recovery. Identify time gaps and delays.
- Detection Analysis: How was incident detected? Could it have been detected earlier? What monitoring gaps existed?
- Response Effectiveness: What worked well? What slowed response? Were runbooks accurate and helpful?
- Root Cause: Technical root cause, organizational root cause (why did vulnerability exist?), and contributing factors.
- Impact Assessment: Users affected, decisions impacted, financial cost, reputational damage, regulatory exposure.
- Prevention Measures: What controls would have prevented this? What controls would have detected it earlier?
- Action Items: Specific, assigned, time-bound improvements. Track to completion.
Documentation Requirements
Comprehensive incident documentation serves multiple purposes: organizational learning, regulatory compliance, legal protection, and customer transparency.
- Incident Report: Formal write-up including timeline, root cause, impact, response actions, and lessons learned. Share with leadership and retain for compliance.
- Technical Analysis: Detailed forensic findings, model analysis results, data quality assessment, and remediation validation. Archive for future reference.
- Communications Log: Record of all stakeholder notifications, regulatory filings, customer communications. Demonstrates compliance with disclosure obligations.
- Evidence Preservation: Retain logs, model snapshots, code versions, and data samples. May be required for regulatory investigation or litigation.
AI Incident Response Playbook Template
Every organization should maintain incident-specific playbooks. This template provides a starting structure:
Model Performance Degradation Playbook
Detection Triggers
- → Accuracy drops below 90% (5% degradation threshold)
- → Demographic disparity exceeds 10 percentage points
- → Data drift score (KS statistic) exceeds 0.3
- → User reports of incorrect predictions exceed 10/day
Immediate Actions (0-30 minutes)
- Confirm incident: Check monitoring dashboards for performance metrics
- Page on-call ML engineer and incident commander
- Open incident channel (#incident-model-[name]-[date])
- Assess severity using severity matrix (see below)
- Implement initial containment per severity level
Investigation Checklist
- ☐ Compare current vs. baseline performance metrics
- ☐ Analyze input data distribution for drift
- ☐ Review recent deployments and configuration changes
- ☐ Check data pipeline health and data quality metrics
- ☐ Inspect prediction errors by demographic group
- ☐ Review feature importance changes
Escalation Criteria
Escalate to legal/communications if any of the following:
- ! Protected group disparity exceeds 15 percentage points
- ! High-stakes decisions affected (hiring, lending, healthcare)
- ! Media inquiries received
- ! EU high-risk system under AI Act
Key Contacts
- Incident Commander: [Name, Slack, Phone]
- ML Lead: [Name, Slack, Phone]
- Data Engineer: [Name, Slack, Phone]
- Legal Contact: [Name, Email, Phone]
- Communications Lead: [Name, Email, Phone]
Playbook: AI agent incidents
Everything above assumes the failure is a prediction. When the system is an agent, the failure is an action that has already happened somewhere else — a record written, a message sent, a payment moved, a ticket closed. Three things change, and they change the order of the response.
Containment comes before diagnosis. A degraded model keeps producing bad answers; an agent left running keeps taking bad actions, including during the investigation. Revoke first, understand second. Blast radius is a function of permissions rather than traffic, so the question is not how many requests were served but which tools the agent could reach and what credentials it held. And the forensic unit is a sequence rather than a single inference: you have to reconstruct an ordered chain of tool calls and the reasoning between them, which is only possible if a per-action record exists.
AI Agent Incident Playbook
Detection Triggers
- → Tool call rate exceeds the expected ceiling for the task, or the same tool repeats without state changing — the signature of a loop
- → An agent invokes a tool outside the set its task profile allows, or writes to a system it has only ever read
- → A guardrail returns a block and the action appears downstream anyway — the control ran and was bypassed
- → Retrieved content contains instruction-shaped text, and the next tool call matches it — indirect prompt injection
- → Spend, message volume, or record mutations cross a per-agent budget inside a single session
Immediate Actions (0-15 minutes)
- Revoke the agent’s credentials and API keys. Do this before triage — an agent is still acting while you read the dashboard
- Disable the tool bindings, not just the agent process. A supervisor that restarts the agent will restore its reach
- Freeze the session and preserve the action log before any retry or cleanup overwrites it
- Enumerate every external side effect since the first suspect action — records written, messages sent, funds moved, third parties contacted
- Page the incident commander and the owner of each downstream system the agent touched
- Decide reversibility per action. Some can be rolled back, some can only be disclosed
Investigation Checklist
- → Reconstruct the full action chain in order, with the input that triggered each tool call
- → Identify the first action that should not have been permitted, and separate the question of whether the control was missing from whether it ran and failed
- → Trace the authority used for each call: the agent’s own identity, a delegated user token, or a shared service credential
- → Check whether untrusted content entered the context window before the first bad action, and from which source
- → Establish whether any human approval step was presented, and whether it was answered by a person
Escalation Criteria
- ! The agent acted on a third party — sent external communications, moved money, or changed someone else’s record
- ! Personal data left the boundary, which starts the GDPR Article 33 clock at 72 hours
- ! The agent forms part of a high-risk system, which engages EU AI Act Article 73 reporting
- ! Any action is irreversible, or the action log cannot account for the full session
The recurring failure in agent post-mortems is not a missing control. It is that the team cannot say with confidence which controls ran on the action under dispute, because the only record is an application log the agent’s own process wrote. A log a compromised component can edit answers a debugging question but not an evidentiary one, and the difference surfaces exactly when a regulator or a counterparty is asking.
AI Incident Response with Verifiable Evidence
Traditional incident response documentation is backward-looking—assembled after the fact to explain what happened. GLACIS provides forward-looking evidence: cryptographic proof that your AI controls executed correctly in production, with tamper-evident audit trails for every inference.
Faster Detection
Real-time attestation of model behavior, drift metrics, and fairness indicators. Alert when controls fail—not days later when users complain. Average detection time drops from 4.5 days to hours.
Comprehensive Forensics
Every inference logged with model version, input features, output, confidence scores, and policy evaluations. Reconstruct exactly what happened during incident window without guessing from incomplete logs.
Regulatory Compliance
Pre-built templates for EU AI Act Article 73 serious incident reports. Evidence that demonstrates what controls were in place, when they failed, and what corrective action was taken—mapped to regulatory requirements.
Stakeholder Confidence
Share verifiable evidence with customers, regulators, and boards. Not "trust us, we investigated"—actual cryptographic proof that third parties can independently validate.
The challenge: AI incidents are inevitable. The question is whether you can prove your controls worked when they should have, and detect when they don’t. Evidence beats documentation.
Frequently Asked Questions
What is AI incident response?
AI incident response is the structured process of detecting, containing, investigating, and recovering from failures or security incidents in AI and machine learning systems. Unlike traditional IT incident response, it addresses AI-specific risks like model drift, adversarial attacks, data poisoning, bias incidents, hallucinations, and privacy breaches.
How is AI incident response different from traditional incident response?
AI incident response requires model-specific skills (data science, ML engineering), addresses unique incident types (model drift, adversarial attacks, bias), requires different forensic techniques (model interrogation, feature attribution analysis), and involves distinct stakeholder communication (model performance vs. system availability). Traditional IR focuses on infrastructure; AI IR focuses on model behavior and training data integrity.
What are the most common types of AI incidents?
The most common AI incidents are: model performance degradation (67% of incidents stem from model errors), adversarial attacks, data poisoning, bias and discrimination incidents, hallucinations in generative AI, privacy breaches and data leakage, and supply chain compromises. AI incidents increased 56.4% from 2023 to 2024.
Does the EU AI Act require AI incident reporting?
Yes. Article 73 of Regulation (EU) 2024/1689 requires providers of high-risk AI systems to report serious incidents to the market surveillance authority of the member state where the incident occurred. The outer limit is 15 days after becoming aware, but two shorter clocks override it: 2 days for a widespread infringement or a serious and irreversible disruption of critical infrastructure, and 10 days where a person has died. Reporting begins immediately after a causal link to the AI system is established or reasonably suspected, so an incomplete initial report is expected rather than penalised.[14]
Does GDPR apply to an AI incident?
It applies whenever the incident involves personal data, which covers most privacy, data-leakage and training-data incidents. GDPR Article 33 gives 72 hours from becoming aware to notify the supervisory authority, and Article 34 requires notifying affected individuals without undue delay where the risk to their rights and freedoms is high. The 72-hour clock is the tightest of the common regimes and it runs on awareness of the breach, not on completion of the investigation, so a partial notification followed by updates is the expected pattern.
What does SOC 2 require after an AI incident?
SOC 2 sets no AI-specific criteria and no external reporting deadline. The relevant common criteria are CC7.3, which covers evaluating whether a detected event is an incident, CC7.4, which covers responding to it, and CC7.5, which covers recovery. An auditor samples incidents from the period and tests whether the documented process was actually followed, so the risk on an AI incident is not the response itself but the record: the evidence must show detection time, who was notified, what containment ran, and who approved a return to service.
How do you run incident response for AI agents?
An agent incident differs from a model incident because the failure has already reached the outside world through a tool call. The response order inverts: revoke the agent’s credentials and disable its tools first, then work out what happened, because an agent left running continues to act during the investigation. The investigation also has to reconstruct a sequence of actions rather than a single inference, which requires a per-action record showing which tool was called, with what arguments, under whose authority, and what the guardrail decided.
How long does an AI incident investigation typically take?
Simple performance degradation incidents may resolve in hours to days. Complex incidents involving bias, adversarial attacks, or data poisoning can take weeks. The SafeRent investigation spanned months before settlement. Budget 1-4 weeks for thorough root cause analysis including model forensics and data quality review.
Should we notify users about every AI incident?
Not necessarily. Low-severity incidents caught quickly with no user impact may not require notification. However, notify when: (1) decisions affecting users were wrong, (2) protected groups were treated unfairly, (3) privacy was breached, (4) regulatory obligations exist, or (5) media attention likely. When in doubt, consult legal counsel.
Can we use our existing IT incident response team for AI incidents?
Partially. Your IR team brings valuable incident management skills, but needs augmentation with ML specialists. Minimum additions: ML engineer for model forensics and data scientist for statistical analysis. For adversarial incidents, add security researchers with ML expertise. Consider training existing team on AI-specific incident types.
What is the difference between model rollback and model retraining?
Rollback deploys a previous version — fast, in minutes, but it loses recent improvements. Use it for immediate containment. Retraining creates a new model version with incident fixes — slow, hours to weeks, but it addresses root cause. The typical sequence is rollback for containment, retrain for permanent fix, then gradual rollout of the retrained model.
References
- [1] Responsible AI Labs. "AI Safety Incidents of 2024." responsibleailabs.ai
- [2] IBM Security. "Cost of a Data Breach Report 2024." ibm.com/security
- [3] Gartner. "AI Incident Analysis: Operational vs. Adversarial Failures." 2024.
- [4] VentureBeat. "Why do 87% of data science projects never make it into production?" venturebeat.com
- [5] IBM Security. "Cost of a Data Breach Report 2024."
- [6] NIST. "Computer Security Incident Handling Guide (SP 800-61 Rev. 2)." nist.gov
- [7] MITRE. "ATLAS (Adversarial Threat Landscape for AI Systems)." atlas.mitre.org
- [8] Reuters. "Amazon scraps secret AI recruiting tool that showed bias against women." October 2018. reuters.com
- [9] NHTSA. "Tesla Phantom Braking Investigation." nhtsa.gov
- [10] The Verge. "Twitter taught Microsoft’s AI chatbot to be a racist asshole in less than a day." March 2016. theverge.com
- [11] SafeRent Solutions Settlement. November 2024. Connecticut Fair Housing Center et al. v. SafeRent Solutions.
- [12] CBC News. "Air Canada found liable for chatbot’s bad advice on bereavement rates." February 2024. cbc.ca
- [13] Bloomberg. "Samsung Bans ChatGPT and Other Chatbots for Employees After Leak." May 2023. bloomberg.com
- [14] European Union. "Regulation (EU) 2024/1689 (EU AI Act), Article 73." eur-lex.europa.eu
