CVE-2024-40633

CVE-2024-40633 is a high-severity security vulnerability in sylius/sylius (composer), affecting versions >= 1.13.0-alpha.1, < 1.13.4. It is fixed in 1.13.4, 1.12.19, 1.9.12, 1.10.16, 1.11.17.

Summary

Workarounds

Using YAML configuration:

Create config/api_platform/Adjustment.yaml file:

# config/api_platform/Adjustment.yaml

'%sylius.model.adjustment.class%':
    itemOperations:
        shop_get:
            controller: ApiPlatform\Core\Action\NotFoundAction
            read: false
            output: false

Or using XML configuration:

Note: This is the only way of disabling the vulnerable endpoint for Sylius 1.9, as YAML configuration is not supported in that version.

Copy the original configuration from vendor:

# create directory if it doesn't exist
mkdir -p config/api_platform

cp vendor/sylius/sylius/src/Sylius/Bundle/ApiBundle/Resources/config/api_resources/Adjustment.xml config/api_platform

And change the shop_get operation in copied config/api_platform/Adjustment.xml file:

<!-- config/api_platform/Adjustment.xml -->

...
<itemOperation name="shop_get">
    <attribute name="method">GET</attribute>
    <attribute name="path">/shop/adjustments/{id}</attribute>
    <attribute name="controller">ApiPlatform\Core\Action\NotFoundAction</attribute>
    <attribute name="read">false</attribute>
    <attribute name="output">false</attribute>
</itemOperation>
...

Update your API platform paths config if needed so the new configuration file is loaded:

# config/packages/api_platform.yaml
api_platform:
    mapping:
        paths:
          - '%kernel.project_dir%/vendor/sylius/sylius/src/Sylius/Bundle/ApiBundle/Resources/config/api_resources'
          ...
          - '%kernel.project_dir%/config/api_platform'

For more information

If you have any questions or comments about this advisory:

Impact

A security vulnerability was discovered in the /api/v2/shop/adjustments/{id} endpoint, which retrieves order adjustments based on incremental integer IDs. The vulnerability allows an attacker to enumerate valid adjustment IDs and retrieve order tokens. Using these tokens, an attacker can access guest customer order details - sensitive guest customer information.

CVE-2024-40633 has a CVSS score of 7.5 (High). The vector is network-reachable, no privileges required, and no user interaction. A CVSS score reflects the worst-case severity of the vulnerability, not your specific exposure. Whether this affects your application depends on whether the vulnerable code is present and reachable in your environment. A fixed version is available (1.13.4, 1.12.19, 1.9.12, 1.10.16, 1.11.17); upgrading removes the vulnerable code path.

Affected versions

sylius/sylius (>= 1.13.0-alpha.1, < 1.13.4) sylius/sylius (>= 1.12.0-alpha.1, < 1.12.19) sylius/sylius (< 1.9.12) sylius/sylius (>= 1.10.0-alpha.1, <= 1.10.15) sylius/sylius (>= 1.11.0-alpha.1, <= 1.11.16)

Security releases

sylius/sylius → 1.13.4 (composer) sylius/sylius → 1.12.19 (composer) sylius/sylius → 1.9.12 (composer) sylius/sylius → 1.10.16 (composer) sylius/sylius → 1.11.17 (composer)

Kodem intelligence

Severity tells you how bad this could be in the worst case. It does not tell you whether you are exposed. Exploitability and impact are functions of runtime truth: whether the vulnerable code is present, reachable, and actually executes in your application. A vulnerable package can sit in your dependency tree and never run.

Kodem, an Intelligent Application Security platform, uses runtime intelligence to reveal which vulnerabilities actually execute in production, so teams prioritize the ones that genuinely matter. Kodem's runtime-powered SCA identifies whether this CVE is reachable in your applications.

See it in your environment

Remediation advice

The issue is fixed in versions: 1.9.12, 1.10.16, 1.11.17, 1.12.19, 1.13.4 and above.
The /api/v2/shop/adjustments/{id} will always return 404 status.

Frequently Asked Questions

  1. What is CVE-2024-40633? CVE-2024-40633 is a high-severity security vulnerability in sylius/sylius (composer), affecting versions >= 1.13.0-alpha.1, < 1.13.4. It is fixed in 1.13.4, 1.12.19, 1.9.12, 1.10.16, 1.11.17.
  2. How severe is CVE-2024-40633? CVE-2024-40633 has a CVSS score of 7.5 (High). This score reflects the worst-case severity of the vulnerability, not your specific exposure. Whether it represents real risk in your environment depends on whether the vulnerable code is present and reachable.
  3. Which versions of sylius/sylius are affected by CVE-2024-40633? sylius/sylius (composer) versions >= 1.13.0-alpha.1, < 1.13.4 is affected.
  4. Is there a fix for CVE-2024-40633? Yes. CVE-2024-40633 is fixed in 1.13.4, 1.12.19, 1.9.12, 1.10.16, 1.11.17. Upgrade to this version or later.
  5. Is CVE-2024-40633 exploitable, and should I be worried? Whether CVE-2024-40633 is exploitable in your environment depends on whether the vulnerable code is present and reachable. A CVSS score is a worst-case rating; it does not account for your specific deployment, configuration, or usage patterns. Kodem, an Intelligent Application Security platform, uses runtime intelligence to show which vulnerabilities actually execute in production, so you can focus on the ones that represent real risk. Get a demo
  6. What actually determines whether CVE-2024-40633 is exploitable, and how bad it is? Exploitability and impact are not fixed properties of a CVE. They depend on runtime truth: whether the vulnerable code is present, reachable, and actually executes in your application. A high CVSS score on a dependency that never runs is not the same as real risk. Kodem, an Intelligent Application Security platform, uses runtime intelligence to reveal which vulnerabilities actually execute in production, so teams prioritize the ones that genuinely matter.
  7. How do I fix CVE-2024-40633?
    • Upgrade sylius/sylius to 1.13.4 or later
    • Upgrade sylius/sylius to 1.12.19 or later
    • Upgrade sylius/sylius to 1.9.12 or later
    • Upgrade sylius/sylius to 1.10.16 or later
    • Upgrade sylius/sylius to 1.11.17 or later

Other vulnerabilities in sylius/sylius

Stop the waste.
Protect your environment with Kodem.