• A critical vulnerability in Magento, the popular e-commerce platform, is now rebranded as Adobe Commerce. Dubbed SessionReaper and tracked as CVE-2025-54236, this improper input validation flaw allows attackers to hijack user sessions and, in some cases, execute malicious code remotely.

    The discovery highlights the ongoing risks to online retailers, with over 250 Magento stores reportedly compromised overnight as threat actors ramp up their efforts ahead of the holiday shopping season.

    The vulnerability came to light on September 9, 2025, when Adobe issued an emergency security bulletin with patches to address it.

    At the time, the flaw was rated critical due to its potential for unauthorized access. However, the situation escalated dramatically on October 22, when researchers at Sansec publicly released a proof-of-concept exploit.

    This triggered a surge in attack attempts, transforming a theoretical risk into a widespread threat. Magento’s dominance in the e-commerce space, powering thousands of online stores worldwide, makes it a prime target, especially given its track record of high-profile vulnerabilities that have lured cybercriminals in the past.

    The SessionReaper Vulnerability

    At its core, SessionReaper stems from inadequate validation of user inputs in Magento’s authentication mechanisms. Attackers can manipulate session data to impersonate legitimate users, gaining control over admin panels or customer accounts without credentials.

    More alarmingly, advanced exploitation techniques demonstrated in the public proof-of-concept enable unauthenticated remote code execution (RCE).

    This could let intruders upload malicious scripts directly to servers, potentially stealing sensitive data like payment information or installing backdoors for long-term access.

    The vulnerability affects multiple versions of Adobe Commerce and Magento Open Source, including those that have not yet received the latest patches.

    Its CVSS score of 9.8 underscores the severity: high impact on confidentiality, integrity, and availability, with no privileges required for initial access.

    E-commerce operators running unpatched systems face immediate risks, as attackers need only a crafted request to initiate the hijack.

    Mitigations

    Akamai’s security team detected the first waves of exploitation shortly after the proof-of-concept surfaced.

    In just 48 hours starting October 22, attackers launched over 300 probes against more than 130 unique hosts, originating from 11 distinct IP addresses.

    These included sophisticated payloads like web shells, malicious scripts that grant persistent server control, and basic reconnaissance tools such as phpinfo queries to map server environments or echo commands to test injection success.

    Fortunately, Akamai’s Adaptive Security Engine, part of its App & API Protector suite, has been blocking these attempts by default. Existing rules, such as those targeting PHP web shell uploads, have neutralized threats without customer intervention.

    The company’s Security Intelligence Group continues to monitor developments, refining protections as new tactics emerge.

    Experts emphasize that while web application firewalls like Akamai’s provide a crucial layer of defense, the most reliable safeguard remains applying Adobe’s patches promptly.

    With Magento’s vast user base, unpatched sites could become easy prey for ransomware or data theft campaigns. Organizations should scan their environments immediately, update to the latest versions, and enable robust input validation to thwart SessionReaper and similar flaws.

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

    The post Magento Input Validation Vulnerability Exploited In Wild To Hijack Session And Execute Malicious Codes appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • A critical security vulnerability in XWiki collaboration software is being actively exploited by threat actors to deploy cryptocurrency mining malware on vulnerable systems. The flaw, tracked as CVE-2025-24893, represents a serious threat to organizations running unpatched XWiki installations. Cybersecurity researchers at VulnCheck have captured concrete evidence of active exploitation through their canary network. CVE Details […]

    The post XWiki Remote Code Execution Flaw Actively Weaponized for Coinmining appeared first on GBHackers Security | #1 Globally Trusted Cyber Security News Platform.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • Threat actors are actively exploiting multiple security flaws impacting Dassault Systèmes DELMIA Apriso and XWiki, according to alerts issued by the U.S. Cybersecurity and Infrastructure Security Agency (CISA) and VulnCheck. The vulnerabilities are listed below – CVE-2025-6204 (CVSS score: 8.0) – A code injection vulnerability in Dassault Systèmes DELMIA Apriso that could allow an attacker to

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • Microsoft has issued a critical security update for ASP.NET Core to address CVE-2025-55315, a high-severity flaw that enables HTTP request smuggling and could allow attackers to bypass key security controls.

    Disclosed on October 14, 2025, this vulnerability has a CVSS v3.1 score of 9.9, making it one of the most severe issues ever reported in the ASP.NET ecosystem.

    The flaw stems from inconsistent handling of HTTP requests in the Kestrel web server component, which could let authenticated attackers inject hidden requests to escalate privileges or access sensitive data.

    While HTTP request smuggling is a well-known attack vector, this specific implementation in ASP.NET Core amplifies risks for web applications relying on the framework for authentication and authorization.

    Attackers exploit discrepancies between how proxies and servers parse headers like Content-Length and Transfer-Encoding, smuggling malicious payloads that evade normal processing.

    For instance, a crafted POST request might embed a concealed GET to an admin endpoint, tricking the system into executing unauthorized actions without detection.

    Understanding HTTP Request Smuggling

    At its core, HTTP request smuggling leverages parsing inconsistencies across network components, such as front-end proxies and back-end servers.

    An attacker sends a request with ambiguous headers, like combining Content-Length and Transfer-Encoding, causing the proxy to interpret it one way while the server sees the smuggled content differently.

    This can result in the second request bypassing rate limits, CSRF protections, or even authentication checks, leading to severe outcomes in multi-tiered environments.

    In the CVE-2025-55315 case, the Kestrel server’s failure to validate request boundaries under certain conditions allows smuggled requests to reach application logic intact.

    This affects all supported ASP.NET Core versions, including 8.0, 9.0, and 10.0 previews, particularly in setups with reverse proxies like NGINX or Azure Front Door.

    Exploitation requires network access and often low privileges, but the scope can extend to confidential data exposure or server crashes in worst-case scenarios.

    The vulnerability’s high score underscores its potential for chained attacks, from session hijacking to server-side request forgery.

    Not all applications are equally exposed; risks heighten if custom request parsing, header-based decisions, or skipped validations are in play.

    For regulated sectors handling sensitive data, unpatched systems could face compliance violations alongside direct threats like privilege escalation.

    Attack VectorPotential ImpactDepends On
    Smuggled login requestElevation of privilegeApp logic trusting headers
    Smuggled internal API callSSRFApp routing and endpoints
    Smuggled CSRF bypassSession hijackingCSRF token validation
    Smuggled injection payloadCode executionInput sanitization gaps

    Mitigations

    Microsoft urges immediate patching via the latest .NET updates for affected versions, followed by application restarts.

    Developers should audit request-handling code, especially around auth and input validation, while ensuring proxies normalize traffic to block smuggling attempts.

    Monitoring logs for anomalous patterns and testing with tools like those simulating HRS can further harden defenses. By applying these measures, organizations can safeguard ASP.NET applications against this pervasive threat landscape.

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

    The post Microsoft Details ASP.NET Vulnerability That Enables Attackers To Smuggle HTTP Requests appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • The cybersecurity landscape continues to face persistent threats from emerging ransomware groups, with Gunra representing a significant concern since its emergence in April 2025. This threat actor has launched systematic attacks across multiple industries and geographic regions, including documented incidents in Korea. What makes Gunra particularly noteworthy is its dual-platform capability—the group distributes separate malware […]

    The post Gunra Ransomware Targets Windows and Linux with Dual Encryption appeared first on GBHackers Security | #1 Globally Trusted Cyber Security News Platform.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • Docker Compose, a cornerstone tool for developers managing containerized application harbors a high-severity vulnerability that lets attackers overwrite files anywhere on a host system.

    Discovered in early October 2025 by Imperva, the issue stems from improper handling of remote artifacts in Docker’s OCI support, enabling path traversal attacks without even launching containers.

    Assigned CVE-2025-62725 with a CVSS score of 8.9, the flaw affects millions of workflows in CI/CD pipelines, local development, and cloud environments. Docker swiftly patched it in version 2.40.2, urging users to update immediately.

    The vulnerability emerged as researchers probed Docker Compose’s new feature for OCI-based artifacts, which allows teams to share portable Compose projects via registries.

    These artifacts use simple “include” directives in YAML files to pull in configurations, environment files, and extensions. Behind the scenes, Compose downloads layers from the registry and reconstructs them in a local cache directory, guided by annotations like com.docker.compose.file or com.docker.compose.envfile.

    These annotations dictate file destinations, but the code in oci.go blindly concatenated them with the cache path, skipping normalization or boundary checks.

    Attackers could craft malicious artifacts with annotations to escape the cache and target sensitive locations, such as SSH keys or system configs.

    The danger lies in its stealth: it triggers during “read-only” operations like “docker compose config” or “docker compose ps,” which resolve remote includes without user intent to write files.

    A proof-of-concept demonstrates injecting an SSH public key into ~/.ssh/authorized_keys, granting remote access—all from a tricked developer running a routine command on an untrusted YAML file.

    This bug’s subtlety amplifies its threat. Developers often share Compose files in public repos or CI systems, unaware that a tampered “include” could fetch a poisoned artifact.

    In enterprise settings, cloud dev environments or automated builds become prime targets, as the process leaks server IPs during fetches and writes files with the Compose binary’s permissions.

    No container startup is needed, blurring the lines between safe inspection and exploitation. Impacts span Docker Desktop, Linux binaries, and integrated tools, potentially leading to full system compromise if the host runs as root or has broad write access.

    Docker’s fix introduces a validatePathInBase function that normalizes paths and rejects traversals or absolute references. Reported on October 9, confirmed by October 21, and released on October 27, the patch closes the gap without disrupting OCI features.

    Security experts emphasize auditing shared Compose files and running tools with the least privilege. As container orchestration evolves, this incident underscores the perils of trusting remote metadata, reminding developers that convenience must never outpace validation.

    With updates applied, Docker Compose regains its trusted status, but vigilance remains key in an era of interconnected DevOps.

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

    The post Docker Compose Vulnerability Allow Attacks To Overwrite Arbitrary Files appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • Mozilla has announced a significant transparency initiative for its Firefox browser ecosystem, implementing mandatory data disclosure requirements for extension developers. Starting November 3rd, 2025, all newly submitted Firefox extensions must explicitly declare their data collection and transmission practices within their code, marking a major step toward enhanced user privacy and informed consent. New Manifest Requirements […]

    The post Mozilla Enforces Transparency Rules for Data Collection in New Firefox Extensions appeared first on GBHackers Security | #1 Globally Trusted Cyber Security News Platform.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • Microsoft has released a critical security update addressing a severe vulnerability in ASP.NET Core that could enable attackers to execute HTTP request smuggling attacks. On October 14, 2025, the company issued patches for CVE-2025-55315, a security feature bypass flaw affecting the Kestrel web server component with an alarming CVSS score of 9.9, placing it in […]

    The post Microsoft Issues Alert on ASP.NET Flaw Allowing HTTP Request Smuggling Attacks appeared first on GBHackers Security | #1 Globally Trusted Cyber Security News Platform.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • A sophisticated new remote access trojan called Atroposia has emerged in underground cybercrime marketplaces, offering attackers a comprehensive toolkit for hidden remote desktop access, credential theft, and network manipulation at an accessible price point. Security researchers at Varonis recently discovered the malware being promoted on underground forums, highlighting how advanced cyberattack capabilities are increasingly packaged […]

    The post New Atroposia RAT Uses Hidden Remote Desktop, Vulnerability Scanning and Advanced Persistence appeared first on GBHackers Security | #1 Globally Trusted Cyber Security News Platform.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • AI language models like ChatGPT, DeepSeek, and Copilot are transforming business operations at lightning speed. They help us generate documents, summarise meetings, and even make decisions faster than ever before. But this rapid adoption comes at a price. Employees often use unapproved AI tools on personal devices, risking sensitive company information leaking into ungoverned spaces. […]

    The post Ethical Prompt Injection: Fighting Shadow AI with Its Own Weapon appeared first on GBHackers Security | #1 Globally Trusted Cyber Security News Platform.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶