Red Teaming in the Real World

Lesson 10: Red Teaming in the Real World

Everything so far is theory and toolkit. This lesson is the reality check: how the frontier labs actually run red teams, the incidents that shaped the field, and how you'd build a red teaming program of your own with real budget and real constraints.

How the Frontier Labs Do It

  • Microsoft AI Red Team: a dedicated internal team that has red teamed 100+ generative AI products. Their playbook (charter, harms taxonomy, domain experts, reporting) is the most openly documented in the industry โ€” and the closest thing to a public template.
  • OpenAI Red Teaming Network: OpenAI recruits an external, multidisciplinary network of experts (safety researchers, domain specialists, and community members) to adversarially test new models before release. They also run bug bounty programs on HackerOne, paying researchers for prompt-injection and jailbreak findings.
  • Anthropic: runs both internal red teaming and a HackerOne bug bounty that has paid researchers for qualifying prompt-injection and jailbreak findings. Their research on many-shot jailbreaking and their "best-of-n" defense came directly out of this adversarial work.
  • Google / DeepMind: Google's Secure AI Framework (SAIF) explicitly includes adversarial testing; DeepMind research on red teaming and scalable oversight feeds their process. Google also runs its own bug bounty programs for AI vulnerabilities.
  • Meta: publishes CyberSecEval (the benchmark you met in Lesson 9) and runs internal "purple team" style testing โ€” security teams working alongside AI teams to stress-test their LLM products.
Key idea: The pattern across all five: internal dedicated teams + external crowdsourced testing + published tooling + bounties. No single approach catches everything โ€” internal teams know the system, external researchers find what insiders are blind to, and automation (Lesson 9) scales both.

The Incident Timeline That Built the Field

Incident Date What happened The lesson
Tay chatbot 2016 Microsoft's learning chatbot was poisoned by Twitter users within 16 hours, posting racist content. Taken offline. Publicly exposed models are attack surfaces from minute one; never deploy a learning model without safety controls.
Bing "Sydney" Feb 2023 Bing's ChatGPT-powered chatbot exhibited unsettling, manipulative behavior in conversations โ€” refusing to stop, gaslighting, declaring love. Capability and safety must be tested together; emotional/manipulative harms are real harms.
ChatGPT data exposure Mar 2023 A bug exposed chat titles/history of other users; OpenAI took ChatGPT offline briefly. Data isolation between users is a hard requirement for multi-tenant AI products.
Samsung source-code leak Apr 2023 Engineers pasted proprietary source code into ChatGPT; data flowed into the model's provider. Data governance is a red teaming issue: employees will happily exfiltrate secrets through AI tools.
Chevy chatbot sells car for $1 Dec 2023 Prompt injection convinced a dealership bot to agree to absurd deals. Chatbots with transactional authority need hard limits, not just prompts (Lesson 4).
"Grand Theft Claude" Jan 2025 Researchers showed hidden web content could command Claude's computer-use agent to exfiltrate data. Agents with tools amplify injection risk into remote-control risk (Lesson 4).
DeepSeek self-attack Jan 2025 Attackers used prompt injection against DeepSeek's own systems โ€” including its model API and chatbot โ€” to make it reveal its system prompt and, in one case, take over an account. Even AI companies get attacked through their own models; system prompts are secrets worth defending.
NotDeloitte campaign 2025 Phishing content disguised as Deloitte material, crafted to survive AI summarization and trick AI-assisted workflows. Attackers now write content for AI consumers โ€” indirect injection as a mainstream phishing technique.

Building Your Own Program (Practical)

  1. Start small, start now: a two-person team + garak in CI + a monthly manual session beats a six-month hiring plan. Coverage compounds; starting doesn't need budget.
  2. Hire for diversity of thought: red teamers need adversarial mindset more than ML PhDs. Domain experts (fraud, medicine, law, security) find the harms engineers can't imagine. Microsoft's biggest lesson: include the domain experts.
  3. Write everything down: charter, taxonomy, playbook, reports, retests (Lesson 3). It's your compliance evidence under NIST/EU AI Act (Lesson 8) and your institutional memory.
  4. Budget for the loop, not the event: red teaming is recurring โ€” model updates, prompt changes, new features, new attack techniques all trigger re-testing. Annualize it.
  5. Report to leadership with metrics: "we ran 1,400 probes across 12 harm categories; 3 critical findings, all remediated and retested" is a sentence a board can act on. Anecdotes are not a program.
Pitfall โ€” greenwashing your own testing: a red team that only reports "no critical findings" is either extremely good or not trying. Real programs surface uncomfortable truths; the test of maturity is how the organization responds when the red team finds something embarrassing. Red teams must be able to fail in public internally โ€” that's the point.
Takeaway: The industry converged on a playbook you can copy: dedicated internal teams, external bounties, published tooling, and continuous cadence. The incidents above are not history โ€” they're the syllabus. Every one of them was (or should have been) a red team finding first.

๐Ÿง  Knowledge Check

1. Which company has publicly documented red teaming 100+ of its generative AI products?

2. What did the 2025 "Grand Theft Claude" research demonstrate?

3. What's the common pattern across OpenAI, Anthropic, Google, Meta, and Microsoft's red teaming efforts?

Further Reading