ntlm.d 870 B

1234567891011121314151617181920212223
  1. c: Copyright (C) 1998 - 2022, 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. ---
  13. Enables NTLM authentication. The NTLM authentication method was designed by
  14. Microsoft and is used by IIS web servers. It is a proprietary protocol,
  15. reverse-engineered by clever people and implemented in curl based on their
  16. efforts. This kind of behavior should not be endorsed, you should encourage
  17. everyone who uses NTLM to switch to a public and documented authentication
  18. method instead, such as Digest.
  19. If you want to enable NTLM for your proxy authentication, then use
  20. --proxy-ntlm.
  21. If this option is used several times, only the first one is used.