1. 16 Jul, 2014 8 commits
    • David Woodhouse's avatar
      3de576ef
    • David Woodhouse's avatar
      Don't abort Negotiate auth when the server has a response for us · 6bc76194
      David Woodhouse authored
      It's wrong to assume that we can send a single SPNEGO packet which will
      complete the authentication. It's a *negotiation* — the clue is in the
      name. So make sure we handle responses from the server.
      
      Curl_input_negotiate() will already handle bailing out if it thinks the
      state is GSS_S_COMPLETE (or SEC_E_OK on Windows) and the server keeps
      talking to us, so we should avoid endless loops that way.
      6bc76194
    • David Woodhouse's avatar
      Don't clear GSSAPI state between each exchange in the negotiation · f78ae415
      David Woodhouse authored
      GSSAPI doesn't work very well if we forget everything ever time.
      
      XX: Is Curl_http_done() the right place to do the final cleanup?
      f78ae415
    • David Woodhouse's avatar
      Use SPNEGO for HTTP Negotiate · 59431c24
      David Woodhouse authored
      This is the correct way to do SPNEGO. Just ask for it
      
      Now I correctly see it trying NTLMSSP authentication when a Kerberos ticket
      isn't available. Of course, we bail out when the server responds with the
      challenge packet, since we don't expect that. But I'll fix that bug next...
      59431c24
    • David Woodhouse's avatar
      Remove all traces of FBOpenSSL SPNEGO support · 9ad282b1
      David Woodhouse authored
      This is just fundamentally broken. SPNEGO (RFC4178) is a protocol which
      allows client and server to negotiate the underlying mechanism which will
      actually be used to authenticate. This is *often* Kerberos, and can also
      be NTLM and other things. And to complicate matters, there are various
      different OIDs which can be used to specify the Kerberos mechanism too.
      
      A SPNEGO exchange will identify *which* GSSAPI mechanism is being used,
      and will exchange GSSAPI tokens which are appropriate for that mechanism.
      
      But this SPNEGO implementation just strips the incoming SPNEGO packet
      and extracts the token, if any. And completely discards the information
      about *which* mechanism is being used. Then we *assume* it was Kerberos,
      and feed the token into gss_init_sec_context() with the default
      mechanism (GSS_S_NO_OID for the mech_type argument).
      
      Furthermore... broken as this code is, it was never even *used* for input
      tokens anyway, because higher layers of curl would just b...
      9ad282b1
    • David Woodhouse's avatar
    • David Woodhouse's avatar
      ntlm_wb: Fix hard-coded limit on NTLM auth packet size · 9008f3d5
      David Woodhouse authored
      Bumping it to 1KiB in commit aaaf9e50 is all very well, but having hit
      a hard limit once let's just make it cope by reallocating as necessary.
      9008f3d5
    • Daniel Stenberg's avatar
      RELEASE-NOTES: synced with 4cb25215 · df5169fa
      Daniel Stenberg authored
      curl-7_37_1
      df5169fa
  2. 15 Jul, 2014 3 commits
  3. 14 Jul, 2014 6 commits
  4. 12 Jul, 2014 7 commits
  5. 11 Jul, 2014 9 commits
  6. 10 Jul, 2014 2 commits
  7. 09 Jul, 2014 1 commit
  8. 05 Jul, 2014 1 commit
  9. 04 Jul, 2014 3 commits