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

Avoid throwing Win32Exception from HTTP authentication #70474

Merged
merged 5 commits into from
Jun 14, 2022

Commits on Jun 9, 2022

  1. Avoid throwing Win32Exception from HTTP authentication

    When server sends malformed NTLM challenge the NT authentication processing
    would throw an unexpected Win32Exception from HttpClientHandler.Send[Async]
    calls. This aligns the behavior to WinHTTP handler where the Unauthorized
    reply with challenge token is returned back to the client.
    
    Similarly, failure to validate the last MIC token in Negotiate scheme could
    result in Win32Exception. Handle it by throwing HttpRequestException instead.
    filipnavara committed Jun 9, 2022
    Configuration menu
    Copy the full SHA
    b06b9b7 View commit details
    Browse the repository at this point in the history

Commits on Jun 10, 2022

  1. Configuration menu
    Copy the full SHA
    557271c View commit details
    Browse the repository at this point in the history

Commits on Jun 13, 2022

  1. Configuration menu
    Copy the full SHA
    fa1beeb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d87b741 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    aadc519 View commit details
    Browse the repository at this point in the history