Django Debug Mode Enabled

A Django application configured in debug mode was detected.

  • django
  • debug
  • mode

In Django, debug mode is a special application configuration that is only useful for development purposes. In production environments, Django applications configured in debug mode will leak application stack traces, environment variables, and other helpful information.

Impact

Attackers may be able to obtain sensitive information.

Solution

Ensure that Django debug mode is only available in development environments that are not accessible over the Internet.

Was this page helpful?