• A novel speculative execution attack named VMSCAPE allows a malicious virtual machine (VM) to breach its security boundaries and steal sensitive data, like cryptographic keys, directly from its host system.

    The vulnerability, identified as CVE-2025-40300, affects a wide range of modern processors, including all current generations of AMD Zen (1 through 5) and Intel’s Coffee Lake CPUs.

    Research from a team at ETH Zurich details the first practical guest-to-host Spectre Branch Target Injection (Spectre-BTI) attack that works against unmodified hypervisor software in a default cloud configuration, posing a significant threat to virtualized environments.

    VMScape Exploiting Gaps in Virtualization Security

    VMSCAPE’s success hinges on the discovery of incomplete isolation within the CPU’s Branch Prediction Unit (BPU). Modern CPUs use branch predictors to execute instructions to improve performance speculatively.

    While vendors have implemented hardware mitigations like Enhanced IBRS (eIBRS) and Automatic IBRS (AutoIBRS) to prevent different privilege levels (e.g., user vs. kernel) from influencing each other’s predictions, the researchers found these defenses are too coarse-grained for virtualized settings.

    They fail to properly distinguish between four key domains: Host User (HU), Host Supervisor (HS), Guest User (GU), and Guest Supervisor (GS).

    The researchers identified a new attack primitive they call vBTIGU→HU, which allows an unprivileged process inside a guest VM to manipulate the BPU state of a user-level process on the host. This effectively creates a loophole in the isolation that is supposed to keep guest and host operations separate.

    The attack chain targets QEMU, a popular open-source hypervisor component used with KVM. A malicious actor in a guest VM can “train” the BPU by repeatedly executing specific code patterns.

    When the guest triggers a VM-to-host transition (a VMEXIT), the host’s QEMU process takes over.

    Due to the poisoned BPU state, QEMU is tricked into speculatively executing a “disclosure gadget” a snippet of its own existing code which accesses sensitive memory. The data is then exfiltrated one byte at a time using a FLUSH+RELOAD cache side-channel attack.

    VMScape Exploitation

    A key challenge in mounting the attack was achieving a sufficiently large “speculation window” the brief period during which speculative execution occurs.

    The researchers overcame this by reverse-engineering the cache architecture of AMD’s Zen 4 and Zen 5 CPUs, developing the first reliable eviction sets for their non-inclusive Last Level Cache (LLC).

    This technique delays the resolution of the correct branch path, extending the speculation window and enabling the attack to leak memory from the QEMU process at a rate of 32 B/s.

    The full end-to-end exploit, including bypassing Address Space Layout Randomization (ASLR), was demonstrated in under 20 minutes.

    Following a responsible disclosure on June 7, 2025, Linux kernel developers have released patches. The mitigation, based on the researchers’ guidance, involves issuing an Indirect Branch Prediction Barrier (IBPB) on VMEXITs just before the system transitions to execute code in the hypervisor’s userspace.

    This clears the malicious BPU entries. While performance overhead is marginal (~1%) for most workloads, it can rise to 51% in I/O-heavy scenarios.

    Find this Story Interesting! Follow us on Google NewsLinkedIn, and X to Get More Instant Updates.

    The post New VMScape Spectre-BTI Attack Exploits Isolation Gaps in AMD and Intel CPUs appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • In early May 2025, security teams began observing a sudden rise in post-exploitation activity leveraging an open-source command-and-control framework known as AdaptixC2.

    Originally developed to assist penetration testers, this framework offers a range of capabilities—file system manipulation, process enumeration, and covert channel tunneling—that have now been adopted by malicious actors.

    The framework’s modular design and extensibility through “extenders” make it particularly attractive for adversaries seeking a customizable toolkit that can evade traditional defenses.

    Palo Alto Networks researchers noted that AdaptixC2 remained largely under the radar until threat intelligence feeds began reporting infections across multiple sectors.

    One early campaign relied on social engineering via fake help desk remote support requests, tricking users into executing Quick Assist sessions that unleashed a multi-stage PowerShell loader.

    Within minutes, adversaries achieved in-memory execution of the beacon without dropping any files, sidestepping endpoint detection measures and establishing persistent control over the victim host.

    As incidents proliferated, a different cluster of intrusions emerged involving AI-generated scripts designed to deploy AdaptixC2.

    Palo Alto Networks analysts identified stylistic markers—numbered comments and verbose output confirmations—that pointed to code produced by large language models.

    These scripts not only downloaded and decrypted a Base64-encoded payload, but also used .NET’s GetDelegateForFunctionPointer to execute shellcode directly in memory.

    By leveraging built-in Windows APIs such as VirtualProtect and CreateProcess, attackers achieved stealthy deployment and reliable persistence.

    Across both scenarios, the impact has been significant. Compromised environments have seen lateral movement facilitated by SOCKS4/5 tunneling and port forwarding, enabling data exfiltration in small chunks to blend with normal traffic patterns.

    In one documented case, adversaries combined AdaptixC2 with Fog ransomware in an attack against a financial institution in Asia, demonstrating the framework’s versatility and potential to amplify downstream payloads.

    Organizations relying on legacy detection systems found themselves ill-prepared for this modular, evolving threat.

    AdaptixC2 server (Source – Palo Alto Networks)

    The graphical view of linked agents and sessions, highlighting how attackers map available targets and plan multi-stage operations.

    Beacon HTTP builder UI (Source – Palo Alto Networks)

    The encrypted configuration parameters—RC4-encrypted payloads stored alongside their keys in the PE header—allowing rapid customization of communication profiles.

    Infection Mechanism via Fileless PowerShell Loader

    One of the most insidious elements of AdaptixC2 deployment is its fileless infection mechanism, executed entirely in memory to evade disk-based defenses.

    The initial vector often begins with a seemingly innocuous PowerShell script, delivered through a social engineering email or remote support prompt.

    Upon execution, the script invokes Invoke-RestMethod to retrieve a Base64-encoded shellcode payload from a legitimate cloud storage service.

    Attack vector of AdaptixC2 installation on victim machine (Source – Palo Alto Networks)

    It then decodes this payload and calls VirtualAlloc to allocate a memory region with PAGE_EXECUTE_READWRITE permissions.

    Using reflection and dynamic invocation, the loader constructs a delegate pointing to the shellcode entry point:-

    var ptr = GetDelegateForFunctionPointer(shellcodePtr, typeof(Action));
    ((Action)ptr)();

    This method sidesteps the need for written executables, leaving minimal forensic artifacts. Following successful execution, the script employs CreateShortcut in the user’s Startup folder or writes a Run key to the registry under a familiar name such as “Updater,” ensuring that the beacon survives reboots.

    Detection evasion is further enhanced by configurable KillDate and WorkingTime parameters, which limit beacon activity to pre-defined windows, and by customizable user-agent strings and HTTP headers.

    Security teams must therefore enrich telemetry with memory-based detections and network-behavior analytics to intercept these in-flight payloads before they fully establish their C2 channels.

    Continuous monitoring for dynamic invocation APIs and anomalous PowerShell child processes remains critical to disrupting this modern, fileless infection chain.

    Boost your SOC and help your team protect your business with free top-notch threat intelligence: Request TI Lookup Premium Trial.

    The post Threat Actors Leveraging Open-Source AdaptixC2 in Real-World Attacks appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • In early March 2025, security teams first observed an unprecedented L7 DDoS botnet targeting web applications across multiple sectors.

    The botnet, rapidly expanding from an initial 1.33 million compromised devices, employed HTTP GET floods to exhaust server resources and circumvent traditional rate limiting.

    By mid-May, the threat escalated as the botnet grew to 4.6 million nodes, leveraging compromised IoT devices and poorly secured endpoints to amplify its attack surface.

    By September, this sprawling network had mobilized 5.76 million IP addresses for a coordinated assault on a government organization, generating tens of millions of requests per second.

    Qrator Labs analysts noted significant shifts in geographical distribution, with Brazil, Vietnam, and the United States emerging as major sources of malicious traffic.

    The attack unfolded in two waves: an initial surge engaging approximately 2.8 million devices, followed an hour later by an additional 3 million nodes.

    HTTP headers in the second wave revealed randomized User-Agent strings designed to evade simple traffic filtering.

    Qrator Labs researchers identified key adaptations in the botnet’s control mechanism that facilitated its rapid scaling.

    The malware communicates over encrypted channels with a decentralized command-and-control (C2) infrastructure, which the attackers rotate frequently to avoid blacklisting.

    Signature-based mitigation struggled to keep pace as each C2 endpoint was active for mere hours before rotation.

    Infection Mechanism and Persistence

    The core infection vector relies on brute-force exploitation of default credentials and unpatched vulnerabilities in common IoT firmware.

    Once inside a device, the malware deploys a lightweight rootkit that hooks into network interfaces and intercepts firmware update routines.

    A code snippet extracted by Qrator Labs illustrates the persistence strategy:-

    // Intercept firmware update calls
    int hook_update(char *path) {
        if (!strcmp(path, "/usr/bin/fw_update")) {
            launch_payload();
            return 0;
        }
        return orig_update(path);
    }

    This approach ensures the malicious modules reload after each system restart, rendering simple reboot-based remediation ineffective.

    The stealthy rootkit also suppresses suspicious process listings, further complicating detection and removal.

    Boost your SOC and help your team protect your business with free top-notch threat intelligence: Request TI Lookup Premium Trial.

    The post L7 DDoS Botnet Hijacked 5.76M Devices to Launch Massive Attacks appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • Google on Tuesday announced that its new Google Pixel 10 phones support the Coalition for Content Provenance and Authenticity (C2PA) standard out of the box to verify the origin and history of digital content. To that end, support for C2PA’s Content Credentials has been added to Pixel Camera and Google Photos apps for Android. The move, Google said, is designed to further digital media

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • A manhunt is underway after 31-year-old American far-right “youth whisperer” Charlie Kirk was shot and killed while answering a question about gun violence during an outdoor speaking event at a Utah college campus Wednesday afternoon. The shooter appears to have fled the scene, which erupted in chaos moments after a shot rang out, striking Kirk in the neck in front of about 3,000 people at Utah Valley University, just north of Provo. 

    “Officials believe Kirk was shot from a roof,” and at least two videos have been shared that seem to show a gunman, but it’s not yet clear, the BBC reports. 

    Latest: Investigators Thursday morning said they’ve recovered a rifle in a wooded area around campus and isolated a footprint for further analysis, NBC News reports. The weapon was described as a “high-powered, bolt-action rifle,” which authorities say they believe was used in the shooting. Utah’s Republican Gov. Spencer Cox: “This is a dark day for our state. It’s a tragic day for our nation,” he told reporters at a press conference Wednesday, adding, “I want to be very clear that this is a political assassination.”

    Kirk was one of the most visible and influential activists in conservative U.S. politics, beginning in 2012 when he co-founded the organization Turning Point USA after dropping out of college at the age of 18. By the time he reached 31, he’d become famous while spreading misinformation and conspiracy theories as conservative donors helped him build “a $92 million-a-year political empire, with millions of followers online and a direct line to President Donald Trump like few others,” Fortune reports. “Today, Turning Point says it has a presence in more than 3,500 high school and college campuses nationwide—and its revenue, per tax filings, has skyrocketed from $4.3 million in 2016 to $81.7 million in 2023. When combined with its political-action arm, Turning Point Action, that figure tops $92 million.”

    FBI Director Kash Patel thought authorities had captured Kirk’s shooter Wednesday afternoon, but he spoke too soon. “The subject in custody has been released after an interrogation by law enforcement,” he wrote in a follow-up social media post two hours later. “Our investigation continues and we will continue to release information in interest of transparency.” 

    A second person taken into custody was also later released, the New York Times reports. Patel’s “backtrack was a source of significant embarrassment for the F.B.I. director on a day when three former F.B.I. agents filed a lawsuit against Mr. Patel that portrayed him as a partisan neophyte more interested in social media, and swag, than in the day-to-day operations of the nation’s flagship law enforcement agency,” the Times noted. 

    President Trump ordered flags to be lowered. “In honor of Charlie Kirk, a truly Great American Patriot, I am ordering all American Flags throughout the United States lowered to Half Mast until Sunday evening at 6 P.M.,” the president wrote on social media Wednesday. His order spans “the White House and upon all public buildings and grounds, at all military posts and naval stations, and on all naval vessels of the Federal Government in the District of Columbia and throughout the United States and its Territories and possessions,” the White House said in a separate statement. Trump also said Thursday he will award Kirk the Presidential Medal of Freedom posthumously. 

    Bigger picture: Kirk’s shooting has “punctuated the most sustained period of U.S. political violence since the 1970s,” Reuters reports, noting its reporters have “documented more than 300 cases of politically motivated violent acts across the ideological spectrum since supporters of Trump attacked the U.S. Capitol on January 6, 2021.” That includes the June murders of Democratic Minnesota House of Representatives Speaker Emerita Melissa Hortman and her husband Mark Hortman, as well as the stalking and shooting of Minnesota Democratic State Senator John Hoffman and his wife Yvette Hoffman, in addition to the attempted shooting of their daughter by a man dressed as a police officer in the early morning hours of June 14. The shooter had in his possession a hit list of 45 Democratic elected officials.

    Contributing factors for rising political violence in the U.S. include “economic insecurity, anxiety over shifting racial and ethnic demographics, and the increasingly inflammatory tone of political discourse,” Reuters reports separately. “That anger is amplified by a mix of social media, conspiracy theories and personal grievances.”

    Without any evidence, Trump blamed “the radical left” for Kirk’s shooting. “For years, those on the radical left have compared wonderful Americans like Charlie to Nazis and the world's worst mass murderers and criminals. This kind of rhetoric is directly responsible for the terrorism that we're seeing in our country today, and it must stop right now,” he said in a video posted online Wednesday evening. He also vowed to “find each and every one of those who contributed to this atrocity, and to other political violence, including the organizations that fund it and support it, as well as those who go after our judges, law enforcement officials, and everyone else who brings order to our country.” 

    Expert reax: “In the past, we had elected officials that would seek to bring the country together rather than to cast blame,” Bruce Hoffman, who specializes in counterterrorism and homeland security at the Council on Foreign Relations, told the Associated Press. “We’ll have to see what in the coming days our national leaders have to say about this, and whether they can be effective in lowering the temperature.”

    Second opinion: “This is an administration that, whether you agree with it or not, has made profound changes to this country in the eight months it’s been in office,” Mike Jensen, a researcher at the University of Maryland, told Reuters. “Some people love it, some people hate it. The people that hate it are starting to act out. People who love it are going to act out against those people that hate it, and it becomes a vicious spiral that could lead us into something really, really bad.” The New York Times has similar reporting here

    Additional reading: 


    Welcome to this Thursday edition of The D Brief, a newsletter dedicated to developments affecting the future of U.S. national security, brought to you by Ben Watson with Bradley Peniston. It’s more important than ever to stay informed, so thank you for reading. Share your tips and feedback here. And if you’re not already subscribed, you can do that here. On this day 24 years ago, the 9/11 attacks claimed the lives of nearly 3,000 people.

    Around the Defense Department

    House NDAA passes. The lower house’s $892.6 billion defense authorization bill includes “a 3.8% pay raise for troops and plans to improve the military's acquisition system, including by shortening approval timelines and increasing artificial intelligence research,” Reuters reports.

    It would rescind decades-old AUMFs. A bipartisan effort added “an amendment to rescind a pair of open-ended war powers laws, originally adopted in the run-up to the 2003 invasion of Iraq but used for a host of military missions worldwide since then,” Military Times reports.

    It also includes several conservative policy dictates. New York Times: “The 231-to-196 vote, mostly along party lines, reflected how Republicans in Congress have transformed the annual Pentagon policy measure, once an overwhelmingly popular bill, into a vehicle for conservative social policy dictates. For the third consecutive year, Republicans attached new restrictions to block diversity, equity and inclusion initiatives, a range of climate restrictions, and an increase in the flow of decommissioned military weapons into a civilian firearms program—alienating even Democrats who had initially supported it.” 

    Not in the bill, per Military Times

    • A Ukraine-aid ban. “Lawmakers on both sides of the aisle joined to defeat (by a 60-372 vote) a proposal from Georgia Republican Rep. Marjorie Taylor Greene to eliminate nearly all support for Ukraine security assistance from next year’s military plans.”
    • A proposal to change the name of the Defense Department. “Republican leaders also blocked debate on that proposal for now.”
    • A ban on sending National Guard troops to cities. Republicans shot down “Democratic proposals to limit President Donald Trump’s ability to use National Guard forces for domestic law enforcement support.”

    Update: Minuteman ICBM may operate until 2050. The Sentinel program to replace the Minuteman III has gone so badly that the Air Force is now considering operating the already-half-century-old ICBM until 2050, according to a new report from the Government Accountability Office. 

    What’s going on: “The Air Force reported to Congress in 2021 that Minuteman III would reach the end of its service life in 2036. Now, facing delays to Sentinel, the Air Force is evaluating options to continue operating Minuteman III through 2050,” said the report, which was released Wednesday. “The Minuteman III Program Office concluded that operation of Minuteman III until 2050 is feasible.” One of your D Briefers has more from the report, here.

    Developing: The U.S. is on the brink of selling Finland more than 400 AMRAAMs, which refer to AIM-120D-3 Advanced Medium Range Air-to-Air Missiles from defense prime RTX, the Pentagon’s arms export agency announced Wednesday. The weapons “could be used to arm the Finnish air force’s current Boeing F-18 Hornet fighters and on-order Lockheed Martin F-35As,” Flight Global reports. 

    If the deal goes forward, it would “add to a record run of major contracts for the AMRAAM, with the most recent having been a $3.5 billion order to provide missiles to the US military and 19 international customers,” Craig Hoyle of Flight Global adds. 

    We forgot to flag another big U.S. sale of six Patriot air defense systems to Denmark for $8.5 billion. The Pentagon’s Defense Security Cooperation Agency announced that one two weeks ago, which “will require the assignment of 12-17 additional U.S. Government and 17-23 contractor representatives [who will need] to travel to Denmark periodically for up to 7 years for equipment fielding, system checkout, training, and technical and logistics support,” according to DSCA. 

    We’re also late to a separate, record-setting $9.8 billion U.S. Army deal with Lockheed Martin to make 1,970 Patriot PAC-3 missiles in southern Arkansas. Army officials announced the order last Wednesday, which Stars and Stripes described as “the largest in the history of the company’s missiles and fire control unit.” 

    Panning out: Especially since Russia launched its full-scale invasion of Ukraine, “Lockheed Martin has been working to increase its production for years and plans to deliver more than 600 interceptors in 2025, topping its record-breaking production of 500 last year,” Stripes writes. See also local coverage from near Camden, Arkansas, where the missiles will be made. 

    Related reading: 

    Trump 2.0

    ODNI likely to curtail counterintelligence center in latest shake up. Two intelligence-coordination centers would shrink or be closed under a reorganization plan that some observers say will hinder the U.S. ability to counter spies and terrorists, Defense One’s Patrick Tucker reported Wednesday. 

    ODNI is considering either closing or greatly reducing the National Counterintelligence and Security Center and the National Counterterrorism Center, according to current and former officials. These developments are the latest moves in a broad restructuring of the U.S. intelligence community under Trump. Certain elements of that restructuring, which spans ODNI, CISA, the FBI, NSA, CIA, and other agencies, are already harming information sharing with partner intelligence agencies around the world, Tucker reports, citing sources. The changes, they say, are exposing the U.S. government, businesses, and civilians to a wide range of new espionage threats.

    While the existence of the National Counterintelligence and Security Center at ODNI is not widely known, it plays a key role in U.S. understanding of how spies are spying on us, as one source succinctly put it. So while it rarely makes big headlines, the failure of counterintelligence operations could result in the loss of critical U.S. secrets. Continue reading, here

    And lastly: New polling shows a majority of Americans are uncomfortable with Trump's moves to expand presidential power, Reuters reported Thursday. That includes Trump’s decision to deploy the U.S. military in American cities. 

    “On crime, only 32% of Americans said they would feel safer with armed soldiers deployed to large cities in their state,” Reuters reports. For a little more on those numbers, “Some 62% of Trump's fellow Republicans were warm to military patrols in big cities, but only one in four independents felt the same way, as did just one in 10 Democrats.” More, here

    Additional reading: 

    ]]>

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • The Salesloft Drift data breaches of August 2025 stand as one of the most significant supply chain attacks in SaaS history, demonstrating how a single compromised integration can cascade into widespread organizational exposure.

    This sophisticated campaign, staged by the threat actor UNC6395, exploited OAuth token vulnerabilities to access sensitive data from over 700 organizations, including major cybersecurity vendors like Cloudflare, Palo Alto Networks, and Zscaler.

    The incident reveals critical weaknesses in third-party application security and offers valuable lessons for strengthening enterprise cyber resilience.

    Salesloft Drift breach attack timeline from GitHub compromise to data exfiltration
    Salesloft Drift breach attack timeline from GitHub compromise to data exfiltration

    Initial Compromise: The GitHub Account Breach

    The attack timeline reveals a methodical approach that began months before the public disclosure. According to Mandiant’s investigation, the threat actor UNC6395 first gained access to Salesloft’s GitHub account in March 2025, maintaining persistent access through June 2025.

    This initial compromise represents a critical security failure that went undetected for three months.

    During this extended access period, the attackers demonstrated sophisticated operational security by conducting reconnaissance activities across both the Salesloft and Drift application environments.

    They systematically downloaded content from multiple repositories, added guest users, and established workflows that would later facilitate the mass data exfiltration campaign.

    This extended time allowed the threat actors to thoroughly understand the target environment and identify the most valuable attack vectors.

    The GitHub compromise highlights a fundamental challenge in modern software development: the security of code repositories and development infrastructure.

    Salesloft has not disclosed how the initial GitHub access was obtained, but this gap in transparency has drawn criticism from security analysts who emphasize the importance of understanding root causes for effective remediation.

    OAuth token compromise attack flow diagram

    Drift Platform Exploitation and OAuth Token Theft

    Following their reconnaissance phase, the attackers pivoted to exploit Drift’s Amazon Web Services (AWS) environment, where they successfully obtained OAuth tokens for Drift customers’ technology integrations.

    This represents the critical supply chain vulnerability that enabled the widespread attack across hundreds of organizations.

    OAuth tokens serve as digital keys that authorize applications to access user data across different platforms without requiring password authentication.

    In the case of Drift, these tokens enabled the chatbot platform to integrate with customer systems like Salesforce, Google Workspace, and other business applications.

    By stealing these tokens, UNC6395 effectively inherited the same trusted access privileges, allowing it to bypass traditional security controls.

    The technical sophistication of this phase is evident in the attackers’ ability to access AWS-hosted OAuth credentials and extract them without detection.

    This suggests a deep understanding of cloud infrastructure and token management systems, characteristic of advanced persistent threat (APT) groups.

    Between August 8 and 18, 2025, UNC6395 launched a systematic data exfiltration campaign targeting Salesforce instances connected through Drift integrations. The attackers employed sophisticated techniques to maximize data theft while attempting to evade detection.

    The primary objective of the campaign was credential harvesting rather than immediate data monetization. UNC6395 systematically searched through exfiltrated data for valuable secrets, including:

    • Amazon Web Services (AWS) access keys (AKIA format)
    • Snowflake-related access tokens
    • VPN credentials and configuration information
    • Generic passwords and authentication strings
    • API keys and service account credentials

    This focus on credential harvesting indicates a strategic approach aimed at enabling secondary attacks and lateral movement across victim environments.

    The stolen credentials could provide attackers with persistent access to cloud infrastructure and business-critical systems far beyond the initial Salesforce breach.

    Companies Affected

    The breach impacted a staggering number of organizations, with Google Threat Intelligence Group confirming that hundreds of companies were affected.

    Among the publicly disclosed victims are several prominent cybersecurity vendors, highlighting the indiscriminate nature of supply chain attacks:

    • Cloudflare: Confirmed unauthorized access to Salesforce case objects between August 12-17, 2025, with 104 API tokens discovered and rotated
    • Palo Alto Networks: Disclosed compromise of CRM platform containing business contact information and basic case data
    • Zscaler: Acknowledged impact on Salesforce data, including customer licensing and commercial information
    • Tenable: Reported exposure of customer support case information and business contact details
    • Proofpoint: Confirmed as affected in multiple security advisories
    • Dynatrace: Reported limited exposure of business contact information with no impact to core products
    • Qualys: Confirmed limited Salesforce access with no impact to production environments
    • CyberArk: Disclosed compromise of CRM data while emphasizing no customer credential exposure
    • Wealthsimple: Reported more extensive impact, including customer government IDs and personal information.

    Root Cause Analysis: Systemic Security Failures

    The Salesloft Drift breach reveals multiple interconnected security failures that combined to create a catastrophic supply chain vulnerability:

    The initial GitHub compromise suggests inadequate security controls around code repositories and development infrastructure. Key failures include:

    • Insufficient access controls and monitoring for critical development accounts
    • Lack of detection capabilities for unauthorized repository access
    • Extended dwell time (3+ months) without detection of malicious activity

    The ability of attackers to access and steal OAuth tokens from AWS environments indicates significant shortcomings in credential management:

    • Inadequate protection of high-value authentication tokens
    • Insufficient segmentation between development and production environments
    • Lack of anomaly detection for OAuth token usage patterns

    Organizations demonstrated insufficient oversight of third-party integrations:

    • Over-permissive OAuth scopes granting excessive access to integrated applications
    • Inadequate monitoring of third-party application behavior
    • Lack of regular security assessments for connected applications

    Detection and Response Gaps

    The extended duration of malicious activity (10+ days) reveals detection and response deficiencies:

    • Insufficient real-time monitoring of API usage patterns
    • Delayed recognition of anomalous bulk data extraction activities
    • Inadequate threat intelligence sharing between vendors and customers

    Mitigation Strategies

    Based on the lessons learned from this incident, organizations should implement comprehensive mitigation strategies addressing both immediate and long-term security improvements:

    Immediate Response Actions

    OAuth Token Security Hardening:

    • Implement sender-constrained access tokens using mutual TLS (mTLS) or DPoP (Demonstrating Proof-of-Possession)
    • Establish refresh token rotation policies for public clients
    • Deploy real-time monitoring for OAuth token usage anomalies

    Third-Party Integration Review:

    • Conduct comprehensive audits of all connected applications and their permissions
    • Implement least-privilege principles for OAuth scopes and API access
    • Establish regular security assessments for critical integrations

    Enhanced Monitoring and Detection:

    • Deploy advanced analytics for API usage patterns and bulk data operations
    • Implement real-time alerting for suspicious SOQL query activities
    • Establish baseline behavioral profiles for legitimate application usage

    Strategic Security Improvements

    Supply Chain Risk Management:
    Organizations must implement comprehensive third-party risk management programs:

    • Conduct rigorous vendor security assessments before integration
    • Establish continuous monitoring of vendor security postures
    • Implement contractual security requirements and SLAs

    Zero Trust Architecture Implementation:

    • Apply zero-trust principles to all third-party integrations
    • Implement continuous verification and least-privilege access controls
    • Deploy network segmentation to limit lateral movement potential

    Development Security Enhancement:

    • Implement comprehensive security controls for code repositories
    • Deploy real-time monitoring for development environment access
    • Establish secure software development lifecycle (SDLC) practices

    The incident demonstrates how sophisticated threat actors can exploit trusted relationships to achieve widespread impact across hundreds of organizations simultaneously.

    As supply chain attacks continue to evolve in sophistication and scale, the lessons learned from this breach will be crucial for organizations seeking to protect themselves against future threats.

    The key is not just to implement individual security controls, but to build comprehensive, integrated security programs that can adapt to the dynamic nature of modern cyber threats.

    Find this Story Interesting! Follow us on Google NewsLinkedIn, and X to Get More Instant Updates.

    The post Lessons from Salesforce/Salesloft Drift Data Breaches – Detailed Case Study appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • U.S. Senator Ron Wyden has called on the Federal Trade Commission (FTC) to probe Microsoft and hold it responsible for what he called “gross cybersecurity negligence” that enabled ransomware attacks on U.S. critical infrastructure, including against healthcare networks. “Without timely action, Microsoft’s culture of negligent cybersecurity, combined with its de facto monopolization of the

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • Four Kenyan filmmakers became victims of sophisticated surveillance when FlexiSPY spyware was covertly installed on their devices while in police custody, according to forensic analysis conducted by the University of Toronto’s Citizen Lab.

    The incident occurred on or around May 21, 2025, after authorities seized the devices during arrests connected to allegations surrounding the BBC documentary “Blood Parliament.”

    The filmmakers—MarkDenver Karubiu, Bryan Adagala, Nicholas Wambugu, and Christopher Wamae—were arrested on May 2 at a Nairobi studio on charges of publishing false information.

    Though released without charges the following day, their electronic devices remained in police custody until July 10, providing a window for the unauthorized spyware installation.

    CPJ analysts noted that the FlexiSPY installation represents a significant breach of journalistic privacy and security.

    The commercially available surveillance tool grants operators comprehensive access to victims’ digital communications, including real-time monitoring of messages, emails, and social media activities.

    Senior researcher John Scott-Railton emphasized that the spyware provides “silent, secret access to all sorts of private business and information about their journalism.”

    FlexiSPY markets itself as a monitoring solution for parents and employers, advertising capabilities that extend far beyond basic surveillance.

    The software can record phone calls, track device locations and website visits, capture passwords, download photos and videos, and even activate device microphones for environmental listening.

    This comprehensive surveillance capability makes it particularly concerning when deployed against journalists and media professionals.

    Advanced Persistence and Monitoring Capabilities

    The FlexiSPY spyware demonstrates sophisticated persistence mechanisms designed to maintain long-term access to compromised devices.

    Once installed, the malware operates stealthily in the background, continuously transmitting data to remote servers while avoiding detection by standard security measures.

    The software’s architecture allows it to survive device reboots and resist removal attempts through hidden system-level integration.

    The spyware’s monitoring capabilities extend to encrypted messaging platforms, potentially compromising secure communications that journalists rely upon for source protection.

    By intercepting data before encryption occurs at the application level, FlexiSPY can capture sensitive information that would otherwise remain protected.

    This functionality poses particular risks for investigative journalists who depend on confidential communications with sources and colleagues.

    The incident highlights growing concerns about state surveillance of media professionals and the weaponization of commercial spyware against press freedom advocates worldwide.

    Boost your SOC and help your team protect your business with free top-notch threat intelligence: Request TI Lookup Premium Trial.

    The post Kenyan Filmmakers Installed With FlexiSPY Spyware That Monitors Messages and Social Media appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • A previously unknown advanced persistent threat (APT) group has unleashed a new fileless malware framework, dubbed EggStreme, in a highly targeted espionage campaign against strategic organizations.

    Emerging in early 2024, EggStreme exploits the legitimate Windows Mail executable (WinMail[.]exe) to sideload a malicious library, allowing attackers to achieve in-memory code execution without writing decrypted payloads to disk.

    This technique evades traditional file-based defenses and has set off alarms among security teams operating in sensitive sectors.

    The attack chain begins when a logon script delivered via an exposed SMB share executes WinMail[.]exe from the user’s AppData directory.

    Instead of loading the genuine .NET runtime library, the binary inadvertently loads mscorsvc[.]dll, which contains the first stage loader.

    Once loaded, this DLL establishes a reverse shell by invoking cmd[.]exe and creating read/write pipes to a command-and-control (C2) server.

    Lateral movement and persistence are then orchestrated through hijacked Windows services that run with elevated privileges.

    Bitdefender analysts noted that the EggStreme framework is composed of multiple tightly integrated components, each responsible for a distinct phase of the operation.

    The EggStremeLoader, registered as a service, reads an encrypted payload file (ielowutil[.]exe[.]mui) and extracts two more layers: a reflective loader and the core backdoor agent.

    By leveraging reflective injection into trusted processes like winlogon.exe or explorer.exe, the adversary ensures continuous execution in memory.

    This multi-stage approach, with each layer decrypted and injected only when needed, makes detection exceedingly difficult.

    In its final form, the EggStremeAgent establishes a gRPC-based communication channel secured by mutual TLS, authenticating with certificates issued by a shared malicious certificate authority.

    EggStreme multi-stage infection flow (Source – Bitdefender)

    Once the backdoor is in memory, its 58 commands enable remote fingerprinting, file manipulation, registry operations, process injection, and sophisticated lateral movement such as RPC scans and WMIC-based remote process creation.

    Infection Mechanism and DLL Sideloading

    EggStreme’s initial infection leverages a subtle but powerful code snippet to hijack the search order for Windows libraries.

    EggStremeWizard (Source – Bitdefender)

    By placing a malicious DLL alongside WinMail.exe, the malware forces the legitimate binary to load attacker-controlled code. A representative snippet is shown below:-

    // Pseudo-code illustrating DLL sideloading
    HANDLE hModule = LoadLibraryA("mscorsvc[.]dll");
    if (hModule) {
        FARPROC pFunc = GetProcAddress(hModule, "CorBindToRuntime");
        if (pFunc) {
            pFunc();
        }
    }

    When WinMail.exe calls LoadLibraryA("mscorsvc[.]dll"), the Windows loader searches the local directory first, finding the malicious DLL instead of the system version.

    The loader decrypts its payload using an RC4 key ("Cookies"), checks for an on-disk configuration at %APPDATA%\Microsoft\Windows\Cookies\Cookies[.]dat, and updates its in-memory C2 list accordingly.

    The initial handshake comprises a 32-byte RC4-encrypted key exchange, ensuring integrity before the shell is created.

    Persistence is achieved through two complementary approaches. In some instances, the attackers alter the ServiceDLL registry value under HKLM\SYSTEM\CurrentControlSet\Services\<ServiceName>\Parameters to point to a malicious DLL.

    In others, they replace service binaries and grant SeDebugPrivilege, allowing the malicious payload to run under the context of a trusted Windows service.

    Both methods ensure that EggStreme components are reloaded on every reboot, maintaining a resilient foothold.

    Boost your SOC and help your team protect your business with free top-notch threat intelligence: Request TI Lookup Premium Trial.

    The post New EggStreme Malware With Fileless Capabilities Leverages DLL Sideloading to Execute Payloads appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • In early May 2025, cybersecurity researchers began tracking a novel Remote Access Trojan (RAT) targeting Chinese-speaking users via phishing sites hosted on GitHub Pages.

    Masked as legitimate installers for popular applications, the initial ZIP archives contained malicious executables engineered to bypass sandbox and virtual machine defenses.

    Once executed, the first-stage shellcode performs time stability analysis using QueryPerformanceCounter and examines hardware configurations—disk space and CPU cores—to identify analysis environments and terminate if suspicions arise.

    Attack chain (Source – Zscaler)

    This meticulous evasion strategy ensures that kkRAT rarely triggers alerts during automated detonation.

    Over the next stages, kkRAT deploys advanced anti-analysis techniques, dynamically resolving Windows API functions through single-byte XOR obfuscation and decrypting subsequent shellcodes with simple XOR transforms.

    In the second stage, the malware unloads and disables network adapters to sever AV/EDR communications, enumerates processes associated with Chinese security vendors, and employs a vulnerable driver (RTCore64.sys) to remove registered callbacks from kernel-mode defenses.

    Zscaler analysts noted that kkRAT even alters registry values for 360 Total Security to disable network checks and schedules tasks under SYSTEM privileges to repeatedly kill protection processes upon user logon.

    By the third stage, kkRAT retrieves a heavily obfuscated shellcode named 2025.bin from hardcoded URLs, decodes Base64-encoded instructions in output.log, and selects download URLs based on the victim process’s filename.

    The extracted archives contain legitimate executables sideloaded with malicious DLLs that decrypt the final payload—kkRAT itself—using a six-byte XOR key at offset 0xD3000.

    Zscaler researchers identified this seamless use of sideloading to deploy multiple RAT variants, including ValleyRAT and FatalRAT, but the newly discovered kkRAT blended features from both Ghost RAT and Big Bad Wolf.

    In its operation, kkRAT establishes a TCP connection to its command-and-control server, compresses data via zlib, and applies an additional XOR-based encryption layer.

    Phishing page impersonating Ding Talk (Source – Zscaler)

    A sample Python snippet used to decrypt captured traffic demonstrates this two-phase process:-

    import zlib
    def decrypt_packet(data, key):
        compressed = bytes(b ^ key for b in data)
        return zlib.decompress(compressed)

    Infection Mechanism

    Upon execution of the sideloaded DLL, kkRAT reads its encrypted configuration—C2 IP, port, version, and group identifier—and constructs a REGISTRATIONINFO struct containing detailed device fingerprints such as OS version, CPU frequency, memory size, installed antivirus signatures, and the presence of messaging applications.

    This thorough profile allows attackers to prioritize high-value targets. Uniquely, kkRAT inspects the clipboard for cryptocurrency wallet addresses (Bitcoin, Ethereum, Tether) and replaces them with attacker-controlled addresses via the 0x4D command, a tactic designed to hijack transactions silently.

    Once persistence is established through startup folder shortcuts or registry run keys, kkRAT remains resident, awaiting further instructions to load plugins—ranging from remote desktop management to process termination—and relay network traffic through Go-based SOCKS5 proxies.

    Through its layered encryption, sophisticated anti-analysis checks, and financial theft capabilities, kkRAT represents a significant evolution in commodity RAT toolkits, underscoring the persistent threat of supply-chain style malware delivery.

    Boost your SOC and help your team protect your business with free top-notch threat intelligence: Request TI Lookup Premium Trial.

    The post kkRAT Employs Network Communication Protocol to Steal Clipboard Contents appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶