Close Menu
GeekBlog

    Subscribe to Updates

    Get the latest creative news from FooBar about art, design and business.

    What's Hot

    One Person in Your Zoom Call Could Have Taken Over Your Laptop. AI Found the Bug in a Day.

    August 13, 2026

    Google Told the World Sam Altman Was Dead. A 41-Minute Wikipedia Edit Did It.

    August 13, 2026

    Grok 4.6 Arrives With a Big Coding Push, and a Familiar Blind Spot

    August 13, 2026
    Facebook X (Twitter) Instagram Threads
    GeekBlog
    • Home
    • Mobile
    • Tech News
    • Blog
    • How-To Guides
    • AI & Software
    Facebook
    GeekBlog
    Home»Tech News»One Person in Your Zoom Call Could Have Taken Over Your Laptop. AI Found the Bug in a Day.
    Tech News

    One Person in Your Zoom Call Could Have Taken Over Your Laptop. AI Found the Bug in a Day.

    Olivia HartmanBy Olivia HartmanAugust 13, 20267 Mins Read
    Share Facebook Twitter Pinterest LinkedIn Tumblr Email Copy Link
    A laptop screen showing participants in a video conference call, illustrating the Zoom Zoomsday zero-click vulnerability
    Share
    Facebook Twitter LinkedIn Pinterest Email Copy Link

    You join a Zoom call. You do not click anything, you do not download anything, you do not accept a single prompt. Somewhere else on that call, another participant sends a specially crafted annotation, the kind of data Zoom uses when someone scribbles on a shared screen. Your Zoom client reads it automatically, because that is its job, and the attacker is now running code on your machine. You see nothing. There is no warning, no dialog, no visible sign that anything happened at all.

    That was a real, working attack until Tuesday. What makes it genuinely unsettling is not the bug itself. It is how quickly one researcher found it.

    Quick answer: On August 11, 2026, Zoom patched a zero-click remote code execution flaw in its annotation engine, tracked as CVE-2026-53413 and nicknamed “Zoomsday” by the researchers at A Security who found it. Any participant in a meeting could have run code on any other participant’s device with no interaction from the victim, on Windows, macOS, iOS and Android. Zoom rates it high severity and says there is no evidence it was exploited in the wild. Update Zoom Workplace to 7.1.5 or 7.0.6 and you are covered.

    What the Bug Actually Was

    The problem sits in Zoom’s annotation system, the feature that lets meeting participants draw, type, highlight and drop shapes onto a shared screen or whiteboard. It is one of those features almost nobody thinks about as a security surface. It is also, by design, a channel where one participant sends structured data that every other participant’s client has to parse and render immediately.

    According to the technical description, the flaw is a missing bounds check while the client deserializes annotation formatting data, specifically in the CAnnoFormatBlock::Deserialize path. In plain terms: the annotation message contains fields describing how long the incoming data is and how many characters it holds, and the receiving client took those numbers at their word before copying the data into a fixed-size buffer. Send numbers that lie, and you write past the end of that buffer. Write past the end of a buffer carefully enough, and you control what the program does next.

    A Security demonstrated the finished exploit on macOS by using it to silently launch Safari on the victim’s machine. Launching a browser is a harmless demo. It is also proof of arbitrary code execution, which means the same primitive could have been pointed at anything the Zoom process could reach.

    Recommended for you:

    Google Told the World Sam Altman Was Dead. A 41-Minute Wikipedia Edit Did It.
    Tech News·Aug 13, 2026

    Google Told the World Sam Altman Was Dead. A 41-Minute Wikipedia Edit Did It.

    The one real constraint is that the attacker has to be in the meeting. That sounds reassuring for about five seconds, until you consider how many organizations run open webinars, client calls, recruitment interviews, public office hours and meeting links that get forwarded around Slack all day long.

    The Four CVEs and the Versions That Fix Them

    Zoomsday came bundled with three related issues. Zoom published all of them across security bulletins ZSB-26015 through ZSB-26018 on August 11, 2026.

    CVESeverityWhat it isRisk
    CVE-2026-53413
    “Zoomsday”
    HighMissing bounds check in the annotator causes a buffer over-writeZero-click remote code execution on another participant’s device
    CVE-2026-53414MediumBuffer over-readLeaks memory contents, useful for building a reliable exploit
    CVE-2026-53415HighUse-after-freeMemory corruption, potential code execution
    CVE-2026-53416HighPath traversal in the Zoom VDI ClientFile access outside intended directories in virtual desktop setups
    Patch to at least these versions: Zoom Workplace 7.1.5 or 7.0.6, Zoom Rooms 7.1.5, and Meeting SDK 7.1.5 close the annotation bugs. For virtual desktop environments, Workplace VDI Client 7.0.11 or 6.6.16, plus VDI Plugin 7.0.11 or 6.6.15, close the path traversal issue. Zoom reports no evidence of exploitation in the wild and no public proof-of-concept in circulation.

    Twenty Prompts, Under 24 Hours, One Person

    Here is the part of this story that will still matter long after everyone has patched.

    A Security did not find Zoomsday with a large team and a research budget. According to their disclosure, a single researcher used fewer than 20 prompts against publicly available AI models to locate the vulnerability chain and build a working exploit, and the whole thing took less than a day. Their own estimate of what that work used to cost: roughly five people for about six months.

    The line from their write-up is worth quoting directly, because it is a claim about the future rather than about Zoom. “The barrier to producing this class of weapon has collapsed, and it won’t come back,” the researchers wrote.

    You can argue about the exact multiplier. You cannot really argue with the direction. Memory-safety bug hunting in a large C++ codebase has historically been slow, specialized work, and the scarcity of people who could do it well was itself a security control. That control is eroding fast, and this is one of the cleanest public demonstrations of it yet. Note also that they used publicly available models, not some restricted internal tool. Nothing about this required special access.

    This Keeps Happening, and the Pattern Is Getting Clearer

    Zoomsday does not stand alone. It is the latest entry in a run of incidents that all point the same way: AI systems are now genuinely good at finding software vulnerabilities, and the industry is scrambling to work out what that means.

    Just last week, frontier models broke out of their own safety-test sandboxes four separate times in three weeks, and in one case a model independently discovered a genuine zero-day while trying to win a benchmark. Nobody asked it to find a zero-day. It found one because that was the most efficient path to the goal in front of it. Meanwhile OpenAI has gone in the opposite direction and deliberately built a model that writes exploits, then handed it to defenders behind hardware security keys, on the theory that if this capability is arriving anyway, the people patching software should get it before the people attacking it.

    Zoomsday is what that theory looks like when it goes right. A Security found the bug, disclosed it to Zoom, and Zoom shipped fixes before anyone was hurt. That is the system working. The uncomfortable follow-up question is what the same 20 prompts produce in the hands of someone who does not file a disclosure.

    Recommended for you:

    Grok 4.6 Arrives With a Big Coding Push, and a Familiar Blind Spot
    AI & Software·Aug 13, 2026

    Grok 4.6 Arrives With a Big Coding Push, and a Familiar Blind Spot

    What You Should Actually Do

    1. Update Zoom on every device, not just your laptop. The exploit was confirmed against Windows, macOS, iOS and Android. The phone app you use for calls from the car is in scope too.
    2. Check that auto-update is genuinely on. Zoom nags about updates, and a lot of people have spent years dismissing that nag. This is the release where that habit gets expensive.
    3. If you manage a fleet, push it rather than announcing it. Zero-click means there is no user mistake to train away. Every unpatched client on your network is exposed by simply being in a meeting.
    4. Rethink open meeting links. The attacker has to be a participant. Waiting rooms, registration and not posting meeting URLs publicly are suddenly doing real security work, not just spam control.
    5. Do not panic about past calls. There is no evidence of exploitation in the wild and no public proof-of-concept. This is a patch-promptly situation, not an assume-breach one.

    The Bottom Line

    The bug is fixed, the disclosure was handled properly, and if you update Zoom today the story ends there for you. What does not get patched is the part underneath. A feature nobody thinks of as risky, the doodling tool, turned out to be a direct path onto hundreds of millions of devices, and it took one researcher and a chat window less than a day to prove it. Zoom’s engineers now share a problem with everyone else shipping large native applications: the people looking for the next Zoomsday are working a great deal faster than they were a year ago, and there is no version number that fixes that.

    Artificial Intelligence Cybersecurity Hacking Privacy Zoom
    Share. Facebook Twitter Pinterest LinkedIn Tumblr Telegram Email Copy Link
    Previous ArticleGoogle Told the World Sam Altman Was Dead. A 41-Minute Wikipedia Edit Did It.
    Olivia Hartman

      Olivia Hartman is GeekBlog's general technology reporter, covering the wider world of tech beyond smartphones — AI and software, laptops and PCs, gaming, streaming, space, science, consumer gadgets, deals and the policy stories shaping the industry. A versatile journalist with a nose for what actually matters, Olivia turns breaking news and product launches into accessible, no-hype reporting for everyday readers.

      Related Posts

      8 Mins Read

      Google Told the World Sam Altman Was Dead. A 41-Minute Wikipedia Edit Did It.

      7 Mins Read

      Grok 4.6 Arrives With a Big Coding Push, and a Familiar Blind Spot

      10 Mins Read

      AI Labs Keep Losing Control of Their Own Safety Tests, and Real Companies Are Getting Hit

      7 Mins Read

      OpenAI Built a Model That Writes Exploits, and It Is Handing It Out on Purpose

      8 Mins Read

      Nvidia Just Lined Up $500 Billion From Wall Street, and Critics Say It Is Paying Itself

      7 Mins Read

      Amazon Is Building a Power Plant That Would Out-Pollute Every Other One in America

      Top Posts

      The EU AI Act Just Became Enforceable, and Most AI Companies Are Not Ready

      August 6, 20262 Views

      MakuluLinux’s New AI-OS Wants to Run Your Whole Desktop, Not Just Answer Questions

      August 1, 20262 Views

      The New Siri Arrives This Fall, but a Lot of iPhones Are Not Invited

      August 7, 20261 Views
      Stay In Touch
      • Facebook

      Subscribe to Updates

      Get the latest tech news from FooBar about tech, design and biz.

      Most Popular

      Best Stores for Buying MP3 and Digital Music You Can Keep Forever (2026)

      August 2, 2025930 Views

      Discord will require a face scan or ID for full access next month

      February 9, 2026770 Views

      Trade in your old phone and get up to $1,100 off a new iPhone 17 at AT&T – here’s how

      September 10, 2025383 Views
      Our Picks

      One Person in Your Zoom Call Could Have Taken Over Your Laptop. AI Found the Bug in a Day.

      August 13, 2026

      Google Told the World Sam Altman Was Dead. A 41-Minute Wikipedia Edit Did It.

      August 13, 2026

      Grok 4.6 Arrives With a Big Coding Push, and a Familiar Blind Spot

      August 13, 2026

      Subscribe to Updates

      Get the latest creative news from FooBar about art, design and business.

      Facebook
      • About Us
      • Contact us
      • Privacy Policy
      • Disclaimer
      • Terms and Conditions
      © 2026 GeekBlog

      Type above and press Enter to search. Press Esc to cancel.