Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Security] Simplifying the DEV firewall's pattern #20794

Open
wants to merge 3 commits into
base: 6.4
Choose a base branch
from

Conversation

ThomasLandauer
Copy link
Contributor

@ThomasLandauer ThomasLandauer commented Mar 21, 2025

Page: https://symfony.com/doc/6.4/security.html#the-firewall

Reasons:

Question:
Shouldn't this dev firewall be loaded in DEV environment only? (i.e. under something like when@dev)

Page: https://symfony.com/doc/6.4/security.html#the-firewall

Reasons:
* The inner parentheses `_(profiler|wdt)` are overly complicated
* AssetMapper recommends to have all assets under `/asset/`: https://symfony.com/doc/6.4/frontend/asset_mapper.html
@carsonbot carsonbot added this to the 6.4 milestone Mar 21, 2025
@carsonbot carsonbot changed the title [Security]: Simplifying the DEV firewall's pattern [Security] : Simplifying the DEV firewall's pattern Mar 21, 2025
security.rst Outdated
@@ -497,7 +497,7 @@ will be able to authenticate (e.g. login form, API token, etc).
# the order in which firewalls are defined is very important, as the
# request will be handled by the first firewall whose pattern matches
dev:
pattern: ^/(_(profiler|wdt)|css|images|js)/
pattern: ^/(_profiler|_wdt|assets)/
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Contributor Author

@ThomasLandauer ThomasLandauer Mar 22, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Well, then let's change it there too :-) symfony/recipes#1395

@xabbuh
Copy link
Member

xabbuh commented Mar 22, 2025

Question:
Shouldn't this dev firewall be loaded in DEV environment only? (i.e. under something like when@dev)

The security config is not merged between environments. So you would have to repeat everything for the dev environment.

@OskarStark OskarStark changed the title [Security] : Simplifying the DEV firewall's pattern [Security] Simplifying the DEV firewall's pattern Mar 22, 2025
ThomasLandauer added a commit to ThomasLandauer/recipes that referenced this pull request Mar 22, 2025
@ThomasLandauer
Copy link
Contributor Author

Is this true for all parts of the config?
Cause at https://symfony.com/doc/current/security/passwords.html#configuring-a-password-hasher (green box) it's recommended to reconfigure the password hasher in config/packages/test/security.php, and I did this in config/packages/security.php like this:

if ('test' === $containerConfigurator->env()) {
    // ...
}

@wouterj
Copy link
Member

wouterj commented Mar 22, 2025

Is this true for all parts of the config?

Not to all parts, and some parts behave differently. We don't merge configuration from security.role_hierarchy and security.password_hashers, and we don't allow new items in security.firewalls (i.e. you may change options of the firewalls, but you can't add new firewalls).


About this PR, I think it makes sense, but let's wait for the recipe to be accepted as the documentation have to be in sync with the generated recipes.

@wouterj wouterj modified the milestones: 6.4, 7.3 Mar 22, 2025
@wouterj wouterj added the Waiting Code Merge Docs for features pending to be merged label Mar 22, 2025
@carsonbot carsonbot modified the milestones: 7.3, next Mar 22, 2025
@@ -497,7 +497,7 @@ will be able to authenticate (e.g. login form, API token, etc).
# the order in which firewalls are defined is very important, as the
# request will be handled by the first firewall whose pattern matches
dev:
pattern: ^/(_(profiler|wdt)|css|images|js)/
pattern: ^/_profiler|_wdt|assets|build/ # `assets` is for AssetMapper; `build` is for Webpack Encore
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
pattern: ^/_profiler|_wdt|assets|build/ # `assets` is for AssetMapper; `build` is for Webpack Encore
pattern: ^/(_profiler|_wdt|assets|build)/ # `assets` is for AssetMapper; `build` is for Webpack Encore

@@ -529,8 +529,8 @@ will be able to authenticate (e.g. login form, API token, etc).
<!-- the order in which firewalls are defined is very important, as the
request will be handled by the first firewall whose pattern matches -->
<firewall name="dev"
pattern="^/(_(profiler|wdt)|css|images|js)/"
security="false"/>
pattern="^/_profiler|_wdt|assets|build/"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
pattern="^/_profiler|_wdt|assets|build/"
pattern="^/(_profiler|_wdt|assets|build)/"

@@ -555,7 +555,7 @@ will be able to authenticate (e.g. login form, API token, etc).
// the order in which firewalls are defined is very important, as the
// request will be handled by the first firewall whose pattern matches
$security->firewall('dev')
->pattern('^/(_(profiler|wdt)|css|images|js)/')
->pattern('^/_profiler|_wdt|assets|build/') // `assets` is for AssetMapper; `build` is for Webpack Encore
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
->pattern('^/_profiler|_wdt|assets|build/') // `assets` is for AssetMapper; `build` is for Webpack Encore
->pattern('^/(_profiler|_wdt|assets|build)/') // `assets` is for AssetMapper; `build` is for Webpack Encore

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Security Status: Needs Review Waiting Code Merge Docs for features pending to be merged
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants