Newsroom
Tool

Zhipu AI’s answer to Project Glasswing marks shift for Chinese cyber safety: researcher

D
Daniele Antoniani
August 19, 202612 min readUpdated August 19, 2026
Share:
Zhipu AI’s answer to Project Glasswing marks shift for Chinese cyber safety: researcher

GLM-5.3 vs. Project Glasswing: What Zhipu AI's Cybersecurity Push Means for Tool Builders

TL;DR

Anthropic's Project Glasswing reset expectations for what AI can do in vulnerability discovery — 10,000+ critical findings in the first month, backed by a $100 million commitment. Zhipu AI's GLM-5.3 matched or beat those benchmark numbers as a freely downloadable open-weight model. The security advantage that was supposed to sit behind export controls is now available to anyone with a GPU, and that has direct workflow implications for every team building with AI tools today.

Key Takeaways

  • Anthropic's Project Glasswing, launched April 7, 2026, identified over 10,000 high- or critical-severity vulnerabilities within its first month of operation across twelve major tech partners, according to Anthropic's official project page.
  • Zhipu AI's GLM-5.2 scored 39% F1 on IDOR (Insecure Direct Object Reference) detection, outperforming Claude Code's 32–37% on identical tasks at roughly $0.17 per vulnerability found, according to independent testing by Semgrep published June 2026.
  • GLM-5.3, released August 14, 2026, scored 84.5% on the CyberGym benchmark — slightly above the 83.8% Zhipu reported for Anthropic's Claude Mythos 5 — and already found a serious vulnerability in Cursor during early testing, according to VentureBeat.
  • Zhipu's software tools have identified 2,436 vulnerabilities across 269 open-source projects, including 1,097 classified critical or high severity, some dating back 45 years.
  • GLM-5.3 is available now through the GLM Coding Plan and integrates with ZCode, Claude Code, and OpenCode; open weights are set for release two weeks after August 14 pending security review.
  • Zhipu's "Cybersecurity Trusted Access" plan restricts offensive model capabilities to verified users — described as the first time a Chinese lab has publicly cited safety concerns as justification for delaying an open-weight release, according to South China Morning Post, citing Concordia AI researcher Gabriel Wagner.
  • Anthropic expanded Glasswing from 12 founding partners to 150+ organizations in 15+ countries within two months, extending into power, water, healthcare, communications, and hardware sectors.

What Project Glasswing Actually Built

Let me be precise about what happened in April 2026, because the media coverage varied wildly in specificity.

Glasswing was not a whitepaper. It was a deployment. Claude Mythos Preview — a frontier model not available to the public — was given to twelve verified organizations: AWS, Apple, Broadcom, Cisco, CrowdStrike, Google, JPMorganChase, the Linux Foundation, Microsoft, NVIDIA, Palo Alto Networks, and Anthropic itself. The task: find critical vulnerabilities in widely deployed software before attackers find them.

In the first month, those teams identified over 10,000 high- or critical-severity vulnerabilities. Anthropic committed $100 million in model credits to participants, plus $2.5 million to the Open Source Security Foundation and $1.5 million to the Apache Software Foundation for remediation infrastructure.

By late May, approximately 150 additional organizations in 15+ countries had joined. Glasswing expanded into critical infrastructure sectors — power grids, water systems, healthcare networks, communications, and hardware — making this a governance story as much as a technology one.

The model powering all of this remained closed, credentialed, and subject to U.S. export controls. That was assumed to be a durable advantage.

Then Zhipu shipped.

What Zhipu AI Shipped — and What the Numbers Say

GLM-5.2 went out on June 13, 2026, under a permissive open-weight license. No verification. No export controls that hold against a downloadable model file.

Semgrep, a code security software company with no stake in either lab, ran independent benchmarks. GLM-5.2 scored 39% F1 on IDOR detection versus 32–37% for Claude Code on the same tasks. The Semgrep post headline was blunt: "We have Mythos at home." Cost per vulnerability found: approximately $0.17. That is not a rounding error in favor of incumbent tools.

GLM-5.3 arrived August 14, 2026. Same base model as GLM-5.2, improved through extended post-training rather than a new pretraining run. CyberGym score: 84.5%, against 83.8% for Mythos 5. That Mythos 5 comparison is Zhipu's own claim — weight it accordingly. The Semgrep data is independent and harder to dismiss.

The model also already found a serious vulnerability in Cursor in early access testing. A widely used AI coding tool had a flaw that a competing AI tool caught. That is not a small anecdote.

What This Changes for AI Tool Builders

Most teams building with AI tools are not running dedicated security teams. They're using AI to generate code, wire automations, ship product. That workflow just picked up a new variable.

The attack surface got smarter at $0.17 a scan. If someone can run automated IDOR detection at that price against your app, the economics of hunting for vulnerabilities shifted permanently toward offense. This is not speculative — the app that found a flaw in Cursor was doing it during access testing, not in production.

The audit tool is now freely available. If you have a public interface, you can run GLM-5.3 against your own codebase before someone else does. Zhipu's Open Source Shield initiative also offers free security audits for selected open-source projects. The barrier is no longer access or cost — it is prioritization.

Multi-model workflows need a security layer. If your automation stack generates, modifies, or commits code, you need a review step somewhere in that chain. That step is now cheap enough to be standard, not optional.

Prompts That Work: Security Review With AI Tools

Three templates, structured for defensive use — reviewing code you already wrote. All three work across GLM-5.3, Claude Code, and GPT-4o, though model strengths vary by task.

Prompt 1 — IDOR vulnerability scan

``` You are a security-focused code reviewer. Analyze the following code for Insecure Direct Object Reference (IDOR) vulnerabilities. For each issue: state the exact line number, describe the attack vector, and suggest the minimal fix. Return results as a structured list. No commentary.

[paste code here] ```

GLM-5.3 has a documented edge on this specific class based on the Semgrep data. Run it here first.

Prompt 2 — Dependency risk sweep

``` Review the following dependency list for known vulnerability patterns. Flag any package that: (1) has had a critical CVE in the last 24 months, (2) has not been updated in over 12 months, or (3) is a transitive dependency with known supply chain risks. Return as a table: Package | Risk level | Reason | Recommended action.

[paste package.json or requirements.txt] ```

GPT-4o tends to have more current npm package history. Claude Code handles Python ecosystems well. Test both when the stack is mixed.

Prompt 3 — API endpoint authentication check

``` Examine the following API route definitions. For each endpoint assess: (1) whether authentication is enforced, (2) whether authorization checks occur after authentication, and (3) whether input is validated before processing. Flag any endpoint that fails any check. Name the missing control and the line where it should be added.

[paste route definitions — one file at a time] ```

Keep this to single files. Feeding large codebases into one prompt degrades precision. Chain this as a script across files for broader coverage.

AI security review catches pattern-based vulnerabilities well. It does not replace penetration testing and does not replace a human who understands your actual threat model.

Comparison Table: Project Glasswing vs. GLM-5.3

DimensionProject Glasswing (Anthropic)GLM-5.3 (Zhipu / Z.ai)
ModelClaude Mythos Preview (unreleased)GLM-5.3 (released Aug 14, 2026)
Access modelClosed — verified partners onlyOpen-weight (weights released ~2 weeks post-launch)
Cost to use$100M in credits to partners~$0.17/vulnerability (GLM-5.2 API; open weights = compute only)
IDOR F1 score32–37% (Claude Code, independent Semgrep test)39% (GLM-5.2, independent Semgrep test)
CyberGym score83.8% (Mythos 5, Zhipu's claim)84.5% (GLM-5.3, Zhipu's claim)
Vulnerabilities found10,000+ first month, 12 partners2,436 across 269 projects (Zhipu-run)
GovernanceCredentialed access; U.S. export controls"Cybersecurity Trusted Access" for offensive caps; otherwise open
Coding tool integrationClaude CodeZCode, Claude Code, OpenCode
Export restrictionYes — enforceableNo — open weights cannot be meaningfully restricted
Critical infra expansion150+ orgs, 15+ countriesNot yet publicly scoped

Checklist: Evaluating an AI Security Tool Before You Commit

Before integrating any AI security tool into your pipeline, run through these. Skipping any of them has a documented failure mode attached.

  • Does the benchmark match your actual vulnerability class? IDOR scores measure web app object-reference flaws. CyberGym is broader. If your stack is primarily infrastructure, hardware, or firmware, neither metric is directly relevant.
  • Who ran the benchmark? Semgrep's GLM-5.2 data is independent. Zhipu's CyberGym comparison against Mythos 5 is self-reported. Weight them accordingly.
  • What happens to the code you submit? API-based tools mean your code leaves your environment. Self-hosted open-weight models eliminate that risk entirely. Decide which matters more for your threat profile before you pick a tool.
  • Does it integrate with your existing coding agent? GLM-5.3 runs inside ZCode, Claude Code, and OpenCode. Mixing incompatible tools mid-workflow adds error surface. Check integration before you commit to a model.
  • What is the false positive rate in practice? High-recall scanners generate noise. If your team spends more time triaging false positives than fixing real vulnerabilities, the tool has negative net value regardless of its F1 score.
  • Is there a restricted-access tier for offensive capabilities? The presence of a gating mechanism signals the lab has engaged with misuse scenarios. Absent that, you're relying on terms of service, which is not a durable control.

The convergence happening in AI coding tools suggests these security capabilities will not stay siloed much longer — expect tighter integration between code generation and security audit inside the same automation layer.

Where This Is Heading

Open-weight security models will force a new audit baseline. When a model that scores 84.5% on CyberGym is freely downloadable, "we don't have the budget for a security audit" becomes harder to defend. The audit tool is free. The constraint shifts to interpretation and remediation — which is where human judgment actually adds value.

Governance gaps will widen before they narrow. Zhipu's decision to delay the GLM-5.3 weight release over cybersecurity concerns is notable. It is the first publicly justified safety-based delay from a Chinese frontier lab, per Gabriel Wagner at Concordia AI. It is also self-enforced and unverifiable. Whether it holds as the model spreads is a genuinely open question, not a solved one.

Multi-model security workflows will become standard practice. No single model dominates every vulnerability class. Practical workflows in twelve months will likely chain: one model for IDOR and injection detection, another for dependency analysis, a third for authentication logic review. The cost economics now support this. The infrastructure mostly exists.

The benchmark gap between Western and Chinese labs on specialized tasks is narrower than the general narrative. GLM-5.2 outperformed Claude Code on a specific, high-value task at a fraction of the cost. GLM-5.3 extended that on CyberGym. The general-capability gap is real. The task-specific gap is closing faster than most Western observers expected.

Regulatory pressure on AI security tooling will accelerate. Glasswing's expansion into critical infrastructure positions Anthropic as a policy actor, not just a lab. Pressure is building on governments to define what responsible AI-assisted vulnerability research actually means. Expect those definitions to lag practice by years — and to be shaped in part by where the open-weight releases go.

FAQ

Is GLM-5.3 actually better than Anthropic's security model? On specific benchmarks, GLM-5.3 is competitive and in some cases marginally ahead — but the comparisons are complicated. The Semgrep data covers GLM-5.2 versus Claude Code, not versus Claude Mythos Preview, which is what Glasswing actually deploys. Zhipu's CyberGym comparison against Mythos 5 is self-reported. The honest read: GLM is genuinely competitive on narrow vulnerability detection. Whether that holds across a full security engagement has not been independently verified.

Can I use GLM-5.3 for penetration testing today? Zhipu gates the offensive capability tier behind "Cybersecurity Trusted Access." The verification criteria are still being defined as of August 2026. The open-weight release will include standard weights; the extent of capability restriction is unknown until those weights are available for inspection. For defensive code review, the capability is clearly accessible now through the GLM Coding Plan.

Does open-weight mean adversaries have access to this? Yes. Export controls do not meaningfully restrict open-weight model releases — the weights are the product. This is not new to GLM-5.3; it applies to any open-weight model above a certain capability threshold. It is why Zhipu's governance decision matters symbolically, and also why you should not treat a closed-access tool as your only line of defense.

What does it actually cost to run this for my codebase? Via the GLM Coding Plan, GLM-5.3 is available now at API pricing. The $0.17-per-vulnerability figure came from Semgrep's GLM-5.2 API runs. Once open weights ship, self-hosting eliminates per-call costs and data exposure risk simultaneously. Hardware requirements for GLM-5.3 have not been fully published as of August 14.

Should I switch from Claude Code to GLM-5.3 for security work? Not entirely. Claude Code remains strong on code quality, refactoring, test generation, and documentation tasks. GLM-5.3's documented edge is task-specific — IDOR and CyberGym-class vulnerability detection. The better question for most teams is not which tool to switch to, but whether your current workflow includes any structured security review step at all. If it does not, either tool is better than nothing.

What does Zhipu's safety delay signal about Chinese AI governance? It signals that the rhetorical framing is shifting — Chinese labs are starting to use safety language to justify access decisions, not just capability claims. Whether governance practice follows rhetoric is a separate question and genuinely uncertain. Wagner at Concordia AI was careful to call it a first, not a trend.

Is Glasswing a permanent program or a one-time initiative? The expansion from 12 partners to 150+ organizations across 15+ countries in under two months reads as infrastructure, not a campaign. How it evolves — whether it becomes a commercial product, a regulatory instrument, or ongoing research — is not yet public. The $100 million commitment is real. The long-term institutional form is not yet defined.

D
I spent 15 years building affiliate programs and e-commerce partnerships across Europe and North America before launching BestAIFor in 2023. The goal was simple: help people move past AI hype to actual use. I test tools in real workflows, content operations, tracking systems, automation setups, then write about what works, what doesn't, and why. You'll find tradeoff analysis here, not vendor pitches. I care about outcomes you can measure: time saved, quality improved, costs reduced. My focus extends beyond tools. I'm waching how AI reshapes work economics and human-computer interaction at the everyday level. The technology moves fast, but the human questions: who benefits, what changes, what stays the same, matter more.

Related Articles