lib590.c 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al.
  9. *
  10. * This software is licensed as described in the file COPYING, which
  11. * you should have received as part of this distribution. The terms
  12. * are also available at http://curl.haxx.se/docs/copyright.html.
  13. *
  14. * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. * copies of the Software, and permit persons to whom the Software is
  16. * furnished to do so, under the terms of the COPYING file.
  17. *
  18. * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. * KIND, either express or implied.
  20. *
  21. ***************************************************************************/
  22. #include "test.h"
  23. /*
  24. Based on a bug report recipe by Rene Bernhardt in
  25. http://curl.haxx.se/mail/lib-2011-10/0323.html
  26. It is reproducible by the following steps:
  27. - Use a proxy that offers NTLM and Negotiate ( CURLOPT_PROXY and
  28. CURLOPT_PROXYPORT )
  29. - Tell libcurl NOT to use Negotiate CURL_EASY_SETOPT(CURLOPT_PROXYAUTH,
  30. CURLAUTH_BASIC | CURLAUTH_DIGEST | CURLAUTH_NTLM )
  31. - Start the request
  32. */
  33. #include "memdebug.h"
  34. int test(char *URL)
  35. {
  36. CURLcode res;
  37. CURL *curl;
  38. if (curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) {
  39. fprintf(stderr, "curl_global_init() failed\n");
  40. return TEST_ERR_MAJOR_BAD;
  41. }
  42. if ((curl = curl_easy_init()) == NULL) {
  43. fprintf(stderr, "curl_easy_init() failed\n");
  44. curl_global_cleanup();
  45. return TEST_ERR_MAJOR_BAD;
  46. }
  47. test_setopt(curl, CURLOPT_URL, URL);
  48. test_setopt(curl, CURLOPT_HEADER, 1L);
  49. test_setopt(curl, CURLOPT_PROXYAUTH,
  50. CURLAUTH_BASIC | CURLAUTH_DIGEST | CURLAUTH_NTLM);
  51. test_setopt(curl, CURLOPT_PROXY, libtest_arg2); /* set in first.c */
  52. test_setopt(curl, CURLOPT_PROXYUSERPWD, "me:password");
  53. res = curl_easy_perform(curl);
  54. test_cleanup:
  55. curl_easy_cleanup(curl);
  56. curl_global_cleanup();
  57. return (int)res;
  58. }