docs/cmdline: change to .md for cmdline docs
- switch all invidual files documenting command line options into .md,
as the documentation is now markdown-looking.
- made the parser treat 4-space indents as quotes
- switch to building the curl.1 manpage using the "mainpage.idx" file,
which lists the files to include to generate it, instead of using the
previous page-footer/headers. Also, those files are now also .md
ones, using the same format. I gave them underscore prefixes to make
them sort separately:
_NAME.md, _SYNOPSIS.md, _DESCRIPTION.md, _URL.md, _GLOBBING.md,
_VARIABLES.md, _OUTPUT.md, _PROTOCOLS.md, _PROGRESS.md, _VERSION.md,
_OPTIONS.md, _FILES.md, _ENVIRONMENT.md, _PROXYPREFIX.md,
_EXITCODES.md, _BUGS.md, _AUTHORS.md, _WWW.md, _SEEALSO.md
- updated test cases accordingly
Closes #12751
2024-01-21 06:18:43 +08:00
|
|
|
---
|
2023-01-02 20:51:48 +08:00
|
|
|
c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
2022-06-14 06:12:03 +08:00
|
|
|
SPDX-License-Identifier: curl
|
2016-11-28 08:01:13 +08:00
|
|
|
Long: user
|
|
|
|
Short: u
|
|
|
|
Arg: <user:password>
|
|
|
|
Help: Server user and password
|
2020-07-13 20:15:04 +08:00
|
|
|
Category: important auth
|
2021-09-28 17:50:07 +08:00
|
|
|
Added: 4.0
|
2022-10-18 16:39:43 +08:00
|
|
|
Multi: single
|
docs/cmdline: change to .md for cmdline docs
- switch all invidual files documenting command line options into .md,
as the documentation is now markdown-looking.
- made the parser treat 4-space indents as quotes
- switch to building the curl.1 manpage using the "mainpage.idx" file,
which lists the files to include to generate it, instead of using the
previous page-footer/headers. Also, those files are now also .md
ones, using the same format. I gave them underscore prefixes to make
them sort separately:
_NAME.md, _SYNOPSIS.md, _DESCRIPTION.md, _URL.md, _GLOBBING.md,
_VARIABLES.md, _OUTPUT.md, _PROTOCOLS.md, _PROGRESS.md, _VERSION.md,
_OPTIONS.md, _FILES.md, _ENVIRONMENT.md, _PROXYPREFIX.md,
_EXITCODES.md, _BUGS.md, _AUTHORS.md, _WWW.md, _SEEALSO.md
- updated test cases accordingly
Closes #12751
2024-01-21 06:18:43 +08:00
|
|
|
See-also:
|
|
|
|
- netrc
|
|
|
|
- config
|
|
|
|
Example:
|
|
|
|
- -u user:secret $URL
|
2016-11-28 08:01:13 +08:00
|
|
|
---
|
docs/cmdline: change to .md for cmdline docs
- switch all invidual files documenting command line options into .md,
as the documentation is now markdown-looking.
- made the parser treat 4-space indents as quotes
- switch to building the curl.1 manpage using the "mainpage.idx" file,
which lists the files to include to generate it, instead of using the
previous page-footer/headers. Also, those files are now also .md
ones, using the same format. I gave them underscore prefixes to make
them sort separately:
_NAME.md, _SYNOPSIS.md, _DESCRIPTION.md, _URL.md, _GLOBBING.md,
_VARIABLES.md, _OUTPUT.md, _PROTOCOLS.md, _PROGRESS.md, _VERSION.md,
_OPTIONS.md, _FILES.md, _ENVIRONMENT.md, _PROXYPREFIX.md,
_EXITCODES.md, _BUGS.md, _AUTHORS.md, _WWW.md, _SEEALSO.md
- updated test cases accordingly
Closes #12751
2024-01-21 06:18:43 +08:00
|
|
|
|
|
|
|
# `--user`
|
|
|
|
|
2024-02-27 17:35:28 +08:00
|
|
|
Specify the username and password to use for server authentication. Overrides
|
2016-11-28 08:01:13 +08:00
|
|
|
--netrc and --netrc-optional.
|
|
|
|
|
2024-02-27 17:35:28 +08:00
|
|
|
If you simply specify the username, curl prompts for a password.
|
2016-11-28 08:01:13 +08:00
|
|
|
|
2024-02-27 17:35:28 +08:00
|
|
|
The username and passwords are split up on the first colon, which makes it
|
|
|
|
impossible to use a colon in the username with this option. The password can,
|
2016-11-28 08:01:13 +08:00
|
|
|
still.
|
|
|
|
|
2023-09-08 20:32:29 +08:00
|
|
|
On systems where it works, curl hides the given option argument from process
|
|
|
|
listings. This is not enough to protect credentials from possibly getting seen
|
docs/cmdline: change to .md for cmdline docs
- switch all invidual files documenting command line options into .md,
as the documentation is now markdown-looking.
- made the parser treat 4-space indents as quotes
- switch to building the curl.1 manpage using the "mainpage.idx" file,
which lists the files to include to generate it, instead of using the
previous page-footer/headers. Also, those files are now also .md
ones, using the same format. I gave them underscore prefixes to make
them sort separately:
_NAME.md, _SYNOPSIS.md, _DESCRIPTION.md, _URL.md, _GLOBBING.md,
_VARIABLES.md, _OUTPUT.md, _PROTOCOLS.md, _PROGRESS.md, _VERSION.md,
_OPTIONS.md, _FILES.md, _ENVIRONMENT.md, _PROXYPREFIX.md,
_EXITCODES.md, _BUGS.md, _AUTHORS.md, _WWW.md, _SEEALSO.md
- updated test cases accordingly
Closes #12751
2024-01-21 06:18:43 +08:00
|
|
|
by other users on the same system as they still are visible for a moment
|
2023-09-08 20:32:29 +08:00
|
|
|
before cleared. Such sensitive data should be retrieved from a file instead or
|
|
|
|
similar and never used in clear text in a command line.
|
2019-03-14 18:49:35 +08:00
|
|
|
|
2016-11-28 08:01:13 +08:00
|
|
|
When using Kerberos V5 with a Windows based server you should include the
|
2024-02-27 17:35:28 +08:00
|
|
|
Windows domain name in the username, in order for the server to successfully
|
2021-10-31 23:34:44 +08:00
|
|
|
obtain a Kerberos Ticket. If you do not, then the initial authentication
|
2016-11-28 08:01:13 +08:00
|
|
|
handshake may fail.
|
|
|
|
|
2024-02-27 17:35:28 +08:00
|
|
|
When using NTLM, the username can be specified simply as the username, without
|
|
|
|
the domain, if there is a single domain and forest in your setup for example.
|
2016-11-28 08:01:13 +08:00
|
|
|
|
|
|
|
To specify the domain name use either Down-Level Logon Name or UPN (User
|
docs/cmdline: change to .md for cmdline docs
- switch all invidual files documenting command line options into .md,
as the documentation is now markdown-looking.
- made the parser treat 4-space indents as quotes
- switch to building the curl.1 manpage using the "mainpage.idx" file,
which lists the files to include to generate it, instead of using the
previous page-footer/headers. Also, those files are now also .md
ones, using the same format. I gave them underscore prefixes to make
them sort separately:
_NAME.md, _SYNOPSIS.md, _DESCRIPTION.md, _URL.md, _GLOBBING.md,
_VARIABLES.md, _OUTPUT.md, _PROTOCOLS.md, _PROGRESS.md, _VERSION.md,
_OPTIONS.md, _FILES.md, _ENVIRONMENT.md, _PROXYPREFIX.md,
_EXITCODES.md, _BUGS.md, _AUTHORS.md, _WWW.md, _SEEALSO.md
- updated test cases accordingly
Closes #12751
2024-01-21 06:18:43 +08:00
|
|
|
Principal Name) formats. For example, EXAMPLE\user and user@example.com
|
2016-11-28 08:01:13 +08:00
|
|
|
respectively.
|
|
|
|
|
|
|
|
If you use a Windows SSPI-enabled curl binary and perform Kerberos V5,
|
2024-02-27 17:35:28 +08:00
|
|
|
Negotiate, NTLM or Digest authentication then you can tell curl to select the
|
|
|
|
username and password from your environment by specifying a single colon with
|
|
|
|
this option: "-u :".
|