-
-
Notifications
You must be signed in to change notification settings - Fork 5.1k
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
Recommend to use http-digest instead of http-basic #5027
Conversation
javiereguiluz
commented
Feb 19, 2015
Q | A |
---|---|
Doc fix? | no |
New docs? | yes |
Applies to | 2.3+ |
Fixed tickets | - |
|
||
Instead, consider using the ``http_digest`` firewall, which is almost identical | ||
to ``http_basic`` but where user credentials are encoded and hashed before | ||
including them in the request. Read :ref:`HTTP-Digest Authentication reference <reference-security-http-digest>`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you move the ref
to a new line?
HTTP-Digest Authentication | ||
-------------------------- | ||
|
||
To use HTTP-Digest authentication you need to provide a realm and a key: | ||
To use HTTP-Digest authentication you need to provide a realm and a key, which | ||
is the random string that will be used to hash user's credentials. It's common |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hash the user's credentials?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed. Thanks.
👍 |
1 similar comment
👍 |
.. caution:: | ||
|
||
The ``http_basic`` firewall is only recommended while prototyping applications | ||
or when the application is exclusively accesed through secure transports, such |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
accessed
Closing this PR because of the concerns expressed by some Symfony Core members. |