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

[7.x] Allow URL-encoded special characters in basic auth part of URLs #32181

Closed

Commits on Mar 31, 2020

  1. Allow URL-encoded special characters in basic auth part of URLs

    Special characters in HTTP Basic Auth passwords in an URL need to be url-encoded.
    Example: foo@bar becomes foo%40bar, in an URL: http://user:foo%40bar@example.org
    
    The UrlValidator did not allow percent signs in username and password, and this is changed now.
    
    Related bugreport and fix for symfony:
    - symfony/symfony#36285
    - symfony/symfony#36286
    cweiske committed Mar 31, 2020
    Configuration menu
    Copy the full SHA
    17307fd View commit details
    Browse the repository at this point in the history