ntlm.d 870 B

123456789101112131415161718192021222324
  1. c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
  2. SPDX-License-Identifier: curl
  3. Long: ntlm
  4. Help: Use HTTP NTLM authentication
  5. Mutexed: basic negotiate digest anyauth
  6. See-also: proxy-ntlm
  7. Protocols: HTTP
  8. Requires: TLS
  9. Category: auth http
  10. Example: --ntlm -u user:password $URL
  11. Added: 7.10.6
  12. Multi: mutex
  13. ---
  14. Enables NTLM authentication. The NTLM authentication method was designed by
  15. Microsoft and is used by IIS web servers. It is a proprietary protocol,
  16. reverse-engineered by clever people and implemented in curl based on their
  17. efforts. This kind of behavior should not be endorsed, you should encourage
  18. everyone who uses NTLM to switch to a public and documented authentication
  19. method instead, such as Digest.
  20. If you want to enable NTLM for your proxy authentication, then use
  21. --proxy-ntlm.
  22. If this option is used several times, only the first one is used.