mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 12:27:37 +03:00
Fix http proxy auth
This commit is contained in:
parent
bdf4eb1552
commit
e4b763450c
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ func HandleConnection(ctx context.Context, conn net.Conn, reader *std_bufio.Read
|
||||||
if authenticator != nil {
|
if authenticator != nil {
|
||||||
var authOk bool
|
var authOk bool
|
||||||
authorization := request.Header.Get("Proxy-Authorization")
|
authorization := request.Header.Get("Proxy-Authorization")
|
||||||
if strings.HasPrefix(authorization, "BASIC ") {
|
if strings.HasPrefix(authorization, "Basic ") {
|
||||||
userPassword, _ := base64.URLEncoding.DecodeString(authorization[6:])
|
userPassword, _ := base64.URLEncoding.DecodeString(authorization[6:])
|
||||||
userPswdArr := strings.SplitN(string(userPassword), ":", 2)
|
userPswdArr := strings.SplitN(string(userPassword), ":", 2)
|
||||||
authOk = authenticator.Verify(userPswdArr[0], userPswdArr[1])
|
authOk = authenticator.Verify(userPswdArr[0], userPswdArr[1])
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue