Open misalcedo opened 10 months ago
Example Basic Auth without Password:
$ curl -vvv http://misalcedo@github.com
* Trying 140.82.112.4:80...
* Connected to github.com (140.82.112.4) port 80
* Server auth using Basic with user 'misalcedo'
> GET / HTTP/1.1
> Host: github.com
> Authorization: Basic bWlzYWxjZWRvOg==
> User-Agent: curl/8.4.0
> Accept: */*
>
< HTTP/1.1 301 Moved Permanently
< Content-Length: 0
< Location: https://github.com/
<
* Connection #0 to host github.com left intact
$ echo 'bWlzYWxjZWRvOg==' | base64 -d
misalcedo:%
Example Basic Auth with Password:
$ curl -vvv http://misalcedo:passsword@github.com
* Trying 140.82.114.3:80...
* Connected to github.com (140.82.114.3) port 80
* Server auth using Basic with user 'misalcedo'
> GET / HTTP/1.1
> Host: github.com
> Authorization: Basic bWlzYWxjZWRvOnBhc3Nzd29yZA==
> User-Agent: curl/8.4.0
> Accept: */*
>
< HTTP/1.1 301 Moved Permanently
< Content-Length: 0
< Location: https://github.com/
<
* Connection #0 to host github.com left intact
$ echo 'bWlzYWxjZWRvOnBhc3Nzd29yZA==' | base64 -d
misalcedo:passsword%
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Required Tasks
The following tasks
Optional Tasks
Links
AUTH_TYPE
meta variable.REMOTE_USER
meta variable.