Staging Environment: Content and features may be unstable or change without notice.
Search for packages
Package details: pkg:composer/symfony/symfony@2.0.14
purl pkg:composer/symfony/symfony@2.0.14
Next non-vulnerable version 5.4.51
Latest non-vulnerable version 8.0.5
Risk 4.0
Vulnerabilities affecting this package (36)
Vulnerability Summary Fixed by
VCID-23wm-y6hh-hfd3
Aliases:
CVE-2012-6431
GHSA-83c3-qx27-2rwr
Routes behind a firewall are accessible even when not logged in Symfony does not process URL encoded data consistently within the Routing and Security components, which allows remote attackers to bypass intended URI restrictions via a doubly encoded string.
2.0.19
Affected by 30 other vulnerabilities.
VCID-2hua-7wbd-tqbx
Aliases:
CVE-2018-11386
GHSA-r2rq-3h56-fqm4
Insufficient Session Expiration The `PDOSessionHandler` class allows storing sessions on a PDO connection. Under some configurations and with a well-crafted payload, it was possible to do a denial of service on a Symfony application without too much resources.
2.7.48
Affected by 22 other vulnerabilities.
2.8.41
Affected by 21 other vulnerabilities.
3.3.17
Affected by 27 other vulnerabilities.
3.4.11
Affected by 21 other vulnerabilities.
4.0.11
Affected by 22 other vulnerabilities.
VCID-446x-j2gr-f3a2
Aliases:
GHSA-vfm6-r2gc-pwww
Symfony2 security issue when the trust proxy mode is enabled An application is vulnerable if it uses the client IP address as returned by the Request::getClientIp() method for sensitive decisions like IP based access control. To fix this security issue, the following changes have been made to all versions of Symfony2: A new Request::setTrustedProxies() method has been introduced and should be used intead of Request::trustProxyData() to enable the trust proxy mode. It takes an array of trusted proxy IP addresses as its argument: ``` // before (probably in your front controller script) Request::trustProxyData(); // after Request::setTrustedProxies(array('1.1.1.1')); // 1.1.1.1 being the IP address of a trusted reverse proxy ``` The Request::trustProxyData() method has been deprecated (when used, it automatically trusts the latest proxy in the chain -- which is the current remote address): ``` Request::trustProxyData(); // is equivalent to Request::setTrustedProxies(array($request->server->get('REMOTE_ADDR'))); ``` We encourage all Symfony2 users to upgrade as soon as possible. It you don't want to upgrade to the latest version yet, you can also apply the following patches: - [Patch](https://github.com/symfony/symfony/compare/fc89d6b...9ce892c.patch) for Symfony 2.0.19 - [Patch](https://github.com/symfony/symfony/compare/922c201...e5536f0.patch) for Symfony 2.1.4
2.0.19
Affected by 30 other vulnerabilities.
2.1.4
Affected by 29 other vulnerabilities.
VCID-4num-z8cg-83gt
Aliases:
CVE-2024-51736
GHSA-qq5c-677p-737q
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.
5.4.46
Affected by 2 other vulnerabilities.
6.0.0-BETA1
Affected by 0 other vulnerabilities.
6.4.14
Affected by 2 other vulnerabilities.
7.0.0-BETA1
Affected by 0 other vulnerabilities.
7.1.7
Affected by 1 other vulnerability.
7.2.0-BETA1
Affected by 1 other vulnerability.
VCID-556v-rym3-6yax
Aliases:
CVE-2018-11406
GHSA-g4g7-q726-v5hg
Cross-Site Request Forgery (CSRF) By default, a user's session is invalidated when the user is logged out. This behavior can be disabled through the `invalidate_session` option. In this case, CSRF tokens were not erased during logout which allowed for CSRF token fixation.
2.7.48
Affected by 22 other vulnerabilities.
2.8.41
Affected by 21 other vulnerabilities.
3.3.17
Affected by 27 other vulnerabilities.
3.4.11
Affected by 21 other vulnerabilities.
4.0.11
Affected by 22 other vulnerabilities.
VCID-6cea-up73-y3hn
Aliases:
CVE-2014-6061
GHSA-h7v2-2qwg-h829
Improper Authorization Security issue when parsing the Authorization header.
2.3.19
Affected by 24 other vulnerabilities.
2.4.9
Affected by 24 other vulnerabilities.
2.5.0-BETA1
Affected by 24 other vulnerabilities.
2.5.4
Affected by 24 other vulnerabilities.
VCID-6z5x-uwjt-uueq
Aliases:
CVE-2014-6072
GHSA-v35g-4rrw-h4fw
Cross-Site Request Forgery (CSRF)Cross-Site Request Forgery (CSRF) CSRF vulnerability in the Web Profiler.
2.3.19
Affected by 24 other vulnerabilities.
2.4.9
Affected by 24 other vulnerabilities.
2.5.0-BETA1
Affected by 24 other vulnerabilities.
2.5.4
Affected by 24 other vulnerabilities.
VCID-71vh-7wte-kfcx
Aliases:
CVE-2018-11385
GHSA-g4rg-rw65-8hfg
Session Fixation A session fixation vulnerability within the `Guard` login feature may allow an attacker to impersonate a victim towards the web application if the session id value was previously known to the attacker.
2.7.48
Affected by 22 other vulnerabilities.
2.8.41
Affected by 21 other vulnerabilities.
3.3.17
Affected by 27 other vulnerabilities.
3.4.11
Affected by 21 other vulnerabilities.
4.0.11
Affected by 22 other vulnerabilities.
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.46
Affected by 2 other vulnerabilities.
6.0.0-BETA1
Affected by 0 other vulnerabilities.
6.4.14
Affected by 2 other vulnerabilities.
7.0.0-BETA1
Affected by 0 other vulnerabilities.
7.1.7
Affected by 1 other vulnerability.
7.2.0-BETA1
Affected by 1 other vulnerability.
VCID-ahhz-bs6u-f3bc
Aliases:
CVE-2014-5245
GHSA-wvjv-p5rr-mmqm
Improper Access Control Direct access of ESI URLs behind a trusted proxy.
2.3.19
Affected by 24 other vulnerabilities.
2.4.9
Affected by 24 other vulnerabilities.
2.5.0-BETA1
Affected by 24 other vulnerabilities.
2.5.4
Affected by 24 other vulnerabilities.
VCID-bdhj-np35-sybt
Aliases:
CVE-2023-46734
GHSA-q847-2q57-wmr3
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.
4.4.51
Affected by 6 other vulnerabilities.
5.0.0-BETA1
Affected by 7 other vulnerabilities.
5.4.31
Affected by 7 other vulnerabilities.
6.0.0-BETA1
Affected by 0 other vulnerabilities.
6.3.8
Affected by 7 other vulnerabilities.
6.4.0-BETA1
Affected by 7 other vulnerabilities.
VCID-bhfu-7788-fbhc
Aliases:
CVE-2018-14773
GHSA-8wgj-6wx8-h5hq
URL Rewrite vulnerability An issue in Symfony arises from support for a (legacy) IIS header that lets users override the path in the request URL via the `X-Original-URL` or `X-Rewrite-URL` HTTP request header. These headers are designed for IIS support, but it's not verified that the server is in fact running IIS, which means anybody who can send these requests to an application can trigger this. This affects `\Symfony\Component\HttpFoundation\Request::prepareRequestUri()` where `X-Original-URL` and `X_REWRITE_URL` are both used. The fix drops support for these methods so that they cannot be used as attack vectors such as web cache poisoning.
2.7.49
Affected by 18 other vulnerabilities.
2.8.44
Affected by 19 other vulnerabilities.
3.3.18
Affected by 21 other vulnerabilities.
3.4.14
Affected by 19 other vulnerabilities.
4.0.14
Affected by 20 other vulnerabilities.
4.1.3
Affected by 22 other vulnerabilities.
VCID-bny7-h1nn-bkbc
Aliases:
CVE-2013-1348
GHSA-2r5h-6r7v-5m7c
Code Injection The `Yaml::parse` function in Symfony allows remote attackers to execute arbitrary PHP code via a PHP file.
2.0.22
Affected by 27 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.43
Affected by 6 other vulnerabilities.
6.4.11
Affected by 6 other vulnerabilities.
7.1.4
Affected by 5 other vulnerabilities.
VCID-d1kp-7aht-9qa2
Aliases:
CVE-2015-2308
GHSA-5c58-w9xc-qcj9
Esi Code Injection Applications with ESI support (and SSI support as of Symfony ) enabled and using the Symfony built-in reverse proxy (the `Symfony\Component\HttpKernel\HttpCache` class) are vulnerable to PHP code injection; a malicious user can inject PHP code that will be executed by the server.
2.3.27
Affected by 22 other vulnerabilities.
2.5.11
Affected by 22 other vulnerabilities.
2.6.6
Affected by 21 other vulnerabilities.
VCID-hzwd-mq3r-qfcb
Aliases:
CVE-2013-5958
GHSA-cr49-fx2v-9p57
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.
2.0.25
Affected by 24 other vulnerabilities.
2.1.13
Affected by 24 other vulnerabilities.
2.2.9
Affected by 25 other vulnerabilities.
2.3.6
Affected by 28 other vulnerabilities.
VCID-jdsd-3vnz-uygn
Aliases:
CVE-2019-18888
GHSA-xhh6-956q-4q69
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).
2.8.52
Affected by 10 other vulnerabilities.
3.4.35
Affected by 10 other vulnerabilities.
4.2.12
Affected by 12 other vulnerabilities.
4.3.8
Affected by 12 other vulnerabilities.
VCID-jjqk-u4vs-tbba
Aliases:
CVE-2013-1397
GHSA-7w53-hfpw-rg3g
Symfony Arbitrary PHP code Execution Symfony 2.0.x before 2.0.22, 2.1.x before 2.1.7, and 2.2.x remote attackers to execute arbitrary PHP code via a serialized PHP object to the (1) Yaml::parse or (2) Yaml\Parser::parse function, a different vulnerability than CVE-2013-1348.
2.0.22
Affected by 27 other vulnerabilities.
2.1.7
Affected by 27 other vulnerabilities.
2.2.0-BETA2
Affected by 24 other vulnerabilities.
VCID-k37h-bhh2-myaj
Aliases:
GHSA-q2gc-gg3x-7942
Symfony XML Entity Expansion security vulnerability Symfony 2.0.11 carried a [similar] XXE security fix, however, on review of ZF2 I also noted a vulnerability to XML Entity Expansion (XEE) attacks whereby all extensions making use of libxml2 have no defense against XEE Quadratic Blowup Attacks. The vulnerability is a function of there being no current method of disabling custom entities in PHP (i.e. defined internal to the XML document without using external entities). In a QBA, a long entity can be defined and then referred to multiple times in document elements, creating a memory sink with which Denial Of Service attacks against a host's RAM can be mounted. The use of the LIBXML_NOENT or equivalent option in a dependent extension amplified the impact (it doesn't actually mean "No Entities"). In addition, libxml2's innate defense against the related Exponential or Billion Laugh's XEE attacks is active only so long as the LIBXML_PARSEHUGE is NOT set (it disables libxml2's hardcoded entity recursion limit). No instances of these two options were noted, but it's worth referencing for the future. Consider this (non-fatal) example: <?xml version="1.0"?> <!DOCTYPE data [<!ENTITY a "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa">]> <data>&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;&a;</data> Increase the length of entity, and entity count to a few hundred, and peak memory usage will waste no time spiking the moment the nodeValue for is accessed since the entities will then be expanded by a simple multiplier effect. No external entities required. ... This can be used in combination with the usual XXE defense of calling libxml_disable_entity_loader(TRUE) and, optionally, the LIBXML_NONET option (should local filesystem access be allowable). The DOCTYPE may be removed instead of rejecting the XML outright but this would likely result in other problems with the unresolved entities.
2.0.17
Affected by 34 other vulnerabilities.
VCID-k8ze-h7fe-fkg2
Aliases:
CVE-2015-8766
GHSA-4c5w-qqfg-grf3
Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') Multiple cross-site scripting (XSS) vulnerabilities in content/content.systempreferences.php in Symphony CMS before 2.6.4 allow remote attackers to inject arbitrary web script or HTML via the (1) email_sendmail[from_name], (2) email_sendmail[from_address], (3) email_smtp[from_name], (4) email_smtp[from_address], (5) email_smtp[host], (6) email_smtp[port], (7) jit_image_manipulation[trusted_external_sites], or (8) maintenance_mode[ip_allow list] parameters to system/preferences.
2.6.4
Affected by 23 other vulnerabilities.
VCID-kgu6-gj5d-7bfx
Aliases:
CVE-2026-24739
GHSA-r39x-jcww-82v6
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.
5.4.51
Affected by 0 other vulnerabilities.
6.0.0-BETA1
Affected by 0 other vulnerabilities.
6.4.33
Affected by 0 other vulnerabilities.
7.0.0-BETA1
Affected by 0 other vulnerabilities.
7.3.11
Affected by 0 other vulnerabilities.
7.4.0-BETA1
Affected by 0 other vulnerabilities.
7.4.5
Affected by 0 other vulnerabilities.
8.0.0-BETA1
Affected by 0 other vulnerabilities.
8.0.5
Affected by 0 other vulnerabilities.
VCID-nsk8-bk5e-tbfh
Aliases:
CVE-2016-4423
GHSA-whgv-8cg3-7hcm
CVE-2016-4423: Large username storage in session The attemptAuthentication function in `Component/Security/Http/Firewall/UsernamePasswordFormAuthenticationListener.php` does not limit the length of a username stored in a session, which allows remote attackers to cause a denial of service (session storage consumption) via a series of authentication attempts with long, non-existent usernames.
2.3.41
Affected by 17 other vulnerabilities.
2.7.13
Affected by 25 other vulnerabilities.
2.8.6
Affected by 30 other vulnerabilities.
3.0.6
Affected by 26 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.50
Affected by 1 other vulnerability.
6.0.0-BETA1
Affected by 0 other vulnerabilities.
6.4.29
Affected by 1 other vulnerability.
7.0.0-BETA1
Affected by 0 other vulnerabilities.
7.3.7
Affected by 1 other vulnerability.
7.4.0-BETA1
Affected by 0 other vulnerabilities.
VCID-qty4-cyfa-rugw
Aliases:
CVE-2014-5244
GHSA-v77v-x634-9m56
Uncontrolled Resource Consumption Denial of service with a malicious HTTP Host header.
2.3.19
Affected by 24 other vulnerabilities.
2.4.9
Affected by 24 other vulnerabilities.
2.5.0-BETA1
Affected by 24 other vulnerabilities.
2.5.4
Affected by 24 other vulnerabilities.
VCID-qwcj-hq3g-2qd7
Aliases:
CVE-2022-23601
GHSA-vvmr-8829-6whx
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.
5.3.15
Affected by 10 other vulnerabilities.
5.4.4
Affected by 10 other vulnerabilities.
6.0.4
Affected by 9 other vulnerabilities.
VCID-rgh3-ef8t-k3ec
Aliases:
CVE-2022-24894
GHSA-h7vf-5wrv-9fhv
GMS-2023-209
GMS-2023-212
Duplicate This advisory duplicates another.
4.4.50
Affected by 7 other vulnerabilities.
5.0.0-BETA1
Affected by 7 other vulnerabilities.
5.4.20
Affected by 8 other vulnerabilities.
6.0.0-BETA1
Affected by 0 other vulnerabilities.
6.0.20
Affected by 7 other vulnerabilities.
6.1.0-BETA1
Affected by 7 other vulnerabilities.
6.1.12
Affected by 7 other vulnerabilities.
6.2.0-BETA1
Affected by 7 other vulnerabilities.
6.2.6
Affected by 8 other vulnerabilities.
VCID-rxbg-gmn6-kbeq
Aliases:
CVE-2012-6432
GHSA-89cp-fvcc-hxh7
Code Injection Symfony, when the internal routes configuration is enabled, allows remote attackers to access arbitrary services via vectors involving a URI beginning with a `/_internal` substring.
2.0.20
Affected by 29 other vulnerabilities.
2.1.5
Affected by 28 other vulnerabilities.
VCID-rztj-ug83-dyga
Aliases:
CVE-2013-4752
GHSA-22pv-7v9j-hqxp
Information Exporure `Request::getHost()` poisoning vulnerability in Symfony.
2.0.24
Affected by 25 other vulnerabilities.
2.1.12
Affected by 25 other vulnerabilities.
2.2.5
Affected by 26 other vulnerabilities.
2.3.3
Affected by 29 other vulnerabilities.
VCID-sfzy-423b-j3b4
Aliases:
CVE-2013-4751
GHSA-q8j7-fjh7-25v5
Symfony collectionCascaded and collectionCascadedDeeply fields security bypass When using the Validator component, if `Symfony\\Component\\Validator\\Mapping\\Cache\\ApcCache` is enabled (or any other cache implementing `Symfony\\Component\\Validator\\Mapping\\Cache\\CacheInterface`), some information is lost during serialization (the `collectionCascaded` and the `collectionCascadedDeeply` fields). As a consequence, arrays or traversable objects stored in fields using the `@Valid` constraint are not traversed by the validator as soon as the validator configuration is loaded from the cache.
2.0.24
Affected by 25 other vulnerabilities.
2.1.12
Affected by 25 other vulnerabilities.
2.2.5
Affected by 26 other vulnerabilities.
2.3.3
Affected by 29 other vulnerabilities.
VCID-skth-cf6d-3ubr
Aliases:
CVE-2017-18343
Cross-site Scripting The debug handler in Symfony has an XSS via an array key during exception pretty printing in `ExceptionHandler.php`, as demonstrated by a `/_debugbar/open?op`=get` URI.
2.7.33
Affected by 24 other vulnerabilities.
2.8.26
Affected by 29 other vulnerabilities.
3.2.13
Affected by 30 other vulnerabilities.
3.3.6
Affected by 31 other vulnerabilities.
VCID-srrc-wxew-1fc6
Aliases:
CVE-2014-4931
GHSA-wfv7-5x33-v22h
Code Injection Code injection in the way Symfony implements translation caching in FrameworkBundle.
2.3.19
Affected by 24 other vulnerabilities.
2.4.9
Affected by 24 other vulnerabilities.
2.5.0-BETA1
Affected by 24 other vulnerabilities.
2.5.4
Affected by 24 other vulnerabilities.
VCID-thtp-ehsj-t3ej
Aliases:
CVE-2022-24895
GHSA-3gv2-29qc-v67m
GMS-2023-210
GMS-2023-211
Duplicate This advisory duplicates another.
4.4.50
Affected by 7 other vulnerabilities.
5.0.0-BETA1
Affected by 7 other vulnerabilities.
5.4.20
Affected by 8 other vulnerabilities.
6.0.0-BETA1
Affected by 0 other vulnerabilities.
6.0.20
Affected by 7 other vulnerabilities.
6.1.0-BETA1
Affected by 7 other vulnerabilities.
6.1.12
Affected by 7 other vulnerabilities.
6.2.0-BETA1
Affected by 7 other vulnerabilities.
6.2.6
Affected by 8 other vulnerabilities.
VCID-u84h-sr6a-4uc7
Aliases:
2012-11-29
Information Exposure Request::getClientIp() when the trust proxy mode is enabled.
2.0.19
Affected by 30 other vulnerabilities.
2.1.0-BETA1
Affected by 24 other vulnerabilities.
2.1.4
Affected by 29 other vulnerabilities.
VCID-unuf-vj1b-qbhr
Aliases:
2012-08-28
Improper Restriction of XML External Entity Reference Security fixes related to the way XML is handled in symfony.
2.0.17
Affected by 34 other vulnerabilities.
2.1.0-BETA1
Affected by 24 other vulnerabilities.
VCID-wwhm-mrr3-v7h3
Aliases:
CVE-2015-2309
GHSA-p684-f7fh-jv2j
Unsafe methods in the Request class The `Symfony\Component\HttpFoundation\Request` class provides a mechanism that ensures it does not trust HTTP header values coming from a "non-trusted" client. Unfortunately, it assumes that the remote address is always a trusted client if at least one trusted proxy is involved in the request; this allows a man-in-the-middle attack between the latest trusted proxy and the web server. The following methods are impacted: `getPort()`, `isSecure()`, `getHost()` and `getClientIps()`.
2.3.27
Affected by 22 other vulnerabilities.
2.4.0-BETA1
Affected by 22 other vulnerabilities.
2.5.11
Affected by 22 other vulnerabilities.
2.6.0-BETA1
Affected by 21 other vulnerabilities.
2.6.6
Affected by 21 other vulnerabilities.
VCID-xmur-ps51-myfu
Aliases:
GHSA-hx53-jchx-cr52
Symfony2 improper IP based access control Damien Tournoud, from the Drupal security team, contacted us two days ago about a security issue in the Request::getClientIp() method when the trust proxy mode is enabled (Request::trustProxyData()). An application is vulnerable if it uses the client IP address as returned by the Request::getClientIp() method for sensitive decisions like IP based access control. To fix this security issue, the following changes have been made to all versions of Symfony2: A new Request::setTrustedProxies() method has been introduced and should be used intead of Request::trustProxyData() to enable the trust proxy mode. It takes an array of trusted proxy IP addresses as its argument: ``` // before (probably in your front controller script) Request::trustProxyData(); ``` ``` // after Request::setTrustedProxies(array('1.1.1.1')); // 1.1.1.1 being the IP address of a trusted reverse proxy ``` The Request::trustProxyData() method has been deprecated (when used, it automatically trusts the latest proxy in the chain -- which is the current remote address): ``` Request::trustProxyData(); ``` ``` // is equivalent to Request::setTrustedProxies(array($request->server->get('REMOTE_ADDR'))); ``` We encourage all Symfony2 users to upgrade as soon as possible. It you don't want to upgrade to the latest version yet, you can also apply the following patches: [Patch](https://github.com/symfony/symfony/compare/fc89d6b...9ce892c.patch) for Symfony 2.0.19 [Patch](https://github.com/symfony/symfony/compare/922c201...e5536f0.patch) for Symfony 2.1.4
2.0.19
Affected by 30 other vulnerabilities.
2.1.4
Affected by 29 other vulnerabilities.
Vulnerabilities fixed by this package (0)
Vulnerability Summary Aliases
This package is not known to fix vulnerabilities.

Date Actor Action Vulnerability Source VulnerableCode Version
2026-04-17T00:13:35.199526+00:00 GitLab Importer Affected by VCID-kgu6-gj5d-7bfx https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2026-24739.yml 38.4.0
2026-04-16T23:51:46.861518+00:00 GitLab Importer Affected by VCID-p1dw-w76f-gbfv https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2025-64500.yml 38.4.0
2026-04-16T23:13:28.651613+00:00 GitLab Importer Affected by VCID-c8ar-82sr-fqej https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2024-50343.yml 38.4.0
2026-04-16T23:13:20.907668+00:00 GitLab Importer Affected by VCID-9bzz-84cq-ykh2 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2024-50345.yml 38.4.0
2026-04-16T23:13:05.884879+00:00 GitLab Importer Affected by VCID-4num-z8cg-83gt https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2024-51736.yml 38.4.0
2026-04-16T23:00:04.862852+00:00 GitLab Importer Affected by VCID-446x-j2gr-f3a2 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/GHSA-vfm6-r2gc-pwww.yml 38.4.0
2026-04-16T23:00:04.587336+00:00 GitLab Importer Affected by VCID-k37h-bhh2-myaj https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/GHSA-q2gc-gg3x-7942.yml 38.4.0
2026-04-16T23:00:00.758347+00:00 GitLab Importer Affected by VCID-xmur-ps51-myfu https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/GHSA-hx53-jchx-cr52.yml 38.4.0
2026-04-16T22:42:55.683847+00:00 GitLab Importer Affected by VCID-bdhj-np35-sybt https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2023-46734.yml 38.4.0
2026-04-16T22:21:00.562589+00:00 GitLab Importer Affected by VCID-rgh3-ef8t-k3ec https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2022-24894.yml 38.4.0
2026-04-16T22:20:51.965046+00:00 GitLab Importer Affected by VCID-thtp-ehsj-t3ej https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2022-24895.yml 38.4.0
2026-04-16T21:53:46.011373+00:00 GitLab Importer Affected by VCID-jjqk-u4vs-tbba https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2013-1397.yml 38.4.0
2026-04-16T21:47:34.464443+00:00 GitLab Importer Affected by VCID-k8ze-h7fe-fkg2 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2015-8766.yml 38.4.0
2026-04-16T21:38:16.810785+00:00 GitLab Importer Affected by VCID-qwcj-hq3g-2qd7 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2022-23601.yml 38.4.0
2026-04-16T20:58:52.957865+00:00 GitLab Importer Affected by VCID-jdsd-3vnz-uygn https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2019-18888.yml 38.4.0
2026-04-16T20:58:21.248666+00:00 GitLab Importer Affected by VCID-sfzy-423b-j3b4 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2013-4751.yml 38.4.0
2026-04-16T20:46:59.081118+00:00 GitLab Importer Affected by VCID-bhfu-7788-fbhc https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2018-14773.yml 38.4.0
2026-04-16T20:46:27.067219+00:00 GitLab Importer Affected by VCID-skth-cf6d-3ubr https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2017-18343.yml 38.4.0
2026-04-16T20:45:27.184472+00:00 GitLab Importer Affected by VCID-556v-rym3-6yax https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2018-11406.yml 38.4.0
2026-04-16T20:45:25.058622+00:00 GitLab Importer Affected by VCID-2hua-7wbd-tqbx https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2018-11386.yml 38.4.0
2026-04-16T20:45:15.935852+00:00 GitLab Importer Affected by VCID-71vh-7wte-kfcx https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2018-11385.yml 38.4.0
2026-04-16T20:34:07.129144+00:00 GitLab Importer Affected by VCID-nsk8-bk5e-tbfh https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2016-4423.yml 38.4.0
2026-04-16T20:32:31.444228+00:00 GitLab Importer Affected by VCID-d1kp-7aht-9qa2 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2015-2308.yml 38.4.0
2026-04-16T20:32:22.560319+00:00 GitLab Importer Affected by VCID-wwhm-mrr3-v7h3 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2015-2309.yml 38.4.0
2026-04-16T20:32:06.818115+00:00 GitLab Importer Affected by VCID-hzwd-mq3r-qfcb https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2013-5958.yml 38.4.0
2026-04-16T20:31:52.416553+00:00 GitLab Importer Affected by VCID-ahhz-bs6u-f3bc https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2014-5245.yml 38.4.0
2026-04-16T20:31:51.475819+00:00 GitLab Importer Affected by VCID-qty4-cyfa-rugw https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2014-5244.yml 38.4.0
2026-04-16T20:31:50.534641+00:00 GitLab Importer Affected by VCID-6cea-up73-y3hn https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2014-6061.yml 38.4.0
2026-04-16T20:31:49.161836+00:00 GitLab Importer Affected by VCID-6z5x-uwjt-uueq https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2014-6072.yml 38.4.0
2026-04-16T20:31:46.307431+00:00 GitLab Importer Affected by VCID-srrc-wxew-1fc6 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2014-4931.yml 38.4.0
2026-04-16T20:31:37.910456+00:00 GitLab Importer Affected by VCID-bny7-h1nn-bkbc https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2013-1348.yml 38.4.0
2026-04-16T20:30:46.642557+00:00 GitLab Importer Affected by VCID-rztj-ug83-dyga https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2013-4752.yml 38.4.0
2026-04-16T20:30:15.068461+00:00 GitLab Importer Affected by VCID-rxbg-gmn6-kbeq https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2012-6432.yml 38.4.0
2026-04-16T20:30:14.842916+00:00 GitLab Importer Affected by VCID-23wm-y6hh-hfd3 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2012-6431.yml 38.4.0
2026-04-16T20:30:13.051112+00:00 GitLab Importer Affected by VCID-u84h-sr6a-4uc7 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/2012-11-29.yml 38.4.0
2026-04-16T20:30:10.120906+00:00 GitLab Importer Affected by VCID-unuf-vj1b-qbhr https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/2012-08-28.yml 38.4.0
2026-04-12T01:37:28.815214+00:00 GitLab Importer Affected by VCID-kgu6-gj5d-7bfx https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2026-24739.yml 38.3.0
2026-04-12T01:13:22.288525+00:00 GitLab Importer Affected by VCID-p1dw-w76f-gbfv https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2025-64500.yml 38.3.0
2026-04-12T00:31:59.656351+00:00 GitLab Importer Affected by VCID-c8ar-82sr-fqej https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2024-50343.yml 38.3.0
2026-04-12T00:31:50.879588+00:00 GitLab Importer Affected by VCID-9bzz-84cq-ykh2 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2024-50345.yml 38.3.0
2026-04-12T00:31:34.080733+00:00 GitLab Importer Affected by VCID-4num-z8cg-83gt https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2024-51736.yml 38.3.0
2026-04-12T00:18:01.415222+00:00 GitLab Importer Affected by VCID-446x-j2gr-f3a2 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/GHSA-vfm6-r2gc-pwww.yml 38.3.0
2026-04-12T00:18:01.217205+00:00 GitLab Importer Affected by VCID-k37h-bhh2-myaj https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/GHSA-q2gc-gg3x-7942.yml 38.3.0
2026-04-12T00:17:58.643943+00:00 GitLab Importer Affected by VCID-xmur-ps51-myfu https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/GHSA-hx53-jchx-cr52.yml 38.3.0
2026-04-12T00:02:28.194183+00:00 GitLab Importer Affected by VCID-bdhj-np35-sybt https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2023-46734.yml 38.3.0
2026-04-11T23:38:59.265085+00:00 GitLab Importer Affected by VCID-rgh3-ef8t-k3ec https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2022-24894.yml 38.3.0
2026-04-11T23:38:49.902325+00:00 GitLab Importer Affected by VCID-thtp-ehsj-t3ej https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2022-24895.yml 38.3.0
2026-04-11T23:09:10.690387+00:00 GitLab Importer Affected by VCID-jjqk-u4vs-tbba https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2013-1397.yml 38.3.0
2026-04-11T23:03:24.678655+00:00 GitLab Importer Affected by VCID-k8ze-h7fe-fkg2 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2015-8766.yml 38.3.0
2026-04-11T22:52:49.938037+00:00 GitLab Importer Affected by VCID-qwcj-hq3g-2qd7 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2022-23601.yml 38.3.0
2026-04-11T22:10:03.846986+00:00 GitLab Importer Affected by VCID-jdsd-3vnz-uygn https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2019-18888.yml 38.3.0
2026-04-11T22:09:30.286040+00:00 GitLab Importer Affected by VCID-sfzy-423b-j3b4 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2013-4751.yml 38.3.0
2026-04-11T21:57:50.265331+00:00 GitLab Importer Affected by VCID-bhfu-7788-fbhc https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2018-14773.yml 38.3.0
2026-04-11T21:57:13.576436+00:00 GitLab Importer Affected by VCID-skth-cf6d-3ubr https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2017-18343.yml 38.3.0
2026-04-11T21:56:13.548469+00:00 GitLab Importer Affected by VCID-556v-rym3-6yax https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2018-11406.yml 38.3.0
2026-04-11T21:56:11.265177+00:00 GitLab Importer Affected by VCID-2hua-7wbd-tqbx https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2018-11386.yml 38.3.0
2026-04-11T21:56:00.605239+00:00 GitLab Importer Affected by VCID-71vh-7wte-kfcx https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2018-11385.yml 38.3.0
2026-04-11T21:44:34.670845+00:00 GitLab Importer Affected by VCID-nsk8-bk5e-tbfh https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2016-4423.yml 38.3.0
2026-04-11T21:42:55.210088+00:00 GitLab Importer Affected by VCID-d1kp-7aht-9qa2 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2015-2308.yml 38.3.0
2026-04-11T21:42:46.432537+00:00 GitLab Importer Affected by VCID-wwhm-mrr3-v7h3 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2015-2309.yml 38.3.0
2026-04-11T21:42:30.200743+00:00 GitLab Importer Affected by VCID-hzwd-mq3r-qfcb https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2013-5958.yml 38.3.0
2026-04-11T21:42:15.439901+00:00 GitLab Importer Affected by VCID-ahhz-bs6u-f3bc https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2014-5245.yml 38.3.0
2026-04-11T21:42:14.374197+00:00 GitLab Importer Affected by VCID-qty4-cyfa-rugw https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2014-5244.yml 38.3.0
2026-04-11T21:42:13.341150+00:00 GitLab Importer Affected by VCID-6cea-up73-y3hn https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2014-6061.yml 38.3.0
2026-04-11T21:42:11.756635+00:00 GitLab Importer Affected by VCID-6z5x-uwjt-uueq https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2014-6072.yml 38.3.0
2026-04-11T21:42:08.563589+00:00 GitLab Importer Affected by VCID-srrc-wxew-1fc6 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2014-4931.yml 38.3.0
2026-04-11T21:41:57.982331+00:00 GitLab Importer Affected by VCID-bny7-h1nn-bkbc https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2013-1348.yml 38.3.0
2026-04-11T21:41:11.165920+00:00 GitLab Importer Affected by VCID-rztj-ug83-dyga https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2013-4752.yml 38.3.0
2026-04-11T21:40:43.209225+00:00 GitLab Importer Affected by VCID-rxbg-gmn6-kbeq https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2012-6432.yml 38.3.0
2026-04-11T21:40:42.976004+00:00 GitLab Importer Affected by VCID-23wm-y6hh-hfd3 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2012-6431.yml 38.3.0
2026-04-11T21:40:41.310195+00:00 GitLab Importer Affected by VCID-u84h-sr6a-4uc7 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/2012-11-29.yml 38.3.0
2026-04-11T21:40:37.894991+00:00 GitLab Importer Affected by VCID-unuf-vj1b-qbhr https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/2012-08-28.yml 38.3.0
2026-04-03T01:46:25.527146+00:00 GitLab Importer Affected by VCID-kgu6-gj5d-7bfx https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2026-24739.yml 38.1.0
2026-04-03T01:22:19.513176+00:00 GitLab Importer Affected by VCID-p1dw-w76f-gbfv https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2025-64500.yml 38.1.0
2026-04-03T00:39:43.697174+00:00 GitLab Importer Affected by VCID-c8ar-82sr-fqej https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2024-50343.yml 38.1.0
2026-04-03T00:39:34.630129+00:00 GitLab Importer Affected by VCID-9bzz-84cq-ykh2 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2024-50345.yml 38.1.0
2026-04-03T00:39:16.707923+00:00 GitLab Importer Affected by VCID-4num-z8cg-83gt https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2024-51736.yml 38.1.0
2026-04-03T00:25:19.276887+00:00 GitLab Importer Affected by VCID-446x-j2gr-f3a2 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/GHSA-vfm6-r2gc-pwww.yml 38.1.0
2026-04-03T00:25:19.010586+00:00 GitLab Importer Affected by VCID-k37h-bhh2-myaj https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/GHSA-q2gc-gg3x-7942.yml 38.1.0
2026-04-03T00:25:15.369017+00:00 GitLab Importer Affected by VCID-xmur-ps51-myfu https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/GHSA-hx53-jchx-cr52.yml 38.1.0
2026-04-03T00:05:27.577180+00:00 GitLab Importer Affected by VCID-bdhj-np35-sybt https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2023-46734.yml 38.1.0
2026-04-02T23:43:12.955748+00:00 GitLab Importer Affected by VCID-rgh3-ef8t-k3ec https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2022-24894.yml 38.1.0
2026-04-02T23:43:04.495333+00:00 GitLab Importer Affected by VCID-thtp-ehsj-t3ej https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2022-24895.yml 38.1.0
2026-04-02T23:17:54.066516+00:00 GitLab Importer Affected by VCID-jjqk-u4vs-tbba https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2013-1397.yml 38.1.0
2026-04-02T23:11:47.171385+00:00 GitLab Importer Affected by VCID-k8ze-h7fe-fkg2 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2015-8766.yml 38.1.0
2026-04-02T23:02:12.760349+00:00 GitLab Importer Affected by VCID-qwcj-hq3g-2qd7 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2022-23601.yml 38.1.0
2026-04-02T22:22:40.082791+00:00 GitLab Importer Affected by VCID-jdsd-3vnz-uygn https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2019-18888.yml 38.1.0
2026-04-02T22:22:08.156473+00:00 GitLab Importer Affected by VCID-sfzy-423b-j3b4 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2013-4751.yml 38.1.0
2026-04-02T22:11:11.814333+00:00 GitLab Importer Affected by VCID-bhfu-7788-fbhc https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2018-14773.yml 38.1.0
2026-04-02T22:10:37.007670+00:00 GitLab Importer Affected by VCID-skth-cf6d-3ubr https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2017-18343.yml 38.1.0
2026-04-02T22:09:38.214806+00:00 GitLab Importer Affected by VCID-556v-rym3-6yax https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2018-11406.yml 38.1.0
2026-04-02T22:09:36.197733+00:00 GitLab Importer Affected by VCID-2hua-7wbd-tqbx https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2018-11386.yml 38.1.0
2026-04-02T22:09:26.942851+00:00 GitLab Importer Affected by VCID-71vh-7wte-kfcx https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2018-11385.yml 38.1.0
2026-04-02T21:58:39.356001+00:00 GitLab Importer Affected by VCID-nsk8-bk5e-tbfh https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2016-4423.yml 38.1.0
2026-04-02T21:57:04.652287+00:00 GitLab Importer Affected by VCID-d1kp-7aht-9qa2 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2015-2308.yml 38.1.0
2026-04-02T21:56:55.542586+00:00 GitLab Importer Affected by VCID-wwhm-mrr3-v7h3 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2015-2309.yml 38.1.0
2026-04-02T21:56:38.682319+00:00 GitLab Importer Affected by VCID-hzwd-mq3r-qfcb https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2013-5958.yml 38.1.0
2026-04-02T21:56:25.005598+00:00 GitLab Importer Affected by VCID-ahhz-bs6u-f3bc https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2014-5245.yml 38.1.0
2026-04-02T21:56:24.057787+00:00 GitLab Importer Affected by VCID-qty4-cyfa-rugw https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2014-5244.yml 38.1.0
2026-04-02T21:56:23.106681+00:00 GitLab Importer Affected by VCID-6cea-up73-y3hn https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2014-6061.yml 38.1.0
2026-04-02T21:56:21.714815+00:00 GitLab Importer Affected by VCID-6z5x-uwjt-uueq https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2014-6072.yml 38.1.0
2026-04-02T21:56:18.836444+00:00 GitLab Importer Affected by VCID-srrc-wxew-1fc6 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2014-4931.yml 38.1.0
2026-04-02T21:56:10.027364+00:00 GitLab Importer Affected by VCID-bny7-h1nn-bkbc https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2013-1348.yml 38.1.0
2026-04-02T21:55:21.152435+00:00 GitLab Importer Affected by VCID-rztj-ug83-dyga https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2013-4752.yml 38.1.0
2026-04-02T21:54:48.926938+00:00 GitLab Importer Affected by VCID-rxbg-gmn6-kbeq https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2012-6432.yml 38.1.0
2026-04-02T21:54:48.695004+00:00 GitLab Importer Affected by VCID-23wm-y6hh-hfd3 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2012-6431.yml 38.1.0
2026-04-02T21:54:47.125926+00:00 GitLab Importer Affected by VCID-u84h-sr6a-4uc7 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/2012-11-29.yml 38.1.0
2026-04-02T21:54:43.977752+00:00 GitLab Importer Affected by VCID-unuf-vj1b-qbhr https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/2012-08-28.yml 38.1.0
2026-04-01T18:06:03.903067+00:00 GitLab Importer Affected by VCID-rgh3-ef8t-k3ec https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2022-24894.yml 38.0.0
2026-04-01T18:05:53.868527+00:00 GitLab Importer Affected by VCID-thtp-ehsj-t3ej https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2022-24895.yml 38.0.0
2026-04-01T17:38:08.906665+00:00 GitLab Importer Affected by VCID-jjqk-u4vs-tbba https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2013-1397.yml 38.0.0
2026-04-01T17:31:40.768637+00:00 GitLab Importer Affected by VCID-k8ze-h7fe-fkg2 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2015-8766.yml 38.0.0
2026-04-01T17:21:02.290572+00:00 GitLab Importer Affected by VCID-qwcj-hq3g-2qd7 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2022-23601.yml 38.0.0
2026-04-01T16:40:26.273497+00:00 GitLab Importer Affected by VCID-jdsd-3vnz-uygn https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2019-18888.yml 38.0.0
2026-04-01T16:39:54.280490+00:00 GitLab Importer Affected by VCID-sfzy-423b-j3b4 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2013-4751.yml 38.0.0
2026-04-01T16:28:33.228649+00:00 GitLab Importer Affected by VCID-bhfu-7788-fbhc https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2018-14773.yml 38.0.0
2026-04-01T16:27:56.834673+00:00 GitLab Importer Affected by VCID-skth-cf6d-3ubr https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2017-18343.yml 38.0.0
2026-04-01T16:26:54.372450+00:00 GitLab Importer Affected by VCID-556v-rym3-6yax https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2018-11406.yml 38.0.0
2026-04-01T16:26:52.171080+00:00 GitLab Importer Affected by VCID-2hua-7wbd-tqbx https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2018-11386.yml 38.0.0
2026-04-01T16:26:40.808882+00:00 GitLab Importer Affected by VCID-71vh-7wte-kfcx https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2018-11385.yml 38.0.0
2026-04-01T16:15:54.871444+00:00 GitLab Importer Affected by VCID-nsk8-bk5e-tbfh https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2016-4423.yml 38.0.0
2026-04-01T16:14:16.280376+00:00 GitLab Importer Affected by VCID-d1kp-7aht-9qa2 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2015-2308.yml 38.0.0
2026-04-01T16:14:06.326457+00:00 GitLab Importer Affected by VCID-wwhm-mrr3-v7h3 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2015-2309.yml 38.0.0
2026-04-01T16:13:49.360811+00:00 GitLab Importer Affected by VCID-hzwd-mq3r-qfcb https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2013-5958.yml 38.0.0
2026-04-01T16:13:35.139815+00:00 GitLab Importer Affected by VCID-ahhz-bs6u-f3bc https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2014-5245.yml 38.0.0
2026-04-01T16:13:34.119751+00:00 GitLab Importer Affected by VCID-qty4-cyfa-rugw https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2014-5244.yml 38.0.0
2026-04-01T16:13:33.019958+00:00 GitLab Importer Affected by VCID-6cea-up73-y3hn https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2014-6061.yml 38.0.0
2026-04-01T16:13:31.428949+00:00 GitLab Importer Affected by VCID-6z5x-uwjt-uueq https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2014-6072.yml 38.0.0
2026-04-01T16:13:28.251679+00:00 GitLab Importer Affected by VCID-srrc-wxew-1fc6 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2014-4931.yml 38.0.0
2026-04-01T16:13:19.511319+00:00 GitLab Importer Affected by VCID-bny7-h1nn-bkbc https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2013-1348.yml 38.0.0
2026-04-01T16:12:36.141420+00:00 GitLab Importer Affected by VCID-rztj-ug83-dyga https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2013-4752.yml 38.0.0
2026-04-01T16:12:07.677058+00:00 GitLab Importer Affected by VCID-rxbg-gmn6-kbeq https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2012-6432.yml 38.0.0
2026-04-01T16:12:07.449507+00:00 GitLab Importer Affected by VCID-23wm-y6hh-hfd3 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/CVE-2012-6431.yml 38.0.0
2026-04-01T16:12:05.775370+00:00 GitLab Importer Affected by VCID-u84h-sr6a-4uc7 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/2012-11-29.yml 38.0.0
2026-04-01T16:12:02.220236+00:00 GitLab Importer Affected by VCID-unuf-vj1b-qbhr https://gitlab.com/gitlab-org/advisories-community/-/blob/main/packagist/symfony/symfony/2012-08-28.yml 38.0.0