mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07: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,14 +30,22 @@ func HandleConnection(ctx context.Context, conn net.Conn, reader *std_bufio.Read
|
|||
}
|
||||
|
||||
if authenticator != nil {
|
||||
var authOk bool
|
||||
var (
|
||||
username string
|
||||
password string
|
||||
authOk bool
|
||||
)
|
||||
authorization := request.Header.Get("Proxy-Authorization")
|
||||
if strings.HasPrefix(authorization, "Basic ") {
|
||||
userPassword, _ := base64.URLEncoding.DecodeString(authorization[6:])
|
||||
userPswdArr := strings.SplitN(string(userPassword), ":", 2)
|
||||
authOk = authenticator.Verify(userPswdArr[0], userPswdArr[1])
|
||||
if authOk {
|
||||
ctx = auth.ContextWithUser(ctx, userPswdArr[0])
|
||||
if len(userPswdArr) == 2 {
|
||||
username = userPswdArr[0]
|
||||
password = userPswdArr[1]
|
||||
authOk = authenticator.Verify(username, password)
|
||||
if authOk {
|
||||
ctx = auth.ContextWithUser(ctx, userPswdArr[0])
|
||||
}
|
||||
}
|
||||
}
|
||||
if !authOk {
|
||||
|
@ -45,6 +53,13 @@ func HandleConnection(ctx context.Context, conn net.Conn, reader *std_bufio.Read
|
|||
if err != nil {
|
||||
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