The /graphql Precondition: Understanding the Attack Surface Behind CVE-2026-75650
Vulnerability overview
CVE-2026-75650 is a critical vulnerability in Adobe Commerce and Magento Open Source. The ACSC classifies it as an Improper Neutralisation of Special Elements Used in a Template Engine leading to unauthenticated remote code execution, states that exploitation requires the /graphql endpoint to be exposed, and reports awareness of active exploitation. The vendor patch dates to 7 September 2026.
Why the precondition is the interesting part
Most RCE advisories are read as "patch this." This one carries an explicit environmental condition, and that condition is worth understanding because it determines which deployments are actually reachable. The advisory ties exploitation to the exposure of /graphql.
GraphQL is a query language and runtime that lets clients request exactly the fields they need from a single endpoint. In Magento and Adobe Commerce it is a supported API surface used for storefront and integration traffic. That design concentrates a great deal of functionality behind one URL, which is convenient for developers and equally convenient for an attacker looking for a single reachable entry point.
Mechanism and exploitation conditions
The vulnerability class is template-engine injection: special elements in user-controlled input are not properly neutralised, so template syntax is evaluated instead of being treated as data. Combined with the unauthenticated nature of the flaw and the /graphql precondition, the described path is: reach the endpoint without credentials, supply input that survives into the template layer, and obtain code execution.
This article does not assert a specific payload. It describes the vulnerability class and the stated precondition as given in the advisory.
Impact
Code execution on a commerce server exposes customer and order data, supports persistence, and can serve as a pivot into connected systems. Active exploitation, as reported by the ACSC, means the window between disclosure and attempted compromise is already open.
Affected products and scope
Adobe Commerce and Magento Open Source are named. The reviewed advisory text does not list specific vulnerable versions; confirm against the vendor support page.
Exposure context
A ZoomEye query for app="Magento" returned 132,318 matching assets at the time of writing. This is a product-fingerprint measurement. It says how many internet-facing assets present the Magento fingerprint, not how many are vulnerable to this CVE.
Remediation and mitigations
Patch using the 7 September 2026 release. Where patching is delayed, restrict and monitor /graphql — the same endpoint the advisory names as the exploitation precondition — and review the ACSC's indicators: unusual system activity, unexpected scheduled tasks, and suspicious log entries such as unusual template processing or failed notifications. Confirm with any managed provider that both patching and monitoring are in place.
References
- ASD's ACSC advisory: https://www.cyber.gov.au/about-us/view-all-content/alerts-and-advisories/active-exploitation-of-adobe-commerce-and-magento-open-source-vulnerability
- ZoomEye product-fingerprint observation: https://www.zoomeye.ai/searchResult?q=YXBwPSJNYWdlbnRvIg%3D%3D
Top comments (0)