Close Menu
GeekBlog

    Subscribe to Updates

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

    What's Hot

    A Poisoned Security Scanner Just Leaked 153GB of Secrets From 2,488 Companies

    August 13, 2026

    Lovable Is Now Worth $13.3 Billion, and It Doubled That in Eight Months

    August 13, 2026

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

    August 13, 2026
    Facebook X (Twitter) Instagram Threads
    GeekBlog
    • Home
    • Mobile
    • Tech News
    • Blog
    • How-To Guides
    • AI & Software
    Facebook
    GeekBlog
    Home»Tech News»A Poisoned Security Scanner Just Leaked 153GB of Secrets From 2,488 Companies
    Tech News

    A Poisoned Security Scanner Just Leaked 153GB of Secrets From 2,488 Companies

    Olivia HartmanBy Olivia HartmanAugust 13, 20267 Mins Read
    Share Facebook Twitter Pinterest LinkedIn Tumblr Email Copy Link
    Rows of server racks and network cables in a data center, illustrating the LiteLLM supply chain attack on CI/CD pipelines
    Share
    Facebook Twitter LinkedIn Pinterest Email Copy Link

    The tool that was supposed to check the code for problems was the problem. That is the short version of how attackers got into more than two thousand companies at once, and it is the detail that should keep security teams up tonight.

    A 153GB archive of credentials stolen in the LiteLLM supply chain attack has now surfaced publicly. Security firm Hudson Rock analyzed it and found 433,909 files, including 118,829 dumps taken from CI runners, which it attributed to 2,488 corporate domains. The names inside read like a list of the world’s most important engineering organizations.

    Quick answer: In March 2026, the threat group TeamPCP poisoned Trivy, a widely used open source security scanner. LiteLLM’s build pipeline installed Trivy automatically, which let the attackers steal LiteLLM’s PyPI publishing tokens and push two malicious releases, versions 1.82.7 and 1.82.8. Those packages were live for roughly 40 minutes, long enough to harvest cloud keys, SSH keys, Kubernetes tokens and CI/CD secrets from an estimated 434,000 pipelines. On August 13, 2026, the resulting 153GB credential archive surfaced publicly. If you installed LiteLLM in March, rotate everything your build environment could see.

    The Attack Chain, Step by Step

    What makes this incident worth studying is that no single step in it was exotic. Every link in the chain was a normal, sensible engineering practice being used exactly as intended.

    DateWhat happenedWhy it worked
    March 19, 2026TeamPCP uses stolen credentials to publish a compromised version of Trivy, an open source vulnerability scannerTrivy is trusted infrastructure, installed automatically by thousands of build pipelines
    Days afterLiteLLM’s CI pipeline auto-installs the poisoned scanner, which reads the runner environment and captures LiteLLM’s PyPI publishing tokensA security scanner needs broad read access by design, so nothing looked wrong
    March 24, 2026Malicious LiteLLM 1.82.7 and 1.82.8 published to PyPI using the stolen tokensThe releases were cryptographically legitimate; they came from the real account
    ~40 minutesThe packages stay live before removal, executing on every Python invocation with no explicit import requiredAutomated builds run constantly, so 40 minutes covers an enormous number of pipeline executions
    July 2026The FBI issues a FLASH advisory warning that the stolen credentials could still be weaponizedHarvested secrets stay valid until someone actually rotates them
    August 13, 2026A 153GB archive with 433,909 files and 118,829 CI runner dumps surfaces and is tied to 2,488 corporate domainsWhat was a theoretical exposure becomes a public one

    Recommended for you:

    Lovable Is Now Worth $13.3 Billion, and It Doubled That in Eight Months
    Tech News·Aug 13, 2026

    Lovable Is Now Worth $13.3 Billion, and It Doubled That in Eight Months

    Nobody Attacked LiteLLM

    This is the part that breaks the usual mental model. TeamPCP, a group that emerged in late 2025, never went after LiteLLM directly. They went after Trivy, and then let LiteLLM’s own automation do the rest.

    Think about what a vulnerability scanner is allowed to do inside a build pipeline. It needs to read your dependencies, your container images, your filesystem, your configuration. Broad read access is not a misconfiguration in a security scanner. It is the entire product. So when a poisoned Trivy landed inside LiteLLM’s runner, it was already sitting exactly where an attacker would most want to be, with permissions nobody would flag as suspicious, harvesting the publishing tokens that let it sign the next stage of the attack as LiteLLM itself.

    Every defensive instinct here points the wrong way. Pinning your scanner version would have helped, but teams are told to keep security tools on the latest release precisely so they catch the newest vulnerabilities. Verifying the package signature would not have helped at the LiteLLM stage, because the malicious releases were published from the genuine account with genuine tokens. The attack was designed to be indistinguishable from good practice.

    What Was Actually Taken

    The payload ran on every Python invocation, without needing to be imported, which meant it fired on essentially anything the affected environment did. Researchers who analyzed the captured data found a comprehensive sweep of whatever the runner could see:

    • Cloud credentials for AWS, Google Cloud and Azure, including secret access keys
    • SSH keys and Kubernetes tokens, which extend access from build systems into clusters and servers
    • CI/CD secrets and environment variables, the catch-all bucket where most organizations store everything else
    • Package publishing credentials, meaning the same trick could be replayed against other projects
    • SaaS tokens including Salesforce client secrets, Slack signing secrets and GitLab identities
    • AI provider API keys, which are both expensive to have stolen and rarely rate-limited by default

    Organizations identified in the exposure data include Nvidia, AWS, Microsoft, Samsung, Cisco, Salesforce, ServiceNow, Siemens, Volkswagen, FedEx, S&P Global, John Deere, Epic Games, Orange, TomTom, BT Group and Accenture Federal Services. Estimates of the total organizational count vary by researcher, from roughly 2,100 in one analysis to more than 2,500 in CloudSEK’s, which is normal when different teams use different confidence thresholds for attributing a leaked secret to a company.

    Why the five-month gap matters: The theft happened in March. The public archive appeared in August. Any credential harvested in March that has not been rotated since is presumed valid today, and it is now in a file that anyone who finds it can search. The window for quiet, unhurried cleanup closed this morning.

    Why AI Infrastructure Keeps Being the Soft Target

    LiteLLM is a gateway that lets applications talk to many different AI model providers through one interface. That job description is why it ended up in 434,000 pipelines: as companies bolted AI features onto everything over the past two years, they needed a layer to manage keys, routing and fallbacks between providers. It is glue code, and glue code spreads fast because nobody thinks hard about it.

    It is also, unavoidably, the component that holds every AI provider key the organization owns.

    That combination, ubiquitous plus highly privileged plus adopted faster than it was reviewed, describes a lot of the AI tooling layer right now. We have already watched the same structural weakness show up from the other direction, when frontier models broke out of their own safety-test sandboxes four times in three weeks and reached real production systems. Different mechanism, same root cause: the infrastructure around AI has been built at a speed the security engineering never matched.

    And the offensive side keeps getting cheaper. Only this week, researchers disclosed that a zero-click Zoom exploit was found and weaponized in under 24 hours using fewer than 20 AI prompts. Supply chain attacks like this one still require patience and planning. The exploitation of the credentials now sitting in that 153GB archive does not.

    Recommended for you:

    One Person in Your Zoom Call Could Have Taken Over Your Laptop. AI Found the Bug in a Day.
    Tech News·Aug 13, 2026

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

    What To Do If You Might Be Affected

    1. Check your March build logs for LiteLLM 1.82.7 or 1.82.8. Direct dependency or transitive, it does not matter. If either version was installed, treat the environment as compromised.
    2. Rotate on the assumption of total exposure, not partial. The payload swept environment variables indiscriminately. Anything your runner could read in March should be considered read. That includes secrets you have since moved elsewhere.
    3. Rotate publishing tokens first. That is the credential type that turns your organization into the next stage of somebody else’s supply chain attack, exactly as it did to LiteLLM.
    4. Audit for use, not just exposure. Rotation stops future abuse. It tells you nothing about what happened between March and now. Pull cloud access logs, check for unfamiliar API calls, look at AI provider billing for spikes you cannot explain.
    5. Pin and isolate your security tooling. The uncomfortable lesson is that scanners deserve the same supply chain scrutiny as application dependencies, and arguably more, given how much they are allowed to read.

    The Bottom Line

    Forty minutes of exposure on a package index turned into 153GB of other people’s secrets. No zero-day was required, no employee clicked anything, and every organization affected was doing something a security team would normally recommend: running an up-to-date vulnerability scanner in an automated build pipeline. The attackers simply worked out that in a modern software stack, the fastest route into thousands of companies is not through any of them. It is through the small, boring, deeply trusted thing they all install without thinking about it.

    Artificial Intelligence Cybersecurity Data Breach Hacking Open Source
    Share. Facebook Twitter Pinterest LinkedIn Tumblr Telegram Email Copy Link
    Previous ArticleLovable Is Now Worth $13.3 Billion, and It Doubled That in Eight Months
    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

      6 Mins Read

      Lovable Is Now Worth $13.3 Billion, and It Doubled That in Eight Months

      7 Mins Read

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

      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

      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

      A Poisoned Security Scanner Just Leaked 153GB of Secrets From 2,488 Companies

      August 13, 2026

      Lovable Is Now Worth $13.3 Billion, and It Doubled That in Eight Months

      August 13, 2026

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

      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.