← Back to all entries
2026-08-23 🧭 Daily News

Mythos 5 Enters Claude Security, Admin API Goes GA, and Code Gets a Quality Sprint

Mythos 5 Enters Claude Security, Admin API Goes GA, and Code Gets a Quality Sprint — visual for 2026-08-23

🧭 Claude Mythos 5 Now Powers Claude Security's Vulnerability Scanner — Backed by a $35M Open-Source Fund

Anthropic has brought Claude Mythos 5 — previously available only to vetted defenders through Project Glasswing — into Claude Security, the company's enterprise vulnerability-scanning product now in public beta for Claude Enterprise customers. The same announcement launches the Defender Advantage Fund (0xDAF), a $35 million pool of Claude credits for organisations improving the security of widely used open-source software.

What Claude Security does with Mythos 5

Claude Security scans a selected repository with Mythos 5 and returns findings classified by Common Weakness Enumeration (CWE) category, severity level, confidence rating, and AI-generated suggested patches. The upgrade from the prior model to Mythos 5 meaningfully increases recall on complex, multi-file vulnerability patterns — the kind that require understanding inter-module data flow rather than matching individual function signatures.

# Triggering a Claude Security scan via Admin API
curl -X POST https://api.anthropic.com/v1/security/scans \
  -H "x-api-key: $ANTHROPIC_API_KEY" \
  -H "anthropic-version: 2023-06-01" \
  -d '{
    "repo_url": "https://github.com/your-org/your-repo",
    "branch": "main",
    "severity_threshold": "medium"
  }'

Defender Advantage Fund (0xDAF) — three grant tracks

Who should apply for 0xDAF

Maintainers of open-source projects with high downstream dependents (npm, PyPI, Debian, Maven) are the primary target. Security research teams doing systematic remediation — not one-off bounty hunting — are also eligible. The grant is in Claude credits, not cash, so recipients use Claude Security and the API directly to do the patching work. Applications open at the link below.

⭐⭐⭐ claude.com
Claude Security Mythos 5 vulnerability scanning open source cybersecurity 0xDAF

🧭 Enterprise Admin API User-Management Endpoints Reach General Availability

Anthropic has graduated the Admin API's user-management endpoints for Claude Enterprise (claude.ai) organisations from beta to general availability. The anthropic-beta: ce-user-management-2026-07-13 header is no longer required; requests that still include it are accepted without error, but new integrations should omit it. All four resource types — members, invites, groups, and custom roles — are now production-grade.

What you can do programmatically

Practical integration pattern

# List all members (GA — no beta header needed)
curl https://api.anthropic.com/v1/organizations/members \
  -H "x-api-key: $ANTHROPIC_ADMIN_KEY" \
  -H "anthropic-version: 2023-06-01"

# Invite a new user
curl -X POST https://api.anthropic.com/v1/organizations/invites \
  -H "x-api-key: $ANTHROPIC_ADMIN_KEY" \
  -H "anthropic-version: 2023-06-01" \
  -d '{"email": "newuser@example.com", "role": "user"}'
SCIM vs Admin API — which to use

The Admin API is a direct REST interface best suited for custom scripts, audit tooling, and platforms that already call the Anthropic API. If your identity provider (Okta, Azure AD, OneLogin) supports SCIM and you want automated provisioning tied to your IdP lifecycle events, the Claude Enterprise SCIM connector is the better fit. The two systems are compatible: SCIM handles provisioning; the Admin API handles bulk operations and custom automation that falls outside standard provisioning flows.

Admin API Enterprise user management general availability groups

🧭 Claude Code v2.1.240–241: Bedrock, Alpine/musl, Python Upgrade Helper, and Skill-Alias Fix

Two successive Claude Code releases this weekend pack a range of new capabilities alongside targeted bug fixes. The headline additions are native AWS Bedrock session support, an Alpine/musl build for minimal Linux containers, a Python 1.x → 2.x upgrade helper, and a fix for bundled skill aliases silently failing in non-interactive mode.

New capabilities in v2.1.240–241

Bug fixes

Updating to the Alpine/musl build

If your CI or production containers are Alpine-based, swap @anthropic-ai/claude-code for @anthropic-ai/claude-code-musl in your Dockerfile. The API, session behaviour, and all skill files are identical; only the underlying C runtime differs. The musl build is published to npm alongside the standard package from v2.1.240 onward.

⭐⭐⭐ code.claude.com
Claude Code patch notes Bedrock Alpine Python bug fix
Source trust ratings ⭐⭐⭐ Official Anthropic  ·  ⭐⭐ Established press  ·  Community / research