Staging Environment: Content and features may be unstable or change without notice.
Search for packages
Package details: pkg:deb/debian/symfony@0?distro=trixie
purl pkg:deb/debian/symfony@0?distro=trixie
Vulnerabilities affecting this package (0)
Vulnerability Summary Fixed by
This package is not known to be affected by vulnerabilities.
Vulnerabilities fixed by this package (14)
Vulnerability Summary Aliases
VCID-2ts3-y5j2-vufe Authentication granted to all firewalls instead of just one Description ----------- When an application defines multiple firewalls, the authenticated token delivered by one of the firewalls is available to all other firewalls. This can be abused when the application defines different providers for different parts of an application. In such a situation, a user authenticated on one part of the application is considered authenticated on the whole application. Resolution ---------- We now ensure that the authenticated token is only available for the firewall that generates it. The patch for this issue is available [here](https://github.com/symfony/symfony/commit/3084764ad82f29dbb025df19978b9cbc3ab34728) for branch 5.3. Credits ------- I would like to thank Bogdan, gndk, Paweł Warchoł, Warxcell, and Adrien Lamotte for reporting the issue and Wouter J for fixing the issue. CVE-2021-32693
GHSA-rfcf-m67m-jcrq
VCID-4num-z8cg-83gt Symfony vulnerable to command execution hijack on Windows with Process class ### Description On Windows, when an executable file named `cmd.exe` is located in the current working directory it will be called by the `Process` class when preparing command arguments, leading to possible hijacking. ### Resolution The `Process` class now uses the absolute path to `cmd.exe`. The patch for this issue is available [here](https://github.com/symfony/symfony/commit/18ecd03eda3917fdf901a48e72518f911c64a1c9) for branch 5.4. ### Credits We would like to thank Jordi Boggiano for reporting the issue and Nicolas Grekas for providing the fix. CVE-2024-51736
GHSA-qq5c-677p-737q
VCID-76y9-1jsf-rfez Empty passwords validation issue Validating a user password with a `UserPassword` constraint but with no `NotBlank` constraint passes without any error (the empty password would not be compared with the user password). Note that you should always be explicit and add a `NotBlank` constraint, but as it worked before without, it's considered as a backward compatibility break and a security issue. CVE-2017-11365
GHSA-q87v-q8fw-gmj5
VCID-7hh3-16j3-4yaf Symfony possible session fixation vulnerability Symfony is a PHP framework for web and console applications and a set of reusable PHP components. Starting in versions 5.4.21 and 6.2.7 and prior to versions 5.4.31 and 6.3.8, `SessionStrategyListener` does not migrate the session after every successful login. It does so only in case the logged in user changes by means of checking the user identifier. In some use cases, the user identifier does not change between the verification phase and the successful login, while the token itself changes from one type (partially-authenticated) to another (fully-authenticated). When this happens, the session id should be regenerated to prevent possible session fixations, which is not the case at the moment. As of versions 5.4.31 and 6.3.8, Symfony now checks the type of the token in addition to the user identifier before deciding whether the session id should be regenerated. CVE-2023-46733
GHSA-m2wj-r6g3-fxfx
VCID-8kq8-2mv9-s3ad Symfony allows internal address and port enumeration by NoPrivateNetworkHttpClient ### Description When using the `NoPrivateNetworkHttpClient`, some internal information is still leaking during host resolution, which leads to possible IP/port enumeration. ### Resolution The `NoPrivateNetworkHttpClient` now filters blocked IPs earlier to prevent such leaks. The fisrt patch for this issue is available [here](https://github.com/symfony/symfony/commit/296d4b34a33b1a6ca5475c6040b3203622520f5b) for branch 5.4. The second one is available [here](https://github.com/symfony/symfony/commit/b4bf5afdbdcb2fd03da513ee03beeabeb551e5fa) for branch 5.4 also. ### Credits We would like to thank Linus Karlsson and Chris Smith for reporting the issue and Nicolas Grekas for providing the fix. CVE-2024-50342
GHSA-9c3x-r3wp-mgxm
VCID-en6a-wp7q-fbfs Symfony allows changing the environment through a query ### Description When the `register_argc_argv` php directive is set to `on` , and users call any URL with a special crafted query string, they are able to change the environment or debug mode used by the kernel when handling the request. ### Resolution The `SymfonyRuntime` now ignores the `argv` values for non-cli SAPIs PHP runtimes The patch for this issue is available [here](https://github.com/symfony/symfony/commit/a77b308c3f179ed7c8a8bc295f82b2d6ee3493fa) for branch 5.4. ### Credits We would like to thank Vladimir Dusheyko for reporting the issue and Wouter de Jong for providing the fix. CVE-2024-50340
GHSA-x8vp-gf4q-mw5j
VCID-hzwd-mq3r-qfcb Uncontrolled Resource Consumption The Security component in Symfony allows remote attackers to cause a denial of service (CPU consumption) via a long password that triggers an expensive hash computation, as demonstrated by a PBKDF2 computation, a similar issue to CVE-2013-5750. CVE-2013-5958
GHSA-cr49-fx2v-9p57
VCID-kgu6-gj5d-7bfx Symfony's incorrect argument escaping under MSYS2/Git Bash can lead to destructive file operations on Windows ### Summary The Symfony Process component did not correctly treat some characters (notably `=`) as “special” when escaping arguments on Windows. When PHP is executed from an MSYS2-based environment (e.g. Git Bash) and Symfony Process spawns native Windows executables, MSYS2’s argument/path conversion can mishandle unquoted arguments containing these characters. This can cause the spawned process to receive corrupted/truncated arguments compared to what Symfony intended. ### Impact If an application (or tooling such as Composer scripts) uses Symfony Process to invoke file-management commands (e.g. `rmdir`, `del`, etc.) with a path argument containing `=`, the MSYS2 conversion layer may alter the argument at runtime. In affected setups this can result in operations being performed on an unintended path, up to and including deletion of the contents of a broader directory or drive. The issue is particularly relevant when untrusted input can influence process arguments (directly or indirectly, e.g. via repository paths, extracted archive paths, temporary directories, or user-controlled configuration). ### Resolution Upgrade to a Symfony release that includes the fix from symfony/symfony#63164 (which updates Windows argument escaping to ensure arguments containing = and other MSYS2-sensitive characters are properly quoted/escaped). The patch for branch 5.4 is available at https://github.com/symfony/symfony/commit/ec154f6f95f8c60f831998ec4d246a857e9d179b ### Workarounds / Mitigations Avoid running PHP/your tooling from MSYS2-based shells on Windows; prefer cmd.exe or PowerShell for workflows that spawn native executables. Avoid passing paths containing `=` (and similar MSYS2-sensitive characters) to Symfony Process when operating under Git Bash/MSYS2. Where applicable, configure MSYS2 to disable or restrict argument conversion (e.g. via `MSYS2_ARG_CONV_EXCL`), understanding this may affect other tooling behavior. CVE-2026-24739
GHSA-r39x-jcww-82v6
VCID-kqcd-f4vt-r7g8 Session Fixation `Symfony/SecurityBundle` is the security system for Symfony, a PHP framework for web and console applications and a set of reusable PHP components. Since the rework of the Remember me cookie, the cookie is not invalidated when the user changes their password. Attackers can therefore maintain their access to the account even if the password is changed as long as they have had the chance to login once and get a valid remember me cookie. Starting with, Symfony makes the password part of the signature by default. In that way, when the password changes, then the cookie is not valid anymore. CVE-2021-41268
GHSA-qw36-p97w-vcqr
VCID-n3d2-zwve-gbf5 Inconsistent Interpretation of HTTP Requests ('HTTP Request Smuggling') `Symfony/Http-Kernel` is the HTTP kernel component for Symfony, a PHP framework for web and console applications and a set of reusable PHP components. Headers that are not part of the `trusted_headers` allowed list are ignored and protect users from Cache poisoning attacks. In Symfony, maintainers added support for the `X-Forwarded-Prefix` headers, but this header was accessible in SubRequest, even if it was not part of the `trusted_headers` allowed list. An attacker could leverage this opportunity to forge requests containing a `X-Forwarded-Prefix` header, leading to a web cache poisoning issue. CVE-2021-41267
GHSA-q3j3-w37x-hq2q
VCID-pdcr-fsbk-63bx Symfony's `Security::login` does not take into account custom `user_checker` ### Description The custom `user_checker` defined on a firewall is not called when Login Programmaticaly with the `Security::login` method, leading to unwanted login. ### Resolution The `Security::login` method now ensure to call the configured `user_checker`. The patch for this issue is available [here](https://github.com/symfony/symfony/commit/22a0789a0085c3ee96f4ef715ecad8255cf0e105) for branch 6.4. ### Credits We would like to thank Oleg Andreyev, Antoine MAKDESSI for reporting the issue and Christian Flothmann for providing the fix. CVE-2024-50341
GHSA-jxgr-3v7q-3w9v
VCID-qwcj-hq3g-2qd7 Cross-Site Request Forgery (CSRF) Symfony is a PHP framework for web and console applications and a set of reusable PHP components. The Symfony form component provides a CSRF protection mechanism by using a random token injected in the form and using the session to store and control the token submitted by the user. When using the FrameworkBundle, this protection can be enabled or disabled with the configuration. If the configuration is not specified, by default, the mechanism is enabled as long as the session is enabled. In a recent change in the way the configuration is loaded, the default behavior has been dropped and, as a result, the CSRF protection is not enabled in form when not explicitly enabled, which makes the application sensible to CSRF attacks. This issue has been resolved in the patch versions listed and users are advised to update. There are no known workarounds for this issue. CVE-2022-23601
GHSA-vvmr-8829-6whx
VCID-sbsb-u8u5-4bcm Symfony has an Authentication Bypass via RememberMe ### Description When consuming a persisted remember-me cookie, Symfony does not check if the username persisted in the database matches the username attached with the cookie, leading to authentication bypass. ### Resolution The `PersistentRememberMeHandler` class now ensures the submitted username is the cookie owner. The patch for this issue is available [here](https://github.com/symfony/symfony/commit/81354d392c5f0b7a52bcbd729d6f82501e94135a) for branch 5.4. ### Credits We would like to thank Moritz Rauch - Pentryx AG for reporting the issue and Jérémy Derussé for providing the fix. CVE-2024-51996
GHSA-cg23-qf8f-62rr
VCID-znfv-ngqc-fudw Cross-site scripting Symfony is a PHP framework for web and console applications and a set of reusable PHP components. Starting in version 6.0.0 and prior to version 6.3.8, the error message in `WebhookController` returns unescaped user-submitted input. As of version 6.3.8, `WebhookController` now does not return any user-submitted input in its response. CVE-2023-46735
GHSA-72x2-5c85-6wmr

Date Actor Action Vulnerability Source VulnerableCode Version
2026-04-16T13:15:16.026747+00:00 Debian Importer Fixing VCID-hzwd-mq3r-qfcb https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T12:22:41.678881+00:00 Debian Importer Fixing VCID-sbsb-u8u5-4bcm https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T10:45:35.737733+00:00 Debian Importer Fixing VCID-pdcr-fsbk-63bx https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T10:37:30.178508+00:00 Debian Importer Fixing VCID-znfv-ngqc-fudw https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T10:19:16.336825+00:00 Debian Importer Fixing VCID-kqcd-f4vt-r7g8 https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T10:11:56.676345+00:00 Debian Importer Fixing VCID-n3d2-zwve-gbf5 https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T09:30:17.814521+00:00 Debian Importer Fixing VCID-2ts3-y5j2-vufe https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T09:19:45.731328+00:00 Debian Importer Fixing VCID-4num-z8cg-83gt https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T09:07:06.590159+00:00 Debian Importer Fixing VCID-kgu6-gj5d-7bfx https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T09:01:20.765752+00:00 Debian Importer Fixing VCID-qwcj-hq3g-2qd7 https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T08:55:21.627082+00:00 Debian Importer Fixing VCID-en6a-wp7q-fbfs https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T08:45:08.200603+00:00 Debian Importer Fixing VCID-76y9-1jsf-rfez https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T08:41:28.362556+00:00 Debian Importer Fixing VCID-7hh3-16j3-4yaf https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T08:38:45.721255+00:00 Debian Importer Fixing VCID-8kq8-2mv9-s3ad https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-13T09:07:36.379239+00:00 Debian Importer Fixing VCID-hzwd-mq3r-qfcb https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-13T08:28:07.475639+00:00 Debian Importer Fixing VCID-sbsb-u8u5-4bcm https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-13T07:16:39.056047+00:00 Debian Importer Fixing VCID-pdcr-fsbk-63bx https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-13T07:10:52.167658+00:00 Debian Importer Fixing VCID-znfv-ngqc-fudw https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-13T06:56:50.411857+00:00 Debian Importer Fixing VCID-kqcd-f4vt-r7g8 https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-13T06:51:17.986045+00:00 Debian Importer Fixing VCID-n3d2-zwve-gbf5 https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-11T18:20:24.446619+00:00 Debian Importer Fixing VCID-2ts3-y5j2-vufe https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-11T18:13:58.363589+00:00 Debian Importer Fixing VCID-4num-z8cg-83gt https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-11T18:06:31.738728+00:00 Debian Importer Fixing VCID-kgu6-gj5d-7bfx https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-11T18:02:58.844177+00:00 Debian Importer Fixing VCID-qwcj-hq3g-2qd7 https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-11T17:59:19.128751+00:00 Debian Importer Fixing VCID-en6a-wp7q-fbfs https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-11T17:52:48.876683+00:00 Debian Importer Fixing VCID-76y9-1jsf-rfez https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-11T17:50:27.894485+00:00 Debian Importer Fixing VCID-7hh3-16j3-4yaf https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-11T17:48:48.402539+00:00 Debian Importer Fixing VCID-8kq8-2mv9-s3ad https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-03T07:53:43.665329+00:00 Debian Importer Fixing VCID-kgu6-gj5d-7bfx https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:53:43.577593+00:00 Debian Importer Fixing VCID-sbsb-u8u5-4bcm https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:53:43.522920+00:00 Debian Importer Fixing VCID-4num-z8cg-83gt https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:53:43.371644+00:00 Debian Importer Fixing VCID-8kq8-2mv9-s3ad https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:53:43.311326+00:00 Debian Importer Fixing VCID-pdcr-fsbk-63bx https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:53:43.270352+00:00 Debian Importer Fixing VCID-en6a-wp7q-fbfs https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:53:43.203551+00:00 Debian Importer Fixing VCID-znfv-ngqc-fudw https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:53:43.092662+00:00 Debian Importer Fixing VCID-7hh3-16j3-4yaf https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:53:42.933548+00:00 Debian Importer Fixing VCID-qwcj-hq3g-2qd7 https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:53:42.841140+00:00 Debian Importer Fixing VCID-kqcd-f4vt-r7g8 https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:53:42.799667+00:00 Debian Importer Fixing VCID-n3d2-zwve-gbf5 https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:53:42.758233+00:00 Debian Importer Fixing VCID-2ts3-y5j2-vufe https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:53:41.453403+00:00 Debian Importer Fixing VCID-76y9-1jsf-rfez https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:53:41.075788+00:00 Debian Importer Fixing VCID-hzwd-mq3r-qfcb https://security-tracker.debian.org/tracker/data/json 38.1.0