ZyVOP Logo
Content That Connects
SeriesAI NewsCategoriesWrite for Us
ZyVOP Logo
Content That Connects

Empowering developers and creators with cutting-edge insights, comprehensive tutorials, and innovative solutions for the digital future.

Content

  • Tags
  • Badges
  • Write Article
  • Newsletter

Company

  • About Us
  • Write for Us
  • Contact

Connect

  • Privacy Policy
  • Terms of Service
  • Cookie Policy
  • DMCA Policy
  • Code of Conduct

© 2026 ZyVOP. Crafted with care for the developer community.

Made with ❤️ by the ZyVOP team
All systems operational
HomeNewsGoogle Fixed More Chrome Bugs in June Than in the Past Two Years. Here Is How.
News

Google Fixed More Chrome Bugs in June Than in the Past Two Years. Here Is How.

1,072 security patches. Two browser releases. A multi-agent pipeline that is changing what vulnerability discovery looks like at scale.

Bhavya Arora
Bhavya AroraSenior Developer
August 1, 2026
7 min read
4 views
Google Fixed More Chrome Bugs in June Than in the Past Two Years. Here Is How.
#Chrome#Google#AI security#vulnerability discovery
👍1

The number is hard to process the first time you read it. In Chrome 149 and 150 -- two releases that both shipped in June 2026 -- Google patched 1,072 security bugs.

That single pair of releases surpassed the 1,036 fixes across the prior 23 Chrome milestones, covering roughly two years of browser development dating back to Chrome 126 in June 2024.

This is not a rounding error. It is not a change in how Google counts bugs. It is the output of a system Google has been building for three years finally hitting production scale, and it landed in a single month.


What the Numbers Actually Say

The comparison Google is making is specific: 23 milestones, approximately two years, 1,036 fixes. Then Chrome 149 and 150, in June, 1,072. The prior 23 releases were not slow by historical standards -- they represented the full output of a large, experienced security team running established fuzzing infrastructure and a public vulnerability reward program.

The jump is not incremental.

Chrome's director of engineering Doug Turner described it to TechCrunch as LLMs having fundamentally shifted the economics of cybersecurity -- turning what was a human-intensive, bottlenecked discovery process into something closer to an automated industrial operation.

That framing matters because it signals this is not a one-time spike. Google published a white paper alongside the announcement showing the fix count curve bending sharply upward over recent milestones, not spiking and flattening.


Three Agents Doing What One Team Could Not

The system Google built is not a single model scanning code for vulnerabilities. It is a chain of specialized agents, each handling a distinct phase of what used to be a manual workflow.

The vulnerability-finding layer of the harness scans the Chrome codebase for potential security bugs. These agents run on locked-down machines without general internet access, operating against static source code and using a knowledge base that includes all previously identified CVEs and Chrome's entire Git history to extend reasoning past the models' training cutoffs.

Google also added a "critic" sub-agent with a separate context that ingests SECURITY.md files -- trust boundary documents developers are now encouraged to write explicitly so models can reason about which operations carry security implications.

Once a bug is confirmed, fixing agents generate multiple candidate patches. They do not produce one answer and wait for human approval -- they return several options. A second critic agent then evaluates which candidate is the strongest fit, running the fixing and critic stages in a loop that mirrors a standard code review cycle.

The loop checks that code is functional, compliant with Chromium style guidelines, and consistent with local code conventions before it surfaces to a human developer.

Test-writing agents then produce tests for the fix, verifying behavior across Chrome's full matrix of supported platforms and configurations before a developer touches it.

In practice, this means a human developer is reviewing a patch that already has tests confirming it works -- cutting weeks from the manual process that previously followed every fix.


The Bug That Survived 13 Years

The most striking individual result from Google's 2026 agent harness was not a numbers story. In early 2026, the system flagged a Chrome sandbox escape that had survived in the codebase for more than 13 years.

The vulnerability would have allowed a compromised renderer process to trick the browser into reading local files -- a class of attack that bypasses the fundamental isolation assumption that Chrome's multi-process architecture is built on.

The bug was not exotic. It was a quiet logic flaw that did not trip any of the heuristics Chrome's fuzzing infrastructure was tuned to catch, because fuzzing excels at finding crashes from long-range interactions between distant code paths, not at reasoning about trust boundaries.

The agent found it by combining codebase knowledge with an explicit understanding of what a renderer is supposed to be able to do -- and noticing the gap.

Google says this moment -- finding a 13-year-old sandbox escape in early 2026 -- is what convinced the team that AI-powered vulnerability detection had moved from promising to production-ready.

The subsequent investment in the full multi-agent pipeline followed from that result.


Triage at Scale

Bug discovery without triage infrastructure is a different kind of bottleneck. Finding 1,072 bugs is only useful if someone can process 1,072 bugs. Google's solution here is a four-stage automated pipeline that runs before a human engineer sees most reports.

The first stage filters spam and deduplication. The second reproduces the bug, attaching stack traces and confirming which OS versions and builds are affected. The third enriches the report with severity, component, and introduction date.

The fourth routes it to the correct owner automatically. Google estimates the new process is saving hundreds of hours of developer time per month, compared to the 5-to-30-minute per-report baseline that previously relied on human expertise.

The external program has shifted too. By March 2026, Google's vulnerability reward program had already received more reports than it had in all of 2025.

Google responded by modifying the program's rules to focus external researchers on findings that add something beyond what the internal automated tooling is already catching -- effectively raising the bar for what qualifies as a novel external contribution.


The Patch Gap Problem Nobody Has Solved

More patches, produced faster, create a problem that the industry has not figured out yet. Once a fix lands in Chromium's public source repository -- which is open, by design -- anyone can read the commit, understand what the bug was, and begin building an exploit.

The window between a fix landing in the public tree and that fix reaching users in the stable Chrome channel has historically been measured in weeks.

Google calls this the patch gap, and the response has been to accelerate release cadence. Chrome is transitioning to a two-week cadence for major milestones, with weekly security updates.

That alone is not fast enough in an environment where AI-powered tools can analyze a public commit and generate an exploit in the time it takes to ship a stable release. Google is now piloting two security releases per week.

Even that depends on users actually restarting their browsers. In Chrome 150, Google rolled out a change on macOS that automatically restarts Chrome when it detects a pending update while running in a windowless background state.

The longer-term project is something called dynamic patching -- replacing individual child processes (renderer, GPU) with updated binaries on the fly, without requiring a full browser restart.

That feature is still in research. The two-per-week cadence is in active pilot.


Microsoft Is Running the Same Playbook

Google is not doing this alone. Microsoft's July 2026 Patch Tuesday fixed 570 security vulnerabilities in a single release -- the largest in the company's history, and almost triple the 200 it fixed in June 2026.

For context, July 2025 had 137 patches. That is a 316% year-over-year increase in one month.

Microsoft's system is called MDASH -- the Microsoft Security multi-model agentic scanning harness -- and like Google's pipeline, it runs across the Windows codebase continuously, using multiple AI models in combination.

Three of the July vulnerabilities were zero-days; two were actively being exploited before the patches were available. Microsoft's EVP Pavan Davuluri told users to expect higher update volumes going forward as AI-aided discovery becomes the default mode.

The parallel is not coincidental. Both Google and Microsoft are responding to the same underlying shift: AI tools available to attackers can now scan code and find exploitable flaws faster than human red teams can.

The only response available to defenders is to run the same class of tools on their own codebases, and patch faster than attackers can weaponize what the public commits reveal.


Apple Is Not Seeing This Curve

One data point that cuts against reading this as a general industry trend: Apple is not showing the same exponential increase. An independent count of Apple CVEs puts the company at 482 security bug fixes in 2026 so far -- roughly on pace with 2025, and roughly comparable to 2015 levels.

No hockey stick. No record months.

TechCrunch asked Apple for comment on whether it is deploying similar AI-powered vulnerability discovery tools. Apple did not respond. There are several possible explanations that are not mutually exclusive: Apple may be running the tools but not publishing about them; its codebase architecture may differ enough that the same approaches find fewer bugs; or it has not yet invested in a comparable pipeline.

The absence of a public statement makes it impossible to distinguish between those possibilities.

What is clear is that the curve Google and Microsoft are on has a specific cause -- deploying multi-agent AI systems tuned to find security flaws across large codebases -- and that cause is replicable. Whether Apple follows, and when, is an open question.


What Industrial-Scale Bug Discovery Actually Means

There is a version of this story that reads as simple good news: AI found more bugs, the bugs got patched, Chrome is safer. That is true as far as it goes. But the more durable implication is structural.

Security teams have always operated on the assumption that the set of exploitable bugs in any large codebase is finite and shrinking -- that each patch cycle brings you closer to the bottom.

The early 2026 numbers suggest the bucket is deeper than anyone modeled. A 13-year-old sandbox escape in Chrome -- a browser with extensive security investment and fuzzing infrastructure -- surviving undetected until an AI agent reasoned about trust boundaries is a signal that AI-driven discovery is surfacing a different category of vulnerability than fuzzing finds.

The corollary is uncomfortable: if Google's agent harness found bugs that fuzzing missed for 13 years, attackers with comparable tools can do the same. Google acknowledges this directly in its white paper, noting that AI systems that find bugs also accelerate N-day exploitation once fixes land in the public tree.

The response -- faster patching, two security releases per week, dynamic patching research -- is correct. Whether the patching cadence can outrun the exploitation cadence remains the open question.

The one thing the June numbers make unambiguous is that the prediction security researchers have been making since 2024 -- that AI would turn vulnerability discovery into an automated, industrial-scale operation -- is no longer a prediction. It is July 2026, and it is already happening.

Bhavya Arora

Bhavya Arora

Passionate developer sharing knowledge about modern web technologies and best practices.

Comments (0)

Login to post a comment.

Google Fixed More Chrome Bugs in June Than in the Past Two Years. Here Is How.

Related Posts

My chrome extension just got an update

Hi everyone, i'm the developer behind TabScroll. Join I built it because I constantly had 30+ tabs open and couldn't find a fast way to switch between them with...

Read article

Open‑Weight AI Is Redefining the Competitive Landscape | The AI Daily Roundup

Open‑weight models are eroding the closed‑AI monopoly of U.S. giants, fueling Chinese dominance, exposing new security risks, and forcing a shift toward service‑layer differentiation. The winners are open‑model labs and agile startups; the losers are proprietary vendors and investors betting on clos

Read article