• A pair of malicious Rust crates masquerading as the popular fast_log library have been uncovered, harvesting private Solana and Ethereum keys from developers’ environments. The impostor crates include legitimate-looking logging functionality to evade detection, while a hidden routine scans source files for wallet keys and exfiltrates them to a hardcoded command-and-control (C2) endpoint. Between them, […]

    The post New Malicious Rust Crates Impersonate fast_log to Steal Solana and Ethereum Wallet Keys appeared first on GBHackers Security | #1 Globally Trusted Cyber Security News Platform.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • A critical vulnerability in the popular file-sharing tool ZendTo allows authenticated users to traverse system paths and access or modify sensitive files belonging to other users. The flaw, tracked as CVE-2025-34508, affects ZendTo versions 6.15-7 and earlier. An attacker can exploit this issue to read server logs, user data, or even critical application files. ZendTo […]

    The post ZendTo Flaw Lets Attackers Bypass Security Controls to Access Sensitive Data appeared first on GBHackers Security | #1 Globally Trusted Cyber Security News Platform.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • BRICKSTORM has surfaced as a highly evasive backdoor targeting organizations within the technology and legal industries, exploiting trust relationships to infiltrate critical networks.

    First detected in mid-2025, this malware leverages multi-stage loaders and covert communication channels to avoid detection.

    Early victims reported unusual latency in remote desktop sessions, prompting deeper forensic investigations.

    As the campaign evolved, BRICKSTORM demonstrated a remarkable ability to blend into legitimate system processes, complicating incident response efforts and extending dwell time.

    Initial analysis reveals BRICKSTORM’s primary propagation vector is spear-phishing emails containing weaponized document attachments.

    These attachments exploit a zero-day flaw in a widely used document rendering engine, silently deploying a lightweight loader once opened.

    In several cases, organizations in the legal sector noted the lure of case summaries or contract amendments as decoys.

    The loader subsequently fetches an encrypted payload from a compromised cloud storage service, establishing a stealthy foothold before initiating lateral movement.

    Google Cloud analysts identified BRICKSTORM after observing anomalous traffic patterns across its infrastructure monitoring platform.

    BRICKSTORM targeting (Source – Google Cloud)

    Correlating telemetry from endpoint sensors and network logs, researchers noted connections to unusual domain names using nonstandard ports.

    These discoveries accelerated threat intelligence sharing across industry CERTs, culminating in the attribution of the backdoor to a previously unseen modular malware family.

    A characteristic feature of BRICKSTORM is its modular design, enabling operators to tailor functionality according to target environment.

    Core modules include system reconnaissance, credential harvesting, and secure communication channels. Upon deployment, BRICKSTORM enumerates running processes and open network sockets, alerting operators to high-value targets and active security tools.

    When a suitable target is found, the backdoor injects a reconnaissance module into memory, extracting credentials via in-memory process dumps.

    All data is exfiltrated using an HTTP-over-DNS tunnel, effectively bypassing traditional egress filtering rules.

    Persistence Tactics

    Delving into BRICKSTORM’s persistence mechanism reveals a cunning approach that relies on dynamically registered scheduled tasks.

    Rather than creating permanent registry entries, the backdoor generates a transient scheduled task named to mimic legitimate system maintenance jobs.

    Upon each system boot, the task executes a PowerShell command that reconstructs the loader from segmented fragments stored in alternate data streams.

    Asset inventory (Source – Google Cloud)

    This technique not only conceals the backdoor components within benign files but also rotates fragment locations on each run, preventing static indicators of compromise.

    $parts = Get-Item -Path "C:\Windows\System32\drivers\etc\hosts":frag*
    $loader = ""
    foreach ($p in $parts) {
        $loader += ([IO.File]::ReadAllText($p.Name))
    }
    Invoke-Expression $loader

    By leveraging alternate data streams, BRICKSTORM sidesteps file-based defenses and leaves minimal traces on disk.

    Incident responders often overlook ADS entries, allowing the backdoor to persist undetected across reboots.

    Moreover, the use of dynamic task names prevents easy correlation during log analysis, as each deployment may appear distinct.

    Understanding these tactics is critical for defenders aiming to develop detection rules that surface anomalous scheduled tasks and ADS activity in real time.

    Follow us on Google NewsLinkedIn, and X to Get More Instant UpdatesSet CSN as a Preferred Source in Google.

    The post New BRICKSTORM Stealthy Backdoor Attacking Tech and Legal Sectors appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • Despite a coordinated investment of time, effort, planning, and resources, even the most up-to-date cybersecurity systems continue to fail. Every day. Why?  It’s not because security teams can’t see enough. Quite the contrary. Every security tool spits out thousands of findings. Patch this. Block that. Investigate this. It’s a tsunami of red dots that not even the most crackerjack team on

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • /* ===== Container ===== */ .td-wrap {} /* ===== Section ===== */ .td-section { } .td-title { margin: 16px 0 4px; font-size: 32px; line-height: 1.2; font-weight: 800; } .td-subtitle { margin: 0 0 24px; color: #64748b; font-size: 16px; } /* ===== Timeline ===== */ .td-timeline { position: relative; margin: 0 !important;padding: 0!important; list-style: none; } /* spine */ .td-timeline:before {

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • In recent weeks, security researchers have observed a surge in targeted attacks attributed to the COLDRIVER advanced persistent threat (APT) group.

    This adversary has introduced a new PowerShell-based backdoor, dubbed BAITSWITCH, which exhibits sophisticated command-and-control techniques while blending into legitimate Windows processes.

    Initial sightings trace back to late July 2025, when intrusion attempts against government non-profits in Southeast Asia began to spike, leveraging spear-phishing emails that carried weaponized Office documents.

    These documents, when opened, silently invoked PowerShell scripts that established the foothold for BAITSWITCH. Early indicators suggest that the group refined its social-engineering lures to mimic internal memos, increasing click-through rates among high-value targets.

    Following these initial incursions, Zscaler researchers noted that BAITSWITCH diverges from typical script-based loaders by embedding its entire payload within encoded PowerShell commands.

    Rather than downloading binaries directly from public repositories, the loader unpacks an encrypted module directly in memory. This approach minimizes forensic artifacts on disk, hindering traditional antivirus tools.

    Within a week of its emergence, Zscaler analysts identified lateral-movement attempts by BAITSWITCH operators, demonstrating usage of built-in Windows utilities such as Invoke-Command and Get-Service to enumerate and pivot across the network .

    By September 2025, incident response teams reported compromised Active Directory accounts in several organizations, with exfiltration of proprietary documents and system snapshots.

    Multi-stage end-to-end ClickFix campaign attack chain leveraging BAITSWITCH to deliver SIMPLEFIX (Source – Zscaler)

    The impact of BAITSWITCH extends beyond data theft; its stealthy communication channels have allowed the actor to reside dormant for weeks before executing destructive payloads.

    Organizations with incomplete PowerShell logging or lacking network egress monitoring have proven especially vulnerable to undetected persistence.

    Infection Mechanism

    The infection chain of BAITSWITCH hinges on a multi-stage PowerShell deployment sequence. First, victims receive a lure document with macros that execute the following snippet upon user interaction:-

    $EncPayload = "JHtQcml2YXRlS2V5fQ=="
    $Decoded = [System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String($EncPayload))
    Invoke-Expression $Decoded
    ClickFix social-engineering decoy document hosted on Google Drive (Source – Zscaler)

    This code decodes a Base64-encoded string containing the next-stage loader. The loader then performs an AES decryption routine using a hard-coded key within the script to reveal the final backdoor module:

    Function Decrypt-Module($cipherText,$key){
        $AES = [System.Security.Cryptography.Aes]::Create()
        $AES.Key = [Convert]::FromBase64String($key)
        $AES.Mode = 'CBC'
        $AES.IV = $AES.Key[0..15]
        $decryptor = $AES.CreateDecryptor()
        return [System.Text.Encoding]::UTF8.GetString($decryptor.TransformFinalBlock([Convert]::FromBase64String($cipherText),0,$cipherText.Length))
    }

    Upon decryption, BAITSWITCH registers itself as a scheduled task named “WindowsUpdateSvc” and injects its commands into the svchost.exe process to evade detection.

    The backdoor communicates with its C2 server over HTTPS, masquerading traffic as routine Windows Update requests. This infection mechanism underscores COLDRIVER’s emphasis on script-only payloads and operational security, complicating both detection and remediation efforts.

    Follow us on Google NewsLinkedIn, and X to Get More Instant UpdatesSet CSN as a Preferred Source in Google.

    The post COLDRIVER APT Group Uses ClickFix To Deliver a New PowerShell-Based Backdoor BAITSWITCH appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • In July 2024, Recorded Future’s Insikt Group publicly exposed TAG-100, a cyber-espionage campaign leveraging the Go-based backdoor Pantegana against high-profile government, intergovernmental and private organizations worldwide. New evidence now attributes TAG-100 to a Chinese state-sponsored threat actor, designated RedNovember. Between June 2024 and July 2025, RedNovember—overlapping with Storm-2077—has expanded its operations to target perimeter appliances […]

    The post RedNovember Hackers Targeting Government and Tech Organizations to Install Backdoor appeared first on GBHackers Security | #1 Globally Trusted Cyber Security News Platform.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • A critical vulnerability in the implementation of the TACACS+ protocol for Cisco IOS and IOS XE Software could allow an unauthenticated, remote attacker to bypass authentication controls or access sensitive data.

    The flaw originates from the software’s failure to properly verify whether a required TACACS+ shared secret is configured, creating a window for machine-in-the-middle (MitM) attacks.

    Cisco has released software updates to address the issue and has provided a workaround for immediate mitigation.

    Authentication Bypass and Data Exposure

    The core of this vulnerability lies in how affected devices handle TACACS+ authentication when a shared secret key is missing from the configuration.

    An attacker positioned on the network between the Cisco device and the TACACS+ server can exploit this oversight in two primary ways. First, they can intercept TACACS+ messages, which would be unencrypted due to the missing secret, and read sensitive information contained within them.

    Second, the attacker could impersonate the TACACS+ server and falsely approve any authentication request from the device. A successful exploit could grant the attacker complete, unauthorized access to the network device or expose confidential data.

    This vulnerability was discovered internally during the resolution of a Cisco Technical Assistance Center (TAC) support case.

    A Cisco device is only affected by this vulnerability if it is running a susceptible version of Cisco IOS or IOS XE Software and is configured to use TACACS+ without a shared secret defined for every server.

    Administrators can determine their exposure by inspecting their device’s running configuration. Using command-line interface (CLI) commands such as show running-config | include tacacs, administrators can first confirm if TACACS+ is enabled.

    If it is, they must then verify that a shared secret key is configured for every TACACS+ server entry. If any configured server is missing its associated key, the device is vulnerable to exploitation and requires immediate remediation.

    Cisco has issued a security advisory detailing the vulnerability and has made fixed software releases available for affected products. The company strongly recommends that all customers upgrade to a patched version of IOS or IOS XE to permanently resolve the issue.

    As a temporary solution, an effective workaround is available. Administrators can mitigate the vulnerability by ensuring that a shared secret key is properly configured for every TACACS+ server on their devices.

    While this workaround prevents exploitation, Cisco considers it a temporary measure until the software can be upgraded.

    The Cisco Product Security Incident Response Team (PSIRT) has stated that it is not aware of any public announcements or malicious use of this vulnerability in the wild.

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

    The post Cisco IOS and XE Vulnerability Let Remote Attacker Bypass Authentication and Access Sensitive Data appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • A recent wave of sophisticated phishing attacks has targeted developers and startups by impersonating Y Combinator through GitHub notifications. Victims are being tricked into believing they’ve been selected for startup funding, only to face financial theft via fake verification schemes. This incident spotlights the new tactics phishers use to exploit trusted online platforms and reputable […]

    The post Hackers Use GitHub Notifications to Impersonate Y Combinator and Steal Wallet Funds appeared first on GBHackers Security | #1 Globally Trusted Cyber Security News Platform.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • Volvo Group North America has begun notifying employees and associates about a data breach that exposed their personal information, including names and Social Security numbers.

    The security incident did not originate within Volvo’s own networks but was the result of a ransomware attack on one of its third-party human resources software suppliers, a company named Miljdata. The breach highlights the persistent and growing risks associated with supply chain vulnerabilities.

    According to the data breach notification letter, the initial security incident targeting Miljdata occurred on August 20, 2025. The HR software provider first became aware of the ransomware attack three days later, on August 23.

    It wasn’t until September 2, 2025, that Miljdata determined that data belonging to Volvo Group personnel had been compromised in the attack. Miljdata informed Volvo Group of the exposure on the same day.

    Volvo has emphasized that its own internal systems were not compromised as part of this event and that the breach was contained within the environment of its supplier.

    Information Compromised

    The investigation has revealed that the exposed data may have included a combination of individuals’ first and last names along with their Social Security numbers.

    In response to the breach, Volvo Group North America has taken steps to mitigate the potential harm to those affected. The company is offering a complimentary 18-month subscription to Allstate’s Identity Protection Pro service.

    This service provides a suite of protective tools, including tri-bureau credit monitoring, dark web monitoring, financial transaction monitoring, and full-service identity restoration support. An email and a welcome letter are being sent to impacted individuals with instructions on how to enroll in the service.

    Volvo Group is urging all potentially affected individuals to remain vigilant against incidents of identity theft and fraud. The company apologizes for the inconvenience and is working closely with Miljdata to ensure appropriate actions are taken.

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

    The post Volvo Group Discloses Data Breach After Ransomware Attack on HR Supplier appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶