2022-06-14 06:12:03 +08:00
|
|
|
c: Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
|
|
SPDX-License-Identifier: curl
|
2016-11-28 08:01:13 +08:00
|
|
|
Long: proxy-user
|
|
|
|
Short: U
|
|
|
|
Arg: <user:password>
|
|
|
|
Help: Proxy user and password
|
2020-07-13 20:15:04 +08:00
|
|
|
Category: proxy auth
|
2021-08-31 22:37:14 +08:00
|
|
|
Example: --proxy-user name:pwd -x proxy $URL
|
2021-09-28 17:50:07 +08:00
|
|
|
Added: 4.0
|
2021-11-15 22:58:20 +08:00
|
|
|
See-also: proxy-pass
|
2016-11-28 08:01:13 +08:00
|
|
|
---
|
|
|
|
Specify the user name and password to use for proxy authentication.
|
|
|
|
|
|
|
|
If you use a Windows SSPI-enabled curl binary and do either Negotiate or NTLM
|
|
|
|
authentication then you can tell curl to select the user name and password
|
|
|
|
from your environment by specifying a single colon with this option: "-U :".
|
|
|
|
|
2019-03-14 18:49:35 +08:00
|
|
|
On systems where it works, curl will hide the given option argument from
|
|
|
|
process listings. This is not enough to protect credentials from possibly
|
|
|
|
getting seen by other users on the same system as they will still be visible
|
2021-11-26 15:46:59 +08:00
|
|
|
for a moment 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
|
|
|
If this option is used several times, the last one will be used.
|