CVE-2014-6072
Published:May 14, 2026
Updated:May 14, 2026
All 2.0.X, 2.1.X, 2.2.X, 2.3.X, 2.4.X, and 2.5.X versions of the Symfony WebProfiler bundle are affected by this security issue. This issue has been fixed in Symfony 2.3.19, 2.4.9, and 2.5.4. Note that no fixes are provided for Symfony 2.0, 2.1, and 2.2 as they are not maintained anymore. Description The Symfony Web Profiler is a great development tool, but it should not be enabled on production servers. If it is enabled in production, it must be properly secured so that only authorized people have access to it. Developers must be very cautious about this as the Web Profiler gives many sensitive information about a Symfony project and any attackers can exploit many of them. Just to name a few sensitive information: user logins, user cookies, executed SQL statements, ... That being said, the import/export feature of the web profiler is exploitable even if the Web Profiler is secured as the form to import a profiler is not protected against CSRF attacks. Combined with the fact that profiles are imported as a PHP serialized string, it makes your application vulnerable to code injection. Resolution As the import/export feature of the Web Profiler is not that useful, and because PHP "serialize/unserialize" functions have a long history of vulnerabilities, I decided to remove this feature from the Web interface and move it as CLI commands. If you were relying on this feature, you now need to use the "profiler:import" and "profiler:export" Symfony commands provided by the WebProfiler bundle from the command line interface. Those commands are not enabled by default and must be activated explicitly. For Symfony 2.4+, you can import them in your "app/config.yml" configuration file: import: - { resource: "%kernel.root_dir%/../vendor/symfony/symfony/src/Symfony/Bundle/WebProfilerBundle/Resources/config/commands.xml" } For Symfony 2.3, you can use the following snippet of code in "app/console": $kernel = new AppKernel($env, $debug); $application = new Application($kernel); if ($kernel->getContainer()->has('profiler')) { $profiler = $kernel->getContainer()->get('profiler'); $application->add(new ImportCommand($profiler)); $application->add(new ExportCommand($profiler)); } $application->run($input); At this point, I want to reiterate that you should never enable the Symfony Web Profiler on your production servers as this is a development tool. And if you need to enable it, double-check that it is properly secured. The patch for this issue is available here: https://github.com/symfony/symfony/pull/11832
Affected Packages
symfony/web-profiler-bundle (PHP):
Affected version(s) >=v2.0.7 <v2.3.19Fix Suggestion:
Update to version v2.3.19symfony/symfony (PHP):
Affected version(s) >=v2.4.0 <v2.4.9Fix Suggestion:
Update to version v2.4.9symfony/web-profiler-bundle (PHP):
Affected version(s) >=v2.4.0 <v2.4.9Fix Suggestion:
Update to version v2.4.9symfony/symfony (PHP):
Affected version(s) >=v2.5.0 <v2.5.4Fix Suggestion:
Update to version v2.5.4symfony/web-profiler-bundle (PHP):
Affected version(s) >=v2.5.0 <v2.5.4Fix Suggestion:
Update to version v2.5.4symfony/symfony (PHP):
Affected version(s) >=v2.0.0 <v2.3.19Fix Suggestion:
Update to version v2.3.19Related Resources (6)
Do you need more information?
Contact UsCVSS v4
Base Score:
5.3
Attack Vector
NETWORK
Attack Complexity
LOW
Attack Requirements
NONE
Privileges Required
NONE
User Interaction
PASSIVE
Vulnerable System Confidentiality
LOW
Vulnerable System Integrity
LOW
Vulnerable System Availability
LOW
Subsequent System Confidentiality
LOW
Subsequent System Integrity
LOW
Subsequent System Availability
LOW
CVSS v3
Base Score:
7.1
Attack Vector
NETWORK
Attack Complexity
LOW
Privileges Required
NONE
User Interaction
REQUIRED
Scope
CHANGED
Confidentiality
LOW
Integrity
LOW
Availability
LOW
Weakness Type (CWE)
Improper Control of Generation of Code ('Code Injection')