AI Red Teaming with Real Users: How to Find Harms Before Your Users Do (2026)
A practitioner guide to adversarial testing of AI products with real people — harm taxonomies, recruiting adversaries, severity scoring, red-teamer wellbeing, and the EU AI Act and NIST obligations that now make it mandatory.
The short answer
AI red teaming is the practice of deliberately trying to make your AI product behave badly, then treating what you find as a defect list rather than a score. It is not benchmarking, it is not usability testing, and it is not a penetration test — though it borrows from all three. The distinguishing feature is intent: every other research method asks what happens when people use this normally. Red teaming asks what happens when someone is trying to break it, or when a normal person hits the worst 0.1% of the input distribution.
Two things changed in 2026 that moved this from a frontier-lab specialty to an ordinary product obligation. First, the law caught up: the EU AI Act's obligations for general-purpose AI models have applied since 2 August 2025, and Article 55(1)(a) requires providers of models with systemic risk to perform model evaluation including adversarial testing to identify and mitigate systemic risk (EU AI Act, Art. 55). Models already on the market before that date have until 2 August 2027 to comply. Second, the evidence base matured: NIST published its Assessing Risks and Impacts of AI (ARIA) program results as NIST AI 700-2 in November 2025, built on a pilot involving roughly 51 red teamers across 508 testing sessions on seven submitted AI applications, and introduced the Contextual Robustness Index (CoRIx) as a measure of whether an application holds up in its intended use context (NIST AI 700-2).
The uncomfortable part for most product teams is that half of this work is not a security problem. It is a research problem, and it belongs to the people who already know how to recruit strangers, design a probe, and score a subjective judgement reliably.
Red teaming is not safety benchmarking
The single most useful framing published on this subject comes from Microsoft's AI Red Team, which documented eight lessons from 80 red-teaming operations covering more than 100 generative AI products since 2021 (Bullwinkel et al., 2025, arXiv:2501.07238). Their third lesson states it plainly: AI red teaming is not safety benchmarking.
The distinction matters operationally. A benchmark asks a fixed set of questions and returns a number you can compare across model versions. Red teaming produces an open-ended, contextual, adversarial exploration whose output is a set of novel failures nobody had written down yet. Benchmarks measure known risks; red teaming discovers unknown ones. A team that runs a jailbreak benchmark and reports "94% refusal rate" has not red teamed anything — it has measured performance against attacks that were already public, which is exactly the set of attacks least likely to hurt them.
Their second lesson is equally load-bearing for research teams: you don't have to compute gradients to break an AI system. The most effective attacks in their operations were frequently simple prompt-level manipulations at the system layer, not sophisticated optimisation against model weights. That is precisely the kind of work a domain expert with no ML background can do — and the reason a user researcher can lead it.
Their fifth and sixth lessons close the argument: the human element of AI red teaming is crucial, and responsible AI harms are pervasive but difficult to measure. Automation extends coverage; it does not replace judgement about whether an output is actually harmful to a specific person in a specific context.
What a research-led red team actually covers
There are two halves to the harm surface, and they need different people.
| Layer | Example failures | Who should probe it |
|---|---|---|
| Security | Prompt injection, data exfiltration, privilege escalation, SSRF in the retrieval pipeline, tool/MCP abuse | Application security, with AI-specific tooling |
| Model behaviour | Jailbreaks, refusal failures, unsafe instruction-following, over-refusal of legitimate requests | Mixed — security plus domain experts |
| Responsible-AI harms | Stereotyping, degraded quality for a dialect or accent, medical or legal overreach, psychosocial harm, manipulation, unfair allocation | User researchers and affected-community members |
| Contextual failure | Confidently wrong output in a high-stakes workflow, silent degradation on rare inputs, harmful defaults | User researchers with domain experts |
The bottom two rows are where research teams add something no security team can. Whether a model output is harmful is a judgement about people, made by people, and it is exactly the kind of subjective, low-agreement judgement that research methodology exists to make reliable. This is the same measurement problem covered in human evaluation of AI outputs — rubric anchors, independent raters, measured agreement — applied to the tail of the distribution instead of the middle.
The security half is not optional either. IBM's 2025 breach research found that 13% of organisations reported a breach of their AI models or applications, and 97% of those breached had no AI-specific access controls in place (IBM Cost of a Data Breach Report 2025). Red teaming does not fix governance, but it is usually what makes the gap visible.
The six-phase protocol
1. Scope the system, not the model
Microsoft's first lesson is understand what the system can do and where it is applied. A model that is harmless in a chat window can be dangerous the moment it is given a tool, a document store, or an audience of teenagers. Write down: the deployment context, the user population (including the population you did not design for), the tools and data the system can reach, and the consequence of a wrong answer. The consequence column is what sets your severity scale.
2. Build a harm hypothesis list, not a prompt list
Prompts are artefacts; intents are the unit of work. Recruit the list from four sources: prior incidents in your category, regulatory risk categories (NIST's Generative AI Profile, NIST AI 600-1, enumerates twelve), support tickets and trust-and-safety reports from your own product, and — critically — interviews with people who resemble both your attackers and your most vulnerable users.
3. Recruit adversaries with standing, not just skill
The failure mode here is a red team made entirely of engineers who share the builders' blind spots. OpenAI's published approach to external red teaming emphasises deliberately prioritising geographic and domain diversity in who is invited to probe a model (OpenAI, Approach to External Red Teaming). For responsible-AI harms specifically, the highest-yield participants are people who would be harmed: clinicians for a health assistant, benefits caseworkers for an eligibility tool, speakers of the dialects your speech model handles worst.
Use a proper screener. "Has broken an AI product before" is a weak signal; "works daily in the domain and can tell a plausible wrong answer from a correct one in under ten seconds" is a strong one.
4. Run structured and free-form passes
Structured passes cover your hypothesis list systematically so you can claim coverage. Free-form passes are where the novel findings come from. Budget at least a third of session time for unguided exploration, and record the participant's strategy, not only the winning prompt — strategies generalise across model versions in a way that individual prompts do not.
5. Score severity and measure agreement
Every finding needs: reproduction steps, a harm category, a severity rating, an estimated likelihood in real use, and the affected population. Severity is a subjective rating, which means it needs the same discipline as any other subjective rating — at least two independent raters and a measured agreement score. Aim for Cohen's kappa of 0.7 or above; below 0.4 your severity scale is ambiguous and needs rewriting, not more raters. See inter-rater reliability for the mechanics.
6. Convert findings into regression tests
Microsoft's eighth lesson is that the work of securing AI systems will never be complete. The practical response is to make each confirmed finding permanent: every reproduced harm becomes a row in your evaluation set, so the next model version is automatically tested against it. That handoff — red team finding to frozen test case — is covered in building evaluation datasets from real user research.
Red teaming versus its neighbours
| Method | Question it answers | Input distribution | Typical output |
|---|---|---|---|
| Usability testing | Can people complete the task? | Typical | Friction list |
| Human evaluation | Is the output good enough to ship? | Representative sample | Rubric scores + pass rate |
| LLM-as-a-judge | Did quality regress since last build? | Frozen eval set | Automated score |
| Red teaming | What is the worst this can do, and to whom? | Adversarial and tail | Reproducible harm findings |
| Security pentest | Can the system be compromised? | Adversarial, infra-focused | Vulnerability report |
They compose in a specific order. Red teaming discovers; human evaluation quantifies; an LLM judge monitors. Skipping the first step means your judge is monitoring for problems you already knew about.
Protecting the people who do this work
This is the part most guides omit, and it is a genuine ethical obligation. Red teamers are asked to elicit content that is by design distressing — self-harm instructions, harassment, sexual content involving minors, graphic violence. Treat it as you would any research involving exposure to disturbing material:
- Informed consent that names the content categories in advance, not a generic media release. See research ethics and informed consent.
- A no-penalty opt-out mid-session, exercised without explanation.
- Exposure limits and rotation — cap session length and consecutive days on a harm category.
- Never recruit minors for harm probing, even when minors are the affected population; work through adult proxies and safeguarding experts instead (research with children and teens).
- Ethics review where your organisation has one — much of this work meets the threshold described in IRB approval for user research.
The modern approach: red teaming at scale with Koji
The historical constraint on red teaming was throughput. A moderated session costs a moderator, a calendar slot, and an hour; covering forty harm hypotheses with three participants each means 120 hours of scheduling before anyone reads a transcript. That is why most red teaming has been done by six people in a room for two weeks — not because six is the right number, but because 120 is unaffordable.
Koji removes the scheduling layer entirely. Red-team sessions run as async, link-based AI-moderated interviews: you send a link, the AI moderator runs the protocol, probes the participant's reasoning when they find something, and the transcript lands analysed. Forty hypotheses across sixty domain experts is a days-long study, not a quarter-long programme.
The six structured question types map onto red-team scoring almost exactly:
| Question type | Red-team use |
|---|---|
open_ended | The attack narrative, the strategy, and why the participant considered the output harmful — with AI follow-up probing that a form cannot do |
single_choice | Harm category from your taxonomy |
scale | Severity and likelihood ratings, aggregated into distributions |
yes_no | Binary criteria: did the system refuse? did it cite a source? did it stay in scope? |
ranking | Ordering several failing outputs by which would do the most damage |
multiple_choice | Which populations the participant believes are affected |
Because every session answers the same structured questions, severity distributions and category frequencies aggregate automatically — you get a ranked harm register rather than forty documents someone has to read. Koji's thematic analysis clusters the strategies participants used, which is the durable artefact; its quality scoring rates each conversation 1–5 against your research goals so thin sessions are visible immediately rather than diluting the register. Voice interviews are the right modality when the harm involves speech, accent handling, or social-engineering scripts that only work out loud.
| Traditional red-team workshop | Koji | |
|---|---|---|
| Participants | 5–10, mostly internal | 30–100+, external domain experts |
| Setup | Scheduling, NDAs, facilitation plan | A study link |
| Time to findings | 2–6 weeks | Days |
| Scoring | Post-hoc, in a spreadsheet | Structured at capture, aggregated live |
| Repeatability per model release | Rarely — too expensive | Re-send the link |
| Coverage of affected communities | Whoever was available | Screened and recruited deliberately |
None of this replaces a security team's tooling for the infrastructure layer. It replaces the part that was always the bottleneck: getting enough of the right humans to spend focused, structured time attacking your product.
Common mistakes
- Reporting a pass rate. Red teaming produces a defect list. A percentage implies a fixed denominator, and the whole point is that the denominator is unknown.
- Recruiting only builders. People who know how the system works probe where they expect weakness; users probe where the system meets their life.
- Testing the model instead of the product. Guardrails, retrieval, tools and system prompts are where most real failures live.
- Letting findings die in a doc. If a finding is not a permanent test case, the next release will reintroduce it.
- Treating over-refusal as a non-finding. A model that refuses to discuss a legitimate medical question is failing a real user, and that harm rarely shows up in a security-framed red team.
- No wellbeing plan. This is a research-ethics failure, not a logistics oversight.
Frequently asked questions
Is AI red teaming legally required for my product? It depends what you build. Article 55(1)(a) of the EU AI Act requires adversarial testing of general-purpose AI models with systemic risk, and those obligations have applied since 2 August 2025 (2 August 2027 for models already on the market). Most product teams are deployers rather than GPAI providers and are not directly caught by Article 55 — but high-risk system obligations, sector regulators, and enterprise procurement questionnaires increasingly ask for adversarial testing evidence regardless. See EU AI Act compliance for user research and AI governance frameworks.
How is red teaming different from usability testing? Usability testing samples the typical input distribution and asks whether people can succeed. Red teaming samples the adversarial and tail distribution and asks what the worst outcome is. A product can pass every usability test and still produce a harm that ends up in a news story.
How many red teamers do I need? There is no saturation number, because the space is open-ended. NIST's ARIA pilot used roughly 51 red teamers across 508 sessions on seven applications. A practical starting point for a product team is 20–30 participants spanning at least three distinct perspectives (domain expert, affected community, adversarially-minded generalist), then re-running per major release.
Can I automate this with an LLM? Partly. Automated adversarial generation is genuinely good at breadth — it will try thousands of variations you would never type. It is poor at deciding whether an output is harmful in context, and it cannot represent the lived experience of the population at risk. The mainstream position, and Microsoft's fifth lesson, is that automation extends coverage while human judgement remains essential.
Do synthetic users work for red teaming? For generating candidate attack strategies, they are a reasonable brainstorming aid. For judging harm, no — the documented sycophancy and endorsement biases of AI personas make them unreliable evaluators. See synthetic users in research.
What do I do with a finding I cannot fix? Document it, rate it, and route it to a non-model mitigation: a guardrail, a scope restriction, a disclosure, a human-in-the-loop checkpoint, or a decision not to ship into that context. An unfixable finding that is written down and mitigated is a governance artefact; an unfixable finding that is deleted is a liability.
Related resources
- Human Evaluation of AI Outputs — the rubric-and-agreement discipline that makes harm severity ratings defensible
- Evaluation Datasets for AI Products — turning red-team findings into permanent regression tests
- LLM-as-a-Judge vs. Human Evaluation — automating the monitoring layer once you know what to look for
- Structured Questions Guide — the six question types used to score severity, category and likelihood at capture
- User Research for AI Products — trust calibration and failure tolerance in normal use
- AI Governance Frameworks for Research Teams — ISO/IEC 42001, NIST AI RMF and the EU AI Act compared
- Research Ethics and Informed Consent — consent design for sessions involving distressing content
Related Articles
Evaluation Datasets for AI Products: How to Build a Golden Set from Real User Research (2026)
How to construct and maintain the golden dataset your AI evals run against — sizing and confidence intervals, the four-bucket structure, label-error rates in published benchmarks, sourcing acceptance criteria from real users, and versioning against overfitting.
AI Governance for Customer Research: ISO 42001, the NIST AI RMF, and What Procurement Actually Asks
Security review is asking whether your AI research platform is ISO 42001 certified and NIST AI RMF aligned. Here is what each framework covers, what a certificate does and does not buy you under the EU AI Act, and how to answer.
Human Evaluation of AI Outputs: The Complete Guide for Product Teams (2026)
How to design, staff, and run human evaluation of LLM and AI-agent outputs — rubric design, rater selection, sample size, inter-rater agreement targets, and bias controls — plus how AI-moderated interviews capture the "why" behind every score.
LLM-as-a-Judge vs. Human Evaluation: When to Trust Automated Scoring (2026)
Automated LLM judges agree with humans over 80% of the time on some tasks — and carry position, verbosity, and self-preference biases on others. Here is the evidence, the failure modes, and the calibration loop that lets you use both safely.
Research Ethics and Informed Consent: A Practical Guide for UX Teams
A practical guide to ethical UX research — covering the Belmont Report's three principles, GDPR informed consent requirements, how to handle AI tools responsibly, and how to build ethical maturity in your research practice.
Structured Questions in AI Interviews
Mix quantitative data collection — scales, ratings, multiple choice, ranking — with AI-powered conversational follow-up in a single interview.
User Research for AI Products: A Practical Guide for 2026
AI products break the assumptions traditional UX research is built on — outputs are non-deterministic, trust is the central UX problem, and prompts replace navigation. This guide covers the methods, question types, and study designs that actually work for teams shipping AI features.