Harden production cookie security#5
Merged
Conversation
Reviewer's guide (collapsed on small PRs)Reviewer's GuideMakes Django cookie-related security settings configurable via environment variables and tightens default referrer policy for production while preserving HTTP-friendly defaults for local development. Flow diagram for environment-based cookie security settingsflowchart LR
subgraph Environment
env_session[ENV SESSION_COOKIE_SECURE]
env_csrf[ENV CSRF_COOKIE_SECURE]
end
subgraph DjangoSettings
settings_py[settings.py]
session_secure[SESSION_COOKIE_SECURE]
csrf_secure[CSRF_COOKIE_SECURE]
referrer_policy[SECURE_REFERRER_POLICY=same-origin]
end
Environment --> settings_py
env_session --> session_secure
env_csrf --> csrf_secure
settings_py --> referrer_policy
subgraph Runtime
django[django.middleware]
cookies[Session and CSRF cookies]
end
session_secure --> django
csrf_secure --> django
referrer_policy --> django
django --> cookies
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Hey - I've left some high level feedback:
- For the boolean cookie settings, consider using a more robust cast from environment variables (e.g., case-insensitive check or
distutils.util.strtobool) instead of comparing directly to the string 'True' to avoid subtle configuration mistakes.
Prompt for AI Agents
Please address the comments from this code review:
## Overall Comments
- For the boolean cookie settings, consider using a more robust cast from environment variables (e.g., case-insensitive check or `distutils.util.strtobool`) instead of comparing directly to the string 'True' to avoid subtle configuration mistakes.Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Modifications
SESSION_COOKIE_SECUREconfigurable par variable d’environnement ;CSRF_COOKIE_SECUREconfigurable par variable d’environnement ;SECURE_REFERRER_POLICY = "same-origin";Vérifications
python manage.py check: aucun problème ;flake8: aucune erreur ;git diff --check: aucune erreur ;check --deployréduit aux avertissements HSTS et redirection HTTPS, gérés séparément par la plateforme de déploiement.Summary by Sourcery
Harden production cookie and referrer security settings based on environment configuration.
New Features:
Enhancements: