Looking for the vulnerability index of Invicti's legacy products?
Symfony debug mode enabled (Invicti IAST) - Vulnerability Database

Symfony debug mode enabled (Invicti IAST)

Description

Your Symfony web application is configured to run with debug mode enabled.

A Symfony application can be run with debug mode set to true or false (respectively 1 or 0 for the APP_DEBUG variable defined in .env). This affects many things in the application, such as displaying stacktraces on error pages or if cache files are dynamically rebuilt on each request.

When running in production it's recommended to disable the debug mode.

Remediation

To disable debug mode set the <strong>APP_DEBUG</strong> environment variable value to <strong>0</strong> in the <strong>.env</strong> environment configuration file. <pre> # .env or .env.local APP_DEBUG=0 </pre>

Related Vulnerabilities