Staging Environment: Content and features may be unstable or change without notice.
Search for packages
Package details: pkg:deb/debian/symfony@4.4.19%2Bdfsg-2%2Bdeb11u6
purl pkg:deb/debian/symfony@4.4.19%2Bdfsg-2%2Bdeb11u6
Next non-vulnerable version 5.4.23+dfsg-1+deb12u5
Latest non-vulnerable version 5.4.23+dfsg-1+deb12u5
Risk 4.0
Vulnerabilities affecting this package (3)
Vulnerability Summary Fixed by
VCID-9bzz-84cq-ykh2
Aliases:
CVE-2024-50345
GHSA-mrqx-rp3w-jpjp
Symfony vulnerable to open redirect via browser-sanitized URLs ### Description The `Request` class, does not parse URI with special characters the same way browsers do. As a result, an attacker can trick a validator relying on the `Request` class to redirect users to another domain. ### Resolution The `Request::create` methods now assert the URI does not contain invalid characters as defined by https://url.spec.whatwg.org/ The patch for this issue is available [here](https://github.com/symfony/symfony/commit/5a9b08e5740af795854b1b639b7d45b9cbfe8819) for branch 5.4. ### Credits We would like to thank Sam Mush - IPASSLab && ZGC Lab for reporting the issue and Nicolas Grekas for providing the fix.
5.4.23+dfsg-1+deb12u5
Affected by 0 other vulnerabilities.
VCID-c8ar-82sr-fqej
Aliases:
CVE-2024-50343
GHSA-g3rh-rrhp-jhh9
Symfony has an incorrect response from Validator when input ends with `\n` ### Description It is possible to trick a `Validator` configured with a regular expression using the `$` metacharacters, with an input ending with `\n`. ### Resolution Symfony now uses the `D` regex modifier to match the entire input. The patch for this issue is available [here](https://github.com/symfony/symfony/commit/7d1032bbead9a4229b32fa6ebca32681c80cb76f) for branch 5.4. ### Credits We would like to thank Offscript for reporting the issue and Alexandre Daubois for providing the fix.
5.4.23+dfsg-1+deb12u5
Affected by 0 other vulnerabilities.
VCID-p1dw-w76f-gbfv
Aliases:
CVE-2025-64500
GHSA-3rg7-wf37-54rm
Symfony's incorrect parsing of PATH_INFO can lead to limited authorization bypass The `Request` class improperly interprets some `PATH_INFO` in a way that leads to representing some URLs with a path that doesn't start with a `/`. This can allow bypassing some access control rules that are built with this `/`-prefix assumption.
5.4.23+dfsg-1+deb12u5
Affected by 0 other vulnerabilities.
Vulnerabilities fixed by this package (14)
Vulnerability Summary Aliases
VCID-9qrr-z4mp-vyfp User enumeration leak using switch user functionality in Symfony An issue was discovered in Symfony 4.2.0 to 4.2.11 and 4.3.0 to 4.3.7. The ability to enumerate users was possible due to different handling depending on whether the user existed when making unauthorized attempts to use the switch users functionality. This is related to symfony/security. CVE-2019-18886
GHSA-4vpc-5jx4-cfqg
VCID-9rsx-fscb-6fh3 Symfony Unsafe Cache Serialization Could Enable RCE An issue was discovered in Symfony 3.4.0 through 3.4.34, 4.2.0 through 4.2.11, and 4.3.0 through 4.3.7. Serializing certain cache adapter interfaces could result in remote code injection. This is related to symfony/cache. CVE-2019-18889
GHSA-79gr-58r3-pwm3
VCID-bdhj-np35-sybt Symfony potential Cross-site Scripting vulnerabilities in CodeExtension filters Symfony is a PHP framework for web and console applications and a set of reusable PHP components. Starting in versions 2.0.0, 5.0.0, and 6.0.0 and prior to versions 4.4.51, 5.4.31, and 6.3.8, some Twig filters in CodeExtension use `is_safe=html` but don't actually ensure their input is safe. As of versions 4.4.51, 5.4.31, and 6.3.8, Symfony now escapes the output of the affected filters. CVE-2023-46734
GHSA-q847-2q57-wmr3
VCID-e71e-d4tr-wqgz Prevent user enumeration using Guard or the new Authenticator-based Security Description ----------- The ability to enumerate users was possible without relevant permissions due to different exception messages depending on whether the user existed or not. It was also possible to enumerate users by using a timing attack, by comparing time elapsed when authenticating an existing user and authenticating a non-existing user. Resolution ---------- We now ensure that 403s are returned whether the user exists or not if the password is invalid or if the user does not exist. The patch for this issue is available [here](https://github.com/symfony/symfony/commit/2a581d22cc621b33d5464ed65c4bc2057f72f011) for branch 3.4. Credits ------- I would like to thank James Isaac and Mathias Brodala for reporting the issue and Robin Chalas for fixing the issue. CVE-2021-21424
GHSA-5pv8-ppvj-4h68
VCID-grxm-dpcv-37d9 Firewall configured with unanimous strategy was not actually unanimous in Symfony Description ----------- On Symfony before 4.4.0, when a `Firewall` checks an access control rule (using the unanimous strategy), it iterates over all rule attributes and grant access only if *all* calls to the `accessDecisionManager` decide to grant access. As of Symfony 4.4.0, a bug was introduced that prevents the check of attributes as soon as `accessDecisionManager` decide to grant access on one attribute. Resolution ---------- The `accessDecisionManager` is now called with all attributes at once, allowing the unanimous strategy being applied on each attribute. The patch for this issue is available [here](https://github.com/symfony/symfony/commit/c935e4a3fba6cc2ab463a6ca382858068d63cebf) for the 4.4 branch. Credits ------- I would like to thank Antonio J. García Lagar for reporting & Robin Chalas for fixing the issue. CVE-2020-5275
GHSA-g4m9-5hpf-hx72
VCID-guzg-x6nu-pygu Symfony Http-Kernel has non-constant time comparison in UriSigner When checking the signature of an URI (an ESI fragment URL for instance), the URISigner did not used a constant time string comparison function, resulting in a potential remote timing attack vulnerability. CVE-2019-18887
GHSA-q8hg-pf8v-cxrv
VCID-j2su-wjra-tbh1 Improper Neutralization of Formula Elements in a CSV File `Symfony/Serializer` handles serializing and deserializing data structures for Symfony, a PHP framework for web and console applications and a set of reusable PHP components. Symfony is vulnerable to CSV injection, also known as formula injection. In Symfony, maintainers added the opt-in `csv_escape_formulas` option in the `CsvEncoder`, to prefix all cells starting with `=`, `+`, `-` or `@` with a tab `\t`. Since then, OWASP added 2 chars in that list, Tab (0x09) and Carriage return (0x0D). This makes the previous prefix char (Tab `\t`) part of the vulnerable characters, and OWASP suggests using the single quote `'` for prefixing the value. CVE-2021-41270
GHSA-2xhg-w2g5-w95x
VCID-jdsd-3vnz-uygn Argument injection in a MimeTypeGuesser in Symfony An issue was discovered in Symfony 2.8.0 through 2.8.50, 3.4.0 through 3.4.34, 4.2.0 through 4.2.11, and 4.3.0 through 4.3.7. If an application passes unvalidated user input as the file for which MIME type validation should occur, then arbitrary arguments are passed to the underlying file command. This is related to symfony/http-foundation (and symfony/mime in 4.3.x). CVE-2019-18888
GHSA-xhh6-956q-4q69
VCID-pgk7-bnxx-ckeq Prevent cache poisoning via a Response Content-Type header in Symfony Description ----------- When a `Response` does not contain a `Content-Type` header, Symfony falls back to the format defined in the `Accept` header of the request, leading to a possible mismatch between the response's content and `Content-Type` header. When the response is cached, this can lead to a corrupted cache where the cached format is not the right one. Resolution ---------- Symfony does not use the `Accept` header anymore to guess the `Content-Type`. The patch for this issue is available [here](https://github.com/symfony/symfony/commit/dca343442e6a954f96a2609e7b4e9c21ed6d74e6) for the 4.4 branch. Credits ------- I would like to thank Xavier Lacot from JoliCode for reporting & Yonel Ceruto and Tobias Schultze for fixing the issue. CVE-2020-5255
GHSA-mcx4-f5f5-4859
VCID-rgh3-ef8t-k3ec Duplicate This advisory duplicates another. CVE-2022-24894
GHSA-h7vf-5wrv-9fhv
GMS-2023-209
GMS-2023-212
VCID-thtp-ehsj-t3ej Duplicate This advisory duplicates another. CVE-2022-24895
GHSA-3gv2-29qc-v67m
GMS-2023-210
GMS-2023-211
VCID-txk7-krb1-bqd9 RCE in Symfony Description ----------- The `CachingHttpClient` class from the HttpClient Symfony component relies on the `HttpCache` class to handle requests. `HttpCache` uses internal headers like `X-Body-Eval` and `X-Body-File` to control the restoration of cached responses. The class was initially written with surrogate caching and ESI support in mind (all HTTP calls come from a trusted backend in that scenario). But when used by `CachingHttpClient` and if an attacker can control the response for a request being made by the `CachingHttpClient`, remote code execution is possible. Resolution ---------- HTTP headers designed for internal use in `HttpCache` are now stripped from remote responses before being passed to `HttpCache`. The patch for this issue is available [here](https://github.com/symfony/symfony/commit/d9910e0b33a2e0f993abff41c6fbc86951b66d78) for the 4.4 branch. Credits ------- I would like to thank Matthias Pigulla (webfactory GmbH) for reporting and fixing the issue. CVE-2020-15094
GHSA-754h-5r27-7x3r
VCID-ugce-e42m-1fgj Exceptions displayed in non-debug configurations in Symfony Description ----------- When `ErrorHandler` renders an exception HTML page, it uses un-escaped properties from the related Exception class to render the stacktrace. The security issue comes from the fact that the stacktraces were also displayed in non-`debug` environments. Resolution ---------- The `ErrorHandler` class now escapes all properties coming from the related Exception, and the stacktrace is not displayed anymore in non-`debug` environments. The patches for this issue are available [here](https://github.com/symfony/symfony/commit/cf80224589ac05402d4f72f5ddf80900ec94d5ad) and [here](https://github.com/symfony/symfony/commit/629d21b800a15dc649fb0ae9ed7cd9211e7e45db) for branch 4.4. Credits ------- I would like to thank Luka Sikic for reporting & Yonel Ceruto and Jérémy Derussé for fixing the issue. CVE-2020-5274
GHSA-m884-279h-32v2
VCID-wd9z-d4h5-hkax Improper Input Validation in Symfony An issue was discovered in Symfony before 4.2.12 and 4.3.x before 4.3.8. The VarExport component incorrectly escapes strings, allowing some specially crafted ones to escalate to execution of arbitrary PHP code. This is related to symfony/var-exporter. CVE-2019-11325
GHSA-w4rc-rx25-8m86

Date Actor Action Vulnerability Source VulnerableCode Version
2026-04-16T10:16:38.385836+00:00 Debian Importer Affected by VCID-p1dw-w76f-gbfv https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T01:04:31.831677+00:00 Debian Oval Importer Fixing VCID-guzg-x6nu-pygu https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.4.0
2026-04-16T00:04:34.215068+00:00 Debian Oval Importer Fixing VCID-ugce-e42m-1fgj https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.4.0
2026-04-16T00:00:03.346597+00:00 Debian Oval Importer Fixing VCID-9rsx-fscb-6fh3 https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.4.0
2026-04-15T23:50:45.869654+00:00 Debian Oval Importer Fixing VCID-thtp-ehsj-t3ej https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.4.0
2026-04-15T23:22:37.668414+00:00 Debian Oval Importer Fixing VCID-jdsd-3vnz-uygn https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.4.0
2026-04-15T23:01:07.055022+00:00 Debian Oval Importer Fixing VCID-pgk7-bnxx-ckeq https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.4.0
2026-04-15T21:43:38.297379+00:00 Debian Oval Importer Fixing VCID-e71e-d4tr-wqgz https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.4.0
2026-04-15T20:11:11.914689+00:00 Debian Oval Importer Fixing VCID-bdhj-np35-sybt https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.4.0
2026-04-15T19:03:14.166816+00:00 Debian Oval Importer Fixing VCID-9qrr-z4mp-vyfp https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.4.0
2026-04-15T18:33:10.539632+00:00 Debian Oval Importer Fixing VCID-rgh3-ef8t-k3ec https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.4.0
2026-04-15T17:58:00.041847+00:00 Debian Oval Importer Fixing VCID-grxm-dpcv-37d9 https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.4.0
2026-04-15T17:55:40.640088+00:00 Debian Oval Importer Fixing VCID-wd9z-d4h5-hkax https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.4.0
2026-04-15T16:50:08.261866+00:00 Debian Oval Importer Fixing VCID-txk7-krb1-bqd9 https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.4.0
2026-04-15T16:12:35.189055+00:00 Debian Oval Importer Affected by VCID-9bzz-84cq-ykh2 https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.4.0
2026-04-15T15:36:18.734996+00:00 Debian Oval Importer Fixing VCID-j2su-wjra-tbh1 https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.4.0
2026-04-15T15:26:17.581670+00:00 Debian Oval Importer Affected by VCID-c8ar-82sr-fqej https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.4.0
2026-04-13T06:54:49.368397+00:00 Debian Importer Affected by VCID-p1dw-w76f-gbfv https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-12T00:36:35.416191+00:00 Debian Oval Importer Fixing VCID-guzg-x6nu-pygu https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.3.0
2026-04-11T23:38:38.135899+00:00 Debian Oval Importer Fixing VCID-ugce-e42m-1fgj https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.3.0
2026-04-11T23:34:15.985105+00:00 Debian Oval Importer Fixing VCID-9rsx-fscb-6fh3 https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.3.0
2026-04-11T23:25:10.772561+00:00 Debian Oval Importer Fixing VCID-thtp-ehsj-t3ej https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.3.0
2026-04-11T22:58:08.379435+00:00 Debian Oval Importer Fixing VCID-jdsd-3vnz-uygn https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.3.0
2026-04-11T22:37:21.062198+00:00 Debian Oval Importer Fixing VCID-pgk7-bnxx-ckeq https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.3.0
2026-04-11T21:22:21.538779+00:00 Debian Oval Importer Fixing VCID-e71e-d4tr-wqgz https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.3.0
2026-04-11T19:52:53.902062+00:00 Debian Oval Importer Fixing VCID-bdhj-np35-sybt https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.3.0
2026-04-11T18:47:14.237621+00:00 Debian Oval Importer Fixing VCID-9qrr-z4mp-vyfp https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.3.0
2026-04-11T18:17:55.674767+00:00 Debian Oval Importer Fixing VCID-rgh3-ef8t-k3ec https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.3.0
2026-04-11T17:43:51.885256+00:00 Debian Oval Importer Fixing VCID-grxm-dpcv-37d9 https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.3.0
2026-04-11T17:41:35.322488+00:00 Debian Oval Importer Fixing VCID-wd9z-d4h5-hkax https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.3.0
2026-04-11T16:36:54.847608+00:00 Debian Oval Importer Fixing VCID-txk7-krb1-bqd9 https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.3.0
2026-04-11T16:00:00.255042+00:00 Debian Oval Importer Affected by VCID-9bzz-84cq-ykh2 https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.3.0
2026-04-11T15:24:14.823415+00:00 Debian Oval Importer Fixing VCID-j2su-wjra-tbh1 https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.3.0
2026-04-11T15:14:25.125361+00:00 Debian Oval Importer Affected by VCID-c8ar-82sr-fqej https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.3.0
2026-04-09T00:06:39.535254+00:00 Debian Oval Importer Fixing VCID-guzg-x6nu-pygu https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.1.0
2026-04-08T23:11:10.750837+00:00 Debian Oval Importer Fixing VCID-ugce-e42m-1fgj https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.1.0
2026-04-08T23:06:58.471164+00:00 Debian Oval Importer Fixing VCID-9rsx-fscb-6fh3 https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.1.0
2026-04-08T22:58:17.579669+00:00 Debian Oval Importer Fixing VCID-thtp-ehsj-t3ej https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.1.0
2026-04-08T22:32:23.381385+00:00 Debian Oval Importer Fixing VCID-jdsd-3vnz-uygn https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.1.0
2026-04-08T22:12:38.530441+00:00 Debian Oval Importer Fixing VCID-pgk7-bnxx-ckeq https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.1.0
2026-04-08T21:01:01.030069+00:00 Debian Oval Importer Fixing VCID-e71e-d4tr-wqgz https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.1.0
2026-04-08T19:35:09.009342+00:00 Debian Oval Importer Fixing VCID-bdhj-np35-sybt https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.1.0
2026-04-08T18:35:52.040738+00:00 Debian Importer Affected by VCID-p1dw-w76f-gbfv https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-08T18:32:13.852851+00:00 Debian Oval Importer Fixing VCID-9qrr-z4mp-vyfp https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.1.0
2026-04-08T18:04:04.343900+00:00 Debian Oval Importer Fixing VCID-rgh3-ef8t-k3ec https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.1.0
2026-04-08T17:31:11.634575+00:00 Debian Oval Importer Fixing VCID-grxm-dpcv-37d9 https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.1.0
2026-04-08T17:28:53.836989+00:00 Debian Oval Importer Fixing VCID-wd9z-d4h5-hkax https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.1.0
2026-04-08T16:27:41.541439+00:00 Debian Oval Importer Fixing VCID-txk7-krb1-bqd9 https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.1.0
2026-04-08T15:53:04.054610+00:00 Debian Oval Importer Affected by VCID-9bzz-84cq-ykh2 https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.1.0
2026-04-08T15:18:46.263292+00:00 Debian Oval Importer Fixing VCID-j2su-wjra-tbh1 https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.1.0
2026-04-08T15:09:18.878013+00:00 Debian Oval Importer Affected by VCID-c8ar-82sr-fqej https://www.debian.org/security/oval/oval-definitions-bullseye.xml.bz2 38.1.0