0

i'm testing some network simple process to understand better and know how to work with NTLM.

Following this (ntlm-proxy-without-password) Q&A i found hot to uthenticate my transaction via ntml using the log information of the current user.

The command is this: curl.exe -U : --proxy-ntlm --proxy myproxy.com:8080 http://www.google.com

Know i have to do the same thing using libcurl since i need to achieve that result into the application i'm developing. There is a way to do this?

Following this Q&A i found hot to

Community
  • 1
  • 1
Razlo3p
  • 455
  • 2
  • 7
  • 28

1 Answers1

0

This solved like a charm

curl_easy_setopt(ctx, CURLOPT_PROXYUSERPWD, ":");
Razlo3p
  • 455
  • 2
  • 7
  • 28