mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-05 12:57:38 +03:00
Fix HTTP server authenticate
This commit is contained in:
parent
ef00a1ec1e
commit
5f02cb1cff
1 changed files with 19 additions and 4 deletions
|
@ -30,21 +30,36 @@ func HandleConnection(ctx context.Context, conn net.Conn, reader *std_bufio.Read
|
||||||
}
|
}
|
||||||
|
|
||||||
if authenticator != nil {
|
if authenticator != nil {
|
||||||
var authOk bool
|
var (
|
||||||
|
username string
|
||||||
|
password string
|
||||||
|
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])
|
if len(userPswdArr) == 2 {
|
||||||
|
username = userPswdArr[0]
|
||||||
|
password = userPswdArr[1]
|
||||||
|
authOk = authenticator.Verify(username, password)
|
||||||
if authOk {
|
if authOk {
|
||||||
ctx = auth.ContextWithUser(ctx, userPswdArr[0])
|
ctx = auth.ContextWithUser(ctx, userPswdArr[0])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
if !authOk {
|
if !authOk {
|
||||||
err = responseWith(request, http.StatusProxyAuthRequired).Write(conn)
|
err = responseWith(request, http.StatusProxyAuthRequired).Write(conn)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
if username != "" {
|
||||||
|
return E.New("http: authentication failed, username=", username, ", password=", password)
|
||||||
|
} else if authorization != "" {
|
||||||
|
return E.New("http: authentication failed, Proxy-Authorization=", authorization)
|
||||||
|
} else {
|
||||||
|
return E.New("http: authentication failed, no Proxy-Authorization header")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue