Skip to content

feat(deps): update symfony/runtime to 7.4.12 [security]#116

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/packagist-symfony-runtime-vulnerability
Open

feat(deps): update symfony/runtime to 7.4.12 [security]#116
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/packagist-symfony-runtime-vulnerability

Conversation

@renovate

@renovate renovate Bot commented Jun 9, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
symfony/runtime (source) 7.3.*7.4.* age confidence

SymfonyRuntime CVE-2024-50340 Patch Bypass: Web Requests Can Still Set APP_ENV/APP_DEBUG via parse_str/SAPI Argv Mismatch

CVE-2026-47767 / GHSA-fqc7-9xjw-jrh3

More information

Details

Description

CVE-2024-50340 (GHSA-x8vp-gf4q-mw5j) addressed an issue where, with register_argc_argv=On, a crafted query string let an unauthenticated GET change the kernel environment and debug flag by feeding --env/--no-debug through $_SERVER['argv']. The fix shipped in symfony/runtime 5.4.46 / 6.4.14 / 7.1.7 gated the argv read on empty($_GET) as a proxy for "is this a CLI invocation".

That proxy is unsafe: parse_str() (which builds $_GET) and the web SAPI (which builds $_SERVER['argv'] from the raw query when register_argc_argv=On) do not agree on every input, so an attacker can craft a query that leaves $_GET empty while $_SERVER['argv'] carries the attacker's flags. SymfonyRuntime::getInput() then parses them, restoring the exact primitive CVE-2024-50340 was meant to prevent.

Preconditions and impact match the original CVE: web SAPI, register_argc_argv=On, app booted through symfony/runtime; from an unauthenticated GET an attacker can flip APP_ENV and toggle APP_DEBUG.

Resolution

SymfonyRuntime now gates the argv read on isset($_SERVER['QUERY_STRING']) rather than on empty($_GET). QUERY_STRING is the same input the SAPI uses to build argv, so the security check and the thing it protects no longer parse different sources. Worker SAPIs (FrankenPHP / RoadRunner / Swoole) keep working because the runtime constructor runs once at boot when QUERY_STRING is unset.

The patch for this issue is available here for branch 5.4.

Credits

SymfonyRuntime would like to thank 0xEr3n for reporting the issue and Nicolas Grekas for providing the fix.

Severity

  • CVSS Score: 6.9 / 10 (Medium)
  • Vector String: CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:L/VI:L/VA:L/SC:N/SI:N/SA:N

References

This data is provided by the GitHub Advisory Database (CC-BY 4.0).


Release Notes

symfony/runtime (symfony/runtime)

v7.4.12

Compare Source

Changelog (symfony/runtime@v7.4.1...v7.4.12)

v7.4.8

Compare Source

Changelog (symfony/runtime@v7.4.7...v7.4.8)

  • no significant changes

v7.4.1

Compare Source

Changelog (symfony/runtime@v7.4.0...v7.4.1)

v7.4.0

Compare Source

v7.3.8

Compare Source

Changelog (symfony/runtime@v7.3.7...v7.3.8)

v7.3.4

Compare Source

Changelog (symfony/runtime@v7.3.3...v7.3.4)

  • no significant changes

Configuration

📅 Schedule: (in timezone Asia/Makassar)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

| datasource | package         | from  | to     |
| ---------- | --------------- | ----- | ------ |
| packagist  | symfony/runtime | 7.3.1 | 7.4.12 |
@renovate renovate Bot added the type/minor label Jun 9, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants