mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +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 {
|
||||
var authOk bool
|
||||
authorization := request.Header.Get("Proxy-Authorization")
|
||||
if strings.HasPrefix(authorization, "BASIC ") {
|
||||
if strings.HasPrefix(authorization, "Basic ") {
|
||||
userPassword, _ := base64.URLEncoding.DecodeString(authorization[6:])
|
||||
userPswdArr := strings.SplitN(string(userPassword), ":", 2)
|
||||
authOk = authenticator.Verify(userPswdArr[0], userPswdArr[1])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue