Close Menu
    What's Hot

    What is Nayara, the Indian firm Russia is reportedly importing oil from? | Energy News

    Allies Converge on Iran as Funeral Ceremonies for Supreme Leader Begin

    Microsoft Disclosure Provides Rare Glimpse of Tax Haven Tactics

    Facebook X (Twitter) Instagram
    Trending
    • What is Nayara, the Indian firm Russia is reportedly importing oil from? | Energy News
    • Allies Converge on Iran as Funeral Ceremonies for Supreme Leader Begin
    • Microsoft Disclosure Provides Rare Glimpse of Tax Haven Tactics
    • Opinion | We Didn’t Build the Atomic Bomb This Way
    • The career edge that no algorithm can take from you
    • Opinion | Trump Ruined the Fourth of July for Me
    • Opinion | This Pathetic Groveling Is No Way to Rebuild a Party
    • Has the MAHA Movement Given Up?
    interluknewsinterluknews
    • Home
    • Business
      • Corporate News
      • Industry Insights
      • Startups & Entrepreneurship
      • Technology & Innovation
    • Economy
      • Economic Policy
      • Financial Analysis
      • Inflation & Interest Rates
      • Trade & Markets
    • Global
      • Conflicts & Security
      • Diplomacy
      • Global Trends
      • International Affairs
    • Lifestyle
      • Fashion
      • Food & Dining
      • Personal Development
      • Travel
    • Opinion
      • Columns
      • Editorials
      • Expert Opinions
      • Reader Voices
    • More
      • Politics
        • Elections
        • Government & Policy
        • International Relations
        • Political Analysis
      • Sports
        • Cricket
        • Football / Soccer
        • International Sports
        • Local Sports
      • Technology
        • Artificial Intelligence
        • Cybersecurity
        • Gadgets & Reviews
        • Tech News
      • South Africa News
    Facebook X (Twitter) Instagram
    interluknewsinterluknews
    Cybersecurity

    New ChocoPoC RAT Targets Vulnerability Researchers via Fake PoC Exploit Repos

    adminBy adminJuly 2, 2026No Comments5 Mins Read
    Share Facebook Twitter Pinterest Copy Link Telegram LinkedIn Tumblr Email
    New ChocoPoC RAT Targets Vulnerability Researchers via Fake PoC Exploit Repos
    Share
    Facebook Twitter LinkedIn Pinterest Email

    New ChocoPoC RAT Targets Vulnerability Researchers via Fake PoC Exploit Repos

    Attackers are hiding a data-stealing trojan inside fake exploit code aimed at the people who hunt bugs for a living. The malware, called ChocoPoC, travels in Python proof-of-concept (PoC) repositories on GitHub that claim to exploit hot new CVEs.

    Run one, and it quietly lifts your saved passwords, browser cookies, and files, then hands the attacker a shell on your machine. YesWeHack and Sekoia published their joint findings on July 1 and warned that, as of that report, the malware and its servers were still live, so do not run any of these PoCs.

    The trick is where the code sits. The visible PoC looks clean. The malware hides in a Python package that the PoC pulls in as a dependency, so it slips past a quick code review.

    How the trap works

    The bait is time pressure. When a big flaw drops, researchers race to test it and grab community PoCs to move fast. This campaign turns that habit into an infection route.

    Cybersecurity

    The chain, in plain terms:

    1. You clone the repo and run pip install to fetch the PoC’s requirements.
    2. That pulls in a package named frint, which in turn drags in a second package, skytext.
    3. skytext ships a small compiled file (gradient.so on Linux, gradient.pyd on Windows) that runs the moment you launch the PoC.
    4. It only wakes up when it sees the real PoC loaded, checking for a file named EXPLOIT_POC.py or similar, then unpacks its payload and downloads the trojan.

    That last check is why a plain sandbox sees nothing. Detonate the package on its own, without the full PoC around it, and the malware stays asleep.

    What it steals and does

    Once running, ChocoPoC is a full remote access trojan. It pulls saved passwords, cookies, autofill, and history from Chrome, Brave, Edge, and Firefox. It grabs text files, notes, and local databases, along with shell history, network settings, and the list of running processes.

    The attacker can also run any shell command, run arbitrary Python, pull whole folders, and slow the malware down to stay quiet. Several command names are in Spanish, and the code carries small bugs, which the researchers read as hand-written rather than AI-generated.

    For control, the malware hides in plain sight. It reads its orders from a dataset on Mapbox, a normal mapping service, using it as a dead drop. It resolves that address over DNS-over-HTTPS and uses a domain-fronting trick, so the traffic looks like ordinary Mapbox API calls. Larger uploads go to a separate server at 91.132.163.78.

    How far has it spread

    YesWeHack and Sekoia found at least seven fake PoC repos, each tied to a high-profile flaw:

    • FortiWeb path traversal (CVE-2025-64446)
    • React2Shell (CVE-2025-55182)
    • MongoBleed (CVE-2025-14847)
    • PAN-OS auth bypass (CVE-2026-0257)
    • Ivanti Sentry command injection (CVE-2026-10520)
    • Check Point VPN auth bypass (CVE-2026-50751)
    • Joomla SP Page Builder RCE (CVE-2026-48908)

    The skytext package alone was downloaded about 2,400 times, mostly on Linux. Downloads do not prove anyone was infected, but they spiked right after major CVEs went public, which fits the lure.

    An earlier run of the same campaign, going back to late 2025, used two other packages, slogsec and logcrypt.cryptography, with near-identical code. Sekoia assesses with high confidence that one actor is behind both, based on reused control markers.

    It says the operator rotated through GitHub, PyPI, and Mapbox accounts, several built from leaked or stolen logins. No known group has been named.

    Security researchers make a rich target. They run untrusted code by design, often with high privileges, and their machines hold client credentials, private reports, and details of live engagements. Compromise one, and you can reach far past a single laptop.

    The MUT-1244 campaign showed the payoff, using fake PoC repositories to steal SSH keys and cloud credentials from red teamers and researchers.

    Cybersecurity

    This is not a new idea, only a new wrapper. North Korea’s Lazarus group has courted researchers for years, posing as fellow bug hunters and shipping malicious Visual Studio projects in 2021, then burning a zero-day on them in 2023, with fresh waves since.

    On the commodity-crime side, Trend Micro found a fake PoC for a Windows LDAP flaw (CVE-2024-49113) that stole researcher data in early 2025, and a separate campaign pushed fake CVE PoCs carrying a trojan called WebRAT in late 2025, mostly hitting students and junior testers.

    What ChocoPoC adds is the hiding spot. The malware lives in a dependency, so the PoC you actually read stays clean. As the researchers put it, the malware itself is old news, but “what is changing is the delivery mechanism.”

    What to do now

    • Treat any PoC as hostile until proven otherwise, and steer clear of code from brand-new or unknown accounts.
    • Read the full dependency chain, not just the PoC file. Watch for freshly published packages, unfamiliar maintainers, and accounts with hidden history.
    • Test only in a throwaway VM, but remember isolation alone will not trip this one. The real fix is not installing the packages at all.
    • Check your systems for frint, skytext, slogsec, and logcrypt.cryptography, plus the file hashes in the report. If you ran any of them, rotate credentials and rebuild the host.

    The bigger risk is downstream. These lures target the researchers who supply detections and PoCs to frameworks like Nuclei and MDUT. Sekoia flags the danger of a double supply chain hit: poison one researcher, and the bad code can ride into a framework thousands of others trust.

    ChocoPoC Exploit fake PoC RAT Repos Researchers targets Vulnerability
    Follow on Google News Follow on Flipboard
    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email Copy Link
    Previous Article‘The crisis is deep’: The view from Russia as fuel shortages worsen | Russia-Ukraine war News
    Next Article Opinion | You’re Going to Get Hacked. The Only Solution Is to Abandon Your Shame.
    admin
    • Website

    Related Posts

    PamStealer Uses Fake Maccy Sites and PAM Checks to Steal Mac Login Passwords

    July 3, 2026

    Citrix Patches Six NetScaler Flaws Allowing File Read and Denial-of-Service

    July 3, 2026

    Researcher Analyzes 3,000 Live ClickFix Payloads, Exposing API-Driven Malware Delivery

    July 3, 2026
    Leave A Reply Cancel Reply

    Demo
    Latest Posts

    What is Nayara, the Indian firm Russia is reportedly importing oil from? | Energy News

    Allies Converge on Iran as Funeral Ceremonies for Supreme Leader Begin

    Microsoft Disclosure Provides Rare Glimpse of Tax Haven Tactics

    Opinion | We Didn’t Build the Atomic Bomb This Way

    Latest Posts

    Subscribe to News

    Get the latest sports news from NewsSite about world, sports and politics.

    Advertisement
    Demo

    We are a digital news platform delivering timely, accurate, and insightful coverage of politics, global affairs, business, economy, sports, and more. Our mission is to keep readers informed with reliable news, clear analysis, and stories that truly matter.
    We're social. Connect with us:

    Facebook X (Twitter) Instagram Pinterest YouTube

    Subscribe to Updates

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

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

    Powered by
    ...
    ►
    Necessary cookies enable essential site features like secure log-ins and consent preference adjustments. They do not store personal data.
    None
    ►
    Functional cookies support features like content sharing on social media, collecting feedback, and enabling third-party tools.
    None
    ►
    Analytical cookies track visitor interactions, providing insights on metrics like visitor count, bounce rate, and traffic sources.
    None
    ►
    Advertisement cookies deliver personalized ads based on your previous visits and analyze the effectiveness of ad campaigns.
    None
    ►
    Unclassified cookies are cookies that we are in the process of classifying, together with the providers of individual cookies.
    None
    Powered by