• Recent threat campaigns have revealed an evolving use of BAT-based loaders to deliver Remote Access Trojans (RATs), including XWorm and Remcos. These campaigns typically begin with a ZIP archive—often hosted on seemingly legitimate platforms such as ImgKit—designed to entice user interaction by mimicking benign content. Once opened, the archive unpacks a highly obfuscated BAT script […]

    The post Malware Campaign Uses SVG Email Attachments to Deploy XWorm and Remcos RAT appeared first on GBHackers Security | #1 Globally Trusted Cyber Security News Platform.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • Microsoft has addressed four elevation of privilege vulnerabilities in its Windows Defender Firewall service, all rated as “Important” in severity.

    The security flaws were detailed in Microsoft’s September 9, 2025, security update release. If exploited, these vulnerabilities could allow an authenticated attacker to gain higher privileges on an affected system.

    The four vulnerabilities are tracked as CVE-2025-53808, CVE-2025-54104, CVE-2025-54109, and CVE-2025-54915. All four enable a local attacker to escalate their privileges, posing a significant risk to system integrity.

    At the time of disclosure, Microsoft stated that none of the vulnerabilities had been publicly disclosed or actively exploited in the wild.

    Nature Of The Firewall Vulnerabilities

    Three of the four vulnerabilities (CVE-2025-54104, CVE-2025-54109, and CVE-2025-54915) are caused by a “type confusion” flaw within the Windows Defender Firewall Service.

    Type confusion is a common class of memory safety bug where a program attempts to access a resource with an incompatible type, leading to unexpected and often insecure behavior.

    In this case, it allows an authorized attacker to trigger a condition that leads to local privilege escalation.

    The fourth vulnerability, CVE-2025-53808, is also a service elevation of privilege flaw, though Microsoft’s advisory does not specify it as a type confusion bug.

    The common thread among all four is the potential outcome: a low-privileged user gaining elevated system rights.

    Understanding The Attack Scenario

    To exploit any of these vulnerabilities, an attacker must first have authenticated access to the target machine. Furthermore, exploitation requires the attacker’s account to be a member of a specific, restricted user group.

    This high prerequisite is reflected in the CVSS metric “Privileges Required: High (PR:H),” indicating that a casual or unauthenticated attacker cannot leverage these flaws.

    A successful exploit would allow the attacker to elevate their privileges from a “Medium Integrity Level” to “Local Service.”

    While not full system or administrator-level control, gaining Local Service privileges provides significant capabilities, allowing an attacker to access and manipulate a wide range of system resources, install malicious software, or further compromise the affected host.

    Microsoft’s Assessment And Mitigation

    Microsoft’s exploitability assessment indicates that an attack is “Less Likely” for CVE-2025-53808, CVE-2025-54104, and CVE-2025-54109.

    For CVE-2025-54915, the assessment is even lower, at “Exploitation Unlikely.” This analysis is based on the high privileges required for an attacker to be in a position to exploit the flaws.

    Despite the low likelihood of exploitation, the “Important” severity rating underscores the potential danger if an attacker meets the necessary prerequisites.

    Microsoft has released security updates to patch these vulnerabilities across all affected versions of Windows.

    System administrators and users are strongly advised to apply the September 2025 security updates promptly to protect their systems and mitigate the risk of potential privilege escalation attacks.

    The post Windows Defender Firewall Vulnerabilities Let Attackers Escalate Privileges appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • In a striking evolution of its tactics, the Sidewinder advanced persistent threat (APT) group—also known as APT-C-24 or “Rattlesnake”—has adopted a novel delivery mechanism leveraging Windows shortcut (LNK) files to orchestrate complex, multi-stage intrusions across South Asia. Active since at least 2012 and targeting governments, energy utilities, military installations, and mining operations in Pakistan, Afghanistan, […]

    The post Sidewinder Hackers Exploit LNK Files to Deploy Malicious Scripts appeared first on GBHackers Security | #1 Globally Trusted Cyber Security News Platform.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • A critical security vulnerability has been discovered in the popular Axios HTTP client library that allows attackers to crash Node.js applications through malicious data URL handling. The flaw, tracked as CVE-2025-58754, affects all versions of Axios before 1.11.0 and has been assigned a CVSS 3.1 score of 7.5, indicating high severity. Vulnerability Mechanics The vulnerability stems […]

    The post Axios Vulnerability Enables Attackers to Crash Node.js Applications via Data Handle Abuse appeared first on GBHackers Security | #1 Globally Trusted Cyber Security News Platform.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • Microsoft has officially announced a multi-phase plan to deprecate VBScript in Windows, a move that signals a significant shift for developers, particularly those working with Visual Basic for Applications (VBA).

    The change, first detailed in May 2024, will gradually phase out the legacy scripting language, requiring developers to adapt their projects to ensure future compatibility.

    This decision primarily impacts VBA applications that rely on VBScript for functionalities like executing external scripts or utilizing reference libraries, such as the widely used VBScript.RegExp for handling regular expressions.

    As Windows evolves, developers are being urged to prepare for a future without VBScript.

    The Three-Phase Deprecation Timeline

    Microsoft has outlined a clear, three-stage process for retiring VBScript. The first phase, currently active and expected to last until at least 2026, treats VBScript as a “Feature on Demand” (FOD), meaning it remains enabled by default, and existing VBA projects will continue to function without interruption.

    In the second phase, projected to begin around 2027, the VBScript FOD will be disabled by default. While administrators will still have the option to re-enable it, this marks a critical point where un-updated applications may begin to fail.

    The final phase, with a yet-to-be-determined date, will see VBScript completely removed from all future Windows releases, making any remaining dependencies obsolete.

    The deprecation will affect VBA projects in two primary ways. First, any code that calls and executes external .vbs files will no longer be supported once VBScript is disabled or removed.

    Second, and more critically for many, references to the VBScript type library for regular expressions will break.

    This has been a common method for developers to implement pattern matching and text manipulation within Office applications like Excel, Word, and Access.

    Without proactive changes, these essential functions will cease to operate in newer Windows environments, potentially crippling complex macros and automated workflows that depend on them.

    Future-Proofing With Integrated RegExp

    To address this, Microsoft has integrated RegExp classes directly into the VBA runtime library, starting with Microsoft 365 Version 2508 (Build 19127.20154).

    This update allows developers to use regular expressions natively without referencing the external vbscript.dll.

    The new implementation supports both early binding (Dim regEx As RegExp) and late binding (CreateObject("VBScript.RegExp")), ensuring that updated Office versions can run scripts seamlessly, even on future Windows versions where VBScript is absent.

    Microsoft strongly recommends that developers upgrade to the latest Office build, begin using the new integrated RegExp classes in their macros, and thoroughly test existing projects to identify and resolve any lingering VBScript dependencies.

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

    The post Microsoft To Depreciate VBScript In Windows Warns Developers To Adapt Their Projects appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • The security landscape for cloud-native applications is undergoing a profound transformation. Containers, Kubernetes, and serverless technologies are now the default for modern enterprises, accelerating delivery but also expanding the attack surface in ways traditional security models can’t keep up with. As adoption grows, so does complexity. Security teams are asked to monitor sprawling hybrid

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • Apple has issued a warning regarding highly sophisticated “mercenary spyware” attacks targeting a select group of its users.

    The company’s threat notification system is designed to alert and support individuals who may have been targeted due to their profession or public profile, such as journalists, activists, politicians, and diplomats, CERT-FR said.

    These attacks are far more complex and resourceful than typical cybercriminal activities. Mercenary spyware campaigns are exceptionally well-funded, costing millions of dollars, and are engineered to target a select few specific individuals.

    Due to their sophistication and often short lifespan, they are challenging to detect and prevent. Historically, these types of advanced, targeted attacks have been linked to state actors or private firms that develop spyware on their behalf.

    Notable examples of such spyware include Pegasus from the NSO Group, as well as Predator, Graphite, and Triangulation. Although only a small number of people are targeted, these attacks are ongoing and have a global scope.

    Since 2021, Apple has sent threat notifications to users in over 150 countries, highlighting the widespread nature of this threat. Due to the extreme cost and complexity of these operations, Apple does not attribute the attacks to specific entities or geographic locations.

    How Apple Notifies Targeted Users

    When Apple’s internal threat intelligence detects activity consistent with a mercenary spyware attack, it alerts the targeted user through two primary methods:

    • A Threat Notification banner appears at the top of the page when the user signs in to their account.apple.com portal.
    • An email and iMessage notification is sent to the contact points associated with the user’s Apple Account.

    These official notifications will never ask a user to click on links, open files, install applications, or provide their Apple Account password or verification code.

    To confirm a notification’s authenticity, users should sign in directly to their Apple account. Apple strongly urges anyone who receives a threat notification to take it very seriously and seek expert assistance.

    The company recommends contacting the Digital Security Helpline, a service provided by the non-profit organization Access Now, which offers rapid-response emergency security support.

    For those notified, it is crucial to avoid making changes to the device, such as resetting it or deleting apps, as this could hinder forensic investigations.

    For added protection, especially for those who have been notified or believe they are at high risk, Apple recommends enabling Lockdown Mode on their devices.

    This feature enhances security by restricting certain functionalities that could be exploited.

    For all users, Apple reiterates the importance of following general cybersecurity best practices:

    • Keep devices updated with the latest software.
    • Protect devices with a strong passcode.
    • Use two-factor authentication for your Apple Account.
    • Install applications exclusively from the App Store.
    • Use strong, unique passwords for online accounts.
    • Avoid clicking on links or attachments from unknown senders.

    While the vast majority of users will never be the target of such sophisticated attacks, adhering to these security measures provides a strong defense against more common cyber threats.

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

    The post Apple Warns Of Series Mercenary Spyware Attacks Targeting Users Devices appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • In a startling development on September 8, the Telegram channel “scattered LAPSUS$ hunters 4.0” declared its intention to “go dark” after taunting law enforcement for repeated missteps. With an audacious message aimed squarely at the FBI and French authorities, the group claimed victory in evading capture and vowed that no future activity would follow their […]

    The post LAPSUS$ Hunters 4.0 Announce Permanent Shutdown appeared first on GBHackers Security | #1 Globally Trusted Cyber Security News Platform.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • Microsoft announced the phased deprecation of VBScript in Windows, significantly impacting VBA developers who rely on VBScript libraries for regular expressions and external script execution. The company outlined a comprehensive timeline and provided migration guidance to help developers future-proof their projects. Three-Phase Deprecation Timeline VBScript deprecation will occur in three distinct phases over the coming […]

    The post Microsoft to Deprecate VBScript in Windows, Urges Developers to Update Projects appeared first on GBHackers Security | #1 Globally Trusted Cyber Security News Platform.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • Apple has issued urgent warnings about sophisticated spyware attacks targeting specific users worldwide, including journalists, activists, politicians, and diplomats. Mercenary spyware attacks differ significantly from regular cybercriminal activity. These attacks cost millions of dollars and target only a small number of individuals based on their profession or status. The attacks are often linked to state […]

    The post Apple Warns of Mercenary Spyware Attacks Targeting User Devices appeared first on GBHackers Security | #1 Globally Trusted Cyber Security News Platform.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶