Anthropic launched Claude Security into public beta on April 30, 2026 — and the timing is deliberate. The company has been publicly arguing that AI is compressing the window between vulnerability discovery and exploitation, and that defenders need to act before that window closes. Claude Security is their enterprise-level answer: scan a codebase, validate findings through adversarial self-review, and generate targeted patches for human approval. For healthcare security teams running lean on staff while managing sprawling, PHI-adjacent codebases, this warrants a careful look beyond the marketing.
This post covers how Claude Security actually works under the hood, what Anthropic's own 0-day research reveals about the underlying model's capabilities, and what healthcare organizations should specifically consider before deploying it.
How Claude Security Works
The distinction Anthropic draws most sharply is between pattern matching and reasoning. Traditional static analysis tools — SAST scanners, linters, rule-based analyzers — search for known vulnerability signatures. They're fast and produce consistent results, but they miss context-dependent issues and carry high false positive rates because they evaluate code in isolation rather than understanding what it's doing across a larger codebase.Claude Security takes a different approach. When a scan starts, Claude reads and reasons about code the way a security researcher would. It traces data flows across files and modules to understand how user input moves through the system. It reads commit history to identify areas where security-relevant changes were made, then looks for related but unpatched code nearby. It evaluates whether the surrounding logic around a suspicious call actually creates an exploitable condition, rather than flagging every instance of a potentially unsafe function.
Every finding then goes through what Anthropic calls an adversarial verification pass. Before a result reaches an analyst, Claude challenges its own conclusion — re-examining the vulnerability from the perspective of whether it can actually be triggered and what the real-world impact would be. This step is specifically designed to reduce false positives, and each surfaced finding carries a confidence rating alongside the vulnerability type, severity, affected file and line, reproduction steps, and a proposed patch. That patch can be opened directly in Claude Code on the Web for in-context remediation without switching to a separate tool.
Operationally, scans can be scoped to specific directories or branches — important for large monorepos where a full-repo scan can take hours and produce more noise than signal. Two scan effort modes are available: Regular for routine coverage and Extended for deeper review before major releases or after significant code changes. Scans can be scheduled on a recurring cadence, findings can be exported as CSV or Markdown for existing audit and ticketing systems, and results can be pushed to Slack or Jira via webhooks. Dismissed findings carry documented reasons forward, so future reviewers can trust prior triage decisions rather than relitigating them. RBAC through Claude Enterprise controls who can initiate scans — relevant for organizations with change advisory board or change control requirements.
What Anthropic's 0-Day Research Shows
Claude Security runs on Opus 4.7, and Anthropic's red team has spent the past several months documenting what the predecessor model — Opus 4.6 — could do when pointed at real open source codebases without custom scaffolding, specialized prompting, or task-specific tooling. The results are worth understanding concretely, because they set realistic expectations for what this class of tool actually finds.Without any special preparation, Opus 4.6 identified more than 500 high-severity vulnerabilities across well-tested open source projects — codebases that had fuzzers running against them for years, accumulating millions of hours of CPU time, and that had active security researcher communities looking at them. Three examples from the published research demonstrate the qualitative difference from traditional tools:
In GhostScript, a PostScript and PDF processing utility, Claude hit dead ends with both fuzzing and manual analysis. It then pivoted to a different strategy: reading the Git commit history. It identified a security-relevant commit that added stack bounds checking for font handling, reasoned that similar checks were likely missing elsewhere in the codebase, found another call site in gdevpsfx.c that lacked equivalent protection, and produced a proof-of-concept crash. This approach — treating commit history as a map to related, unpatched bugs — is something traditional fuzzers structurally cannot do.
In OpenSC, a smart card processing utility, Claude identified a sequence of strcat operations on a fixed-size 4096-byte buffer where combined inputs could overflow it. What made this interesting is that the code path required multiple preconditions to reach, which is exactly why coverage-guided fuzzers rarely touched it despite years of effort. Claude reasoned about which code fragments were worth examining and focused there, rather than analyzing code paths with equal effort regardless of reachability.
In CGIF, a GIF processing library, Claude exploited a conceptual understanding of LZW compression mechanics to recognize that the library assumed compressed output would always be smaller than its input — an assumption that's almost always true but can be violated under specific conditions. Triggering the bug required forcing the LZW dictionary to fill up and reset repeatedly, producing output that exceeded the input size and overflowed a buffer. Even 100% branch coverage wouldn't have caught this because it required a very specific sequence of operations that fuzzers don't reason about. It required semantic understanding of the algorithm.
Opus 4.7, which powers Claude Security in production today, continues this trajectory. Anthropic describes it as among the strongest generally-available models for finding context-dependent vulnerabilities and for generating targeted patches that maintain code structure and style. One additional note from the research worth flagging: Anthropic's team found that standard 90-day coordinated disclosure windows may not hold up against the speed and volume of LLM-discovered bugs. If Claude Security surfaces vulnerabilities in vendor libraries your organization uses, you may be dealing with disclosure timelines that move faster than traditional patch management cycles.
The Partner Ecosystem
Claude Security is one delivery path, but the same Opus 4.7 capabilities are being embedded into platforms many enterprises already operate. CrowdStrike, Microsoft Security, Palo Alto Networks, SentinelOne, TrendAI, and Wiz are all integrating Opus 4.7 into their respective platforms. On the services side, Accenture, BCG, Deloitte, Infosys, and PwC are deploying Claude-integrated security solutions for vulnerability management, secure code review, and incident response programs.For healthcare organizations, this matters practically. If your organization already runs CrowdStrike Falcon or Palo Alto Prisma, Opus 4.7's vulnerability scanning capabilities may arrive through that existing relationship rather than requiring a separate Claude Enterprise deployment and procurement process. It's worth checking with your existing vendors on their roadmaps before standing up a parallel capability.
What This Means for Healthcare
Healthcare organizations carry a specific set of characteristics that make AI-assisted vulnerability scanning both more valuable and more consequential than in most other industries. The combination of large, heterogeneous codebases, small security teams, strict regulatory requirements, and data that directly impacts patient safety creates a risk profile that makes this class of tool worth taking seriously.Dense codebases, lean security teams
A mid-size health system might maintain integrations across multiple EHR platforms, SMART on FHIR API implementations for patient data exchange, HL7 MLLP and FHIR R4 interfaces for lab and imaging systems, patient-facing web and mobile portals, prior authorization automation, and revenue cycle applications — all with codebases that accumulate years of changes from development teams whose primary focus is clinical functionality, not security. The notion of dedicated security reviewer coverage of every pull request across all of those surfaces is often not achievable with current staffing. Claude Security is designed exactly for this gap: it extends coverage where human reviewer-hours run out, without requiring the organization to maintain specialized offensive security expertise to operate it.PHI in memory means silent exploitation is the real risk
Injection flaws and memory corruption vulnerabilities in healthcare applications aren't theoretical edge cases. A buffer overflow in a patient portal's PDF generation pipeline — structurally similar to what Claude found in GhostScript — could expose PHI without triggering traditional breach detection. Exploitation of memory corruption doesn't require exfiltrating structured records through monitored data channels; it can enable unauthorized in-memory access during processing that leaves no obvious audit trail. Healthcare security teams should map Claude Security's focus areas — memory corruption, injection flaws, authentication bypasses, complex logic errors — directly against their highest-risk application surfaces, particularly anywhere PHI is rendered, serialized, or transmitted.Under HIPAA's Security Rule, organizations are required to implement technical safeguards that reasonably protect against reasonably anticipated threats to the security of PHI. AI-powered vulnerability scanning of the codebases that process and transmit that PHI is increasingly part of what "reasonable" looks like in 2026. Organizations that can document a systematic, ongoing scanning program have a materially stronger compliance posture than those relying on point-in-time penetration tests.
Legacy code in open source dependencies
The GhostScript vulnerability Claude found had evaded detection for decades despite active fuzzer coverage. Healthcare systems routinely embed open source components in imaging workflows, PDF rendering for clinical documentation, data format conversion utilities, and medical device integration middleware — exactly the categories where Claude found bugs that fuzzers missed for years. The 500+ vulnerabilities Anthropic's team discovered in well-maintained open source projects are not an abstract statistic. Some of those libraries are almost certainly running somewhere in your environment, either directly or through vendor-supplied software. Scheduled scanning that reaches into dependency trees, not just first-party code, should be part of how organizations think about scoping Claude Security deployments.False positive fatigue is a compliance liability
Healthcare security analysts already contend with alert volume from SIEM platforms, EDR telemetry, email security systems, and vulnerability management tools. A scanner that generates high false positive rates doesn't just waste remediation hours — it trains analysts to discount findings, which creates a compliance liability when real vulnerabilities get triaged as noise. Claude Security's adversarial validation step, where it challenges its own findings before surfacing them, directly targets this. The confidence rating on each finding gives analysts a prioritization starting point. In practical terms, early adopters including Snowflake and DoorDash have described finding high-quality, novel issues in research preview that their existing tools had missed — and describe going from scan to applied patch in a single session rather than days of back-and-forth between security and engineering.Audit trail requirements and risk management documentation
HIPAA's Security Rule requires organizations to document their risk analysis, the security measures implemented as a result, and their rationale for those decisions. Claude Security's dismissal-with-reason workflow means that when a finding is triaged as a false positive or accepted risk, that decision is documented. CSV and Markdown export capabilities allow findings to flow into existing risk registers and vulnerability tracking systems. Webhook integration with Jira or similar tools means triage decisions live alongside the rest of the security program's documentation rather than in a separate silo. For organizations that have struggled to demonstrate a systematic vulnerability management program during audits, Claude Security creates a documented, repeatable process where one may not have existed before.Practical starting points for healthcare security teams
The most useful initial scans are not full-repo scans of your largest monorepo. Scope the first scan to a high-risk application — a patient portal, a FHIR API gateway, or an EHR integration layer — using a specific directory rather than the full repository. This keeps the scan time manageable, focuses findings on the highest-value surface, and lets your team learn the tool's output format before scaling. Set up webhook integration before analysts start reviewing findings so that results land in your existing workflow rather than requiring a separate dashboard check. Configure dismissal reasons from the start, even for the obvious false positives — those documented reasons are the beginning of your audit trail.Limitations Worth Knowing
Claude Security is a beta product and the constraints are real. Enterprise-only access applies today; Team and Max plan access is described as coming soon with no committed date, which limits availability for smaller health systems or medical groups that haven't moved to Enterprise licensing. Repository support is currently limited to GitHub — organizations on GitLab, Azure DevOps, or on-premises version control cannot use it yet. This is a meaningful gap for healthcare organizations that have standardized on Azure DevOps for compliance or data residency reasons.Consumption billing applies to scans, scaling with repository size and scan depth. Healthcare organizations should enable Extra Usage in Claude billing settings and model expected costs against their anticipated scan cadence before broadly enabling the feature. The spend limit controls in the admin console allow organizations to cap usage, which is worth configuring before a team starts scheduling weekly full-repo scans on a large codebase.
Claude can make mistakes, and Anthropic says so explicitly. Every proposed patch requires human review before application, particularly for critical systems. Don't treat confidence ratings as a substitute for analyst judgment — treat them as a triage signal. Legitimate security research work involving proof-of-concept exploit development may trigger Anthropic's real-time cyber safeguards, which are designed to block prohibited uses but can create friction for defensive research. Organizations doing this kind of work can apply for the Cyber Verification Program, but it's worth planning for the friction.
The Bigger Picture
Anthropic's framing for this release is worth taking at face value. They're not claiming AI will eventually change vulnerability research — they're saying it already has, and that the same capabilities available to defenders are available to anyone. Claude Mythos Preview, which Anthropic describes as matching or surpassing elite human experts at both finding and exploiting vulnerabilities, is already in the hands of a limited set of partners through Project Glasswing. The publicly available Opus 4.7 powering Claude Security is finding bugs that had evaded dedicated fuzzers for decades in well-maintained, heavily reviewed codebases.For healthcare organizations, the calculus is specific. PHI-adjacent codebases carry the highest regulatory and patient safety consequences of any industry sector when vulnerabilities are exploited. The tools to find those vulnerabilities before attackers do are now available at the enterprise level without requiring custom tooling, offensive security expertise, or API integration work. The operational question is not whether AI-powered vulnerability scanning belongs in a healthcare security program — it does. The question is whether your organization builds that capability now or waits until an incident forces the conversation.
Claude Security is available today for Claude Enterprise customers. Admins can enable it in the admin console at claude.ai/admin-settings/claude-code.
This is entry #58 in the AI Security series. For related coverage, see Securing AI Coding at Scale in Healthcare and Securing AI Agents: Tokens, Delegation, and the Trust Problem.
Key Links
- Anthropic: Claude Security product page
- Anthropic: Claude Security is now in public beta (April 30, 2026)
- Anthropic Red Team: Evaluating and mitigating the growing risk of LLM-discovered 0-days
- Anthropic: Getting Started with Claude Security (tutorial)
- Anthropic Support: Real-time cyber safeguards and the Cyber Verification Program
- Anthropic: Project Glasswing and Claude Mythos Preview