We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The user-id part of the basic authentication header value should not contain control characters. This should be validated and handled accordingly.
RFC 7617 The 'Basic' HTTP Authentication Scheme Section 2. The 'Basic' Authentication Scheme states [0]
The user-id and password MUST NOT contain any control characters (see "CTL" in Appendix B.1 of [RFC5234]).
RFC 5234Augmented BNF for Syntax Specifications: ABNF Appendix B.1. Core Rules states
CTL = %x00-1F / %x7F ; controls
[0] https://datatracker.ietf.org/doc/html/rfc7617#section-2 [1] https://datatracker.ietf.org/doc/html/rfc5234#appendix-B.1
The text was updated successfully, but these errors were encountered:
Thanks for opening this. I noticed this same problem when I was looking at #477 and will work on a fix.
Sorry, something went wrong.
vinoski
No branches or pull requests
The user-id part of the basic authentication header value should
not contain control characters. This should be validated and
handled accordingly.
RFC 7617 The 'Basic' HTTP Authentication Scheme
Section 2. The 'Basic' Authentication Scheme states [0]
RFC 5234Augmented BNF for Syntax Specifications: ABNF
Appendix B.1. Core Rules states
[0] https://datatracker.ietf.org/doc/html/rfc7617#section-2
[1] https://datatracker.ietf.org/doc/html/rfc5234#appendix-B.1
The text was updated successfully, but these errors were encountered: