- Dec 05, 2014
-
-
Guenter Knauf authored
-
- Jul 16, 2014
-
-
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 bail out if the server actually said anything *back* to us in the negotiation. We assume that we send a single token to the server, and it accepts it. If the server wants to continue the exchange (as is required for NTLM and for SPNEGO to do anything useful), then curl was broken anyway. So the only bit which actually did anything was the bit in Curl_output_negotiate(), which always generates an *initial* SPNEGO token saying "Hey, I support only the Kerberos mechanism and this is its token". You could have done that by manually just prefixing the Kerberos token with the appropriate bytes, if you weren't going to do any proper SPNEGO handling. There's no need for the FBOpenSSL library at all. The sane way to do SPNEGO is just to *ask* the GSSAPI library to do SPNEGO. That's what the 'mech_type' argument to gss_init_sec_context() is for. And then it should all Just Work™. That 'sane way' will be added in a subsequent patch, as will bug fixes for our failure to handle any exchange other than a single outbound token to the server which results in immediate success.
-
- May 11, 2013
-
-
Guenter Knauf authored
-
- Feb 09, 2013
-
-
Guenter Knauf authored
-
- Jan 28, 2013
-
-
Guenter Knauf authored
-
- Jul 03, 2012
-
-
Guenter Knauf authored
Added function macros to make path converting easier. Added CROSSPREFIX to all compile tools.
-
- May 27, 2012
-
-
Guenter Knauf authored
-
- May 22, 2012
-
-
Guenter Knauf authored
-
- Apr 26, 2012
-
-
Guenter Knauf authored
-
- Apr 20, 2012
-
-
Guenter Knauf authored
-
- Dec 30, 2011
-
-
Yang Tse authored
-
- Sep 25, 2011
-
-
Guenter Knauf authored
-
- Sep 23, 2011
-
-
Guenter Knauf authored
-
- Sep 21, 2011
-
-
Guenter Knauf authored
-
Guenter Knauf authored
Suffix rules cannot have any prerequisites of their own.
-
Guenter Knauf authored
Added envvars to specify OpenSSL include, libpath and lib. Added rule to create curlbuild.h from curlbuild.h.dist.
-
- Sep 20, 2011
-
-
Guenter Knauf authored
All paths to dependencies now quoted; synced examples makefile.
-
- Mar 11, 2011
-
-
Daniel Stenberg authored
-
- Mar 24, 2010
-
-
Daniel Stenberg authored
-
- Sep 03, 2009
-
-
Guenter Knauf authored
-
- May 09, 2008
-
-
Yang Tse authored
This also implies the removal of the winmm.lib dependency for WIN32.
-
- Apr 02, 2008
-
-
Guenter Knauf authored
-
- Mar 31, 2008
-
-
Dan Fandrich authored
normal build/install (only with the 'make check' target), so that a build failure in the examples isn't fatal.
-
- Feb 18, 2008
-
-
Guenter Knauf authored
-
- Jan 29, 2008
-
-
Guenter Knauf authored
added curl.res to clean target.
-
- Jan 17, 2008
-
-
Guenter Knauf authored
-
- Aug 25, 2007
-
-
Guenter Knauf authored
-
- Aug 24, 2007
-
-
Guenter Knauf authored
-
- Aug 21, 2007
-
-
Guenter Knauf authored
-
Guenter Knauf authored
removed obsolete wsock32 link lib.
-
- Aug 20, 2007
-
-
Guenter Knauf authored
-
Guenter Knauf authored
added define to build with ldaps support; enabled build with the Novell LDAP SDK.
-
- Aug 19, 2007
-
-
Guenter Knauf authored
ignore errors of the RM command; seems that the del command fails on W2K when the file to delete isnt found while on XP it only prints the warning but make continues....
-
Guenter Knauf authored
-
- Aug 14, 2007
-
-
Guenter Knauf authored
other minor makefile tweaks.
-
Guenter Knauf authored
-
- Aug 08, 2007
-
-
Guenter Knauf authored
-
- Aug 03, 2007
-
-
Guenter Knauf authored
-
Guenter Knauf authored
-
Guenter Knauf authored
changed 'rm -f' to 'del /f' so it works without GnuUtils as Peteris Krumins pointed out; changed to use latest external libs.
-