mirror of
https://github.com/Buriburizaem0n/nezha_domains.git
synced 2026-09-19 17:50:12 +00:00
Decouple OAuth2 callback host from agent install host. When dashboard_host is empty, the request Host is passed through; otherwise non-reserved hosts are pinned to dashboard_host. Added to reserved-host allowlist for NAT.
266 lines
8.3 KiB
Go
266 lines
8.3 KiB
Go
package controller
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"net/http"
|
|
"strconv"
|
|
"strings"
|
|
|
|
jwt "github.com/appleboy/gin-jwt/v2"
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/patrickmn/go-cache"
|
|
"github.com/tidwall/gjson"
|
|
"golang.org/x/oauth2"
|
|
"gorm.io/gorm"
|
|
|
|
"github.com/nezhahq/nezha/model"
|
|
"github.com/nezhahq/nezha/pkg/utils"
|
|
"github.com/nezhahq/nezha/service/singleton"
|
|
)
|
|
|
|
// GHSA-9rc6-8cjv-rcvx: the OAuth2 callback URL is sent to the identity
|
|
// provider and is where the authorization code lands. Deriving it from the
|
|
// raw Host header lets an attacker who can reach this handler with a forged
|
|
// Host (or a provider with loose redirect-URI matching) divert a victim's
|
|
// code to their own origin and bind the victim's identity. A request Host is
|
|
// trusted only when it is an operator-declared dashboard host (the same
|
|
// allowlist that guards NAT routing). Otherwise the redirect is pinned to the
|
|
// operator-declared DashboardHost; when DashboardHost is empty the operator has
|
|
// not pinned a dashboard origin, so the request Host is passed through.
|
|
func getRedirectURL(c *gin.Context) string {
|
|
scheme := "http://"
|
|
referer := c.Request.Referer()
|
|
if forwardedProto := c.Request.Header.Get("X-Forwarded-Proto"); forwardedProto == "https" || strings.HasPrefix(referer, "https://") {
|
|
scheme = "https://"
|
|
}
|
|
host := c.Request.Host
|
|
if !singleton.IsReservedDashboardHost(host) && singleton.Conf != nil && singleton.Conf.DashboardHost != "" {
|
|
host = singleton.Conf.DashboardHost
|
|
}
|
|
return scheme + host + "/api/v1/oauth2/callback"
|
|
}
|
|
|
|
// @Summary Get Oauth2 Redirect URL
|
|
// @Description Get Oauth2 Redirect URL
|
|
// @Produce json
|
|
// @Param provider path string true "provider"
|
|
// @Param type query int false "type" Enums(1, 2) default(1)
|
|
// @Success 200 {object} model.Oauth2LoginResponse
|
|
// @Router /api/v1/oauth2/{provider} [get]
|
|
func oauth2redirect(c *gin.Context) (*model.Oauth2LoginResponse, error) {
|
|
provider := c.Param("provider")
|
|
if provider == "" {
|
|
return nil, singleton.Localizer.ErrorT("provider is required")
|
|
}
|
|
|
|
rTypeInt, err := strconv.ParseUint(c.Query("type"), 10, 8)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
o2confRaw, has := singleton.Conf.Oauth2[provider]
|
|
if !has {
|
|
return nil, singleton.Localizer.ErrorT("provider not found")
|
|
}
|
|
redirectURL := getRedirectURL(c)
|
|
o2conf := o2confRaw.Setup(redirectURL)
|
|
|
|
randomString, err := utils.GenerateRandomString(32)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
state, stateKey := randomString[:16], randomString[16:]
|
|
singleton.Cache.Set(fmt.Sprintf("%s%s", model.CacheKeyOauth2State, stateKey), &model.Oauth2State{
|
|
Action: model.Oauth2LoginType(rTypeInt),
|
|
Provider: provider,
|
|
State: state,
|
|
RedirectURL: redirectURL,
|
|
}, cache.DefaultExpiration)
|
|
|
|
url := o2conf.AuthCodeURL(state, oauth2.AccessTypeOnline)
|
|
writeOauth2StateCookie(c, stateKey)
|
|
|
|
return &model.Oauth2LoginResponse{Redirect: url}, nil
|
|
}
|
|
|
|
// writeOauth2StateCookie sets the nz-o2s cookie used to authenticate the
|
|
// OAuth2 callback. Secure is set when the request arrives over HTTPS;
|
|
// HttpOnly is enabled unconditionally — the frontend does not read this
|
|
// cookie, only the dashboard's callback handler does, so HTTP-only access
|
|
// is strictly an XSS-hardening win.
|
|
func writeOauth2StateCookie(c *gin.Context, stateKey string) {
|
|
secure := c.Request.URL.Scheme == "https" || c.Request.TLS != nil
|
|
c.SetCookie("nz-o2s", stateKey, 60*5, "", "", secure, true)
|
|
}
|
|
|
|
// @Summary Unbind Oauth2
|
|
// @Description Unbind Oauth2
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Param provider path string true "provider"
|
|
// @Success 200 {object} any
|
|
// @Router /api/v1/oauth2/{provider}/unbind [post]
|
|
func unbindOauth2(c *gin.Context) (any, error) {
|
|
provider := c.Param("provider")
|
|
if provider == "" {
|
|
return nil, singleton.Localizer.ErrorT("provider is required")
|
|
}
|
|
_, has := singleton.Conf.Oauth2[provider]
|
|
if !has {
|
|
return nil, singleton.Localizer.ErrorT("provider not found")
|
|
}
|
|
provider = strings.ToLower(provider)
|
|
|
|
u := c.MustGet(model.CtxKeyAuthorizedUser).(*model.User)
|
|
query := singleton.DB.Where("provider = ? AND user_id = ?", provider, u.ID)
|
|
|
|
var bindCount int64
|
|
if err := query.Model(&model.Oauth2Bind{}).Count(&bindCount).Error; err != nil {
|
|
return nil, newGormError("%v", err)
|
|
}
|
|
|
|
if bindCount < 2 && u.RejectPassword {
|
|
return nil, singleton.Localizer.ErrorT("operation not permitted")
|
|
}
|
|
|
|
if err := query.Delete(&model.Oauth2Bind{}).Error; err != nil {
|
|
return nil, newGormError("%v", err)
|
|
}
|
|
|
|
return nil, nil
|
|
}
|
|
|
|
// @Summary Oauth2 Callback
|
|
// @Description Oauth2 Callback
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Param state query string true "state"
|
|
// @Param code query string true "code"
|
|
// @Success 200 {object} model.CommonResponse[any]
|
|
// @Router /api/v1/oauth2/callback [get]
|
|
func oauth2callback(jwtConfig *jwt.GinJWTMiddleware) func(c *gin.Context) (any, error) {
|
|
return func(c *gin.Context) (any, error) {
|
|
callbackData := &model.Oauth2Callback{
|
|
State: c.Query("state"),
|
|
Code: c.Query("code"),
|
|
}
|
|
|
|
state, err := verifyState(c, callbackData.State)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
o2confRaw, has := singleton.Conf.Oauth2[state.Provider]
|
|
if !has {
|
|
return nil, singleton.Localizer.ErrorT("provider not found")
|
|
}
|
|
|
|
realip := c.GetString(model.CtxKeyRealIPStr)
|
|
if callbackData.Code == "" {
|
|
model.BlockIP(singleton.DB, realip, model.WAFBlockReasonTypeBruteForceOauth2, model.BlockIDToken)
|
|
return nil, singleton.Localizer.ErrorT("code is required")
|
|
}
|
|
|
|
openId, err := exchangeOpenId(c, o2confRaw, callbackData, state.RedirectURL)
|
|
if err != nil {
|
|
model.BlockIP(singleton.DB, realip, model.WAFBlockReasonTypeBruteForceOauth2, model.BlockIDToken)
|
|
return nil, err
|
|
}
|
|
|
|
var bind model.Oauth2Bind
|
|
state.Provider = strings.ToLower(state.Provider)
|
|
switch state.Action {
|
|
case model.RTypeBind:
|
|
u, authorized := c.Get(model.CtxKeyAuthorizedUser)
|
|
if !authorized {
|
|
return nil, singleton.Localizer.ErrorT("unauthorized")
|
|
}
|
|
user := u.(*model.User)
|
|
|
|
result := singleton.DB.Where("provider = ? AND open_id = ?", state.Provider, openId).Limit(1).Find(&bind)
|
|
if result.Error != nil && result.Error != gorm.ErrRecordNotFound {
|
|
return nil, newGormError("%v", result.Error)
|
|
}
|
|
bind.UserID = user.ID
|
|
bind.Provider = state.Provider
|
|
bind.OpenID = openId
|
|
|
|
if result.Error == gorm.ErrRecordNotFound {
|
|
result = singleton.DB.Create(&bind)
|
|
} else {
|
|
result = singleton.DB.Save(&bind)
|
|
}
|
|
if result.Error != nil {
|
|
return nil, newGormError("%v", result.Error)
|
|
}
|
|
default:
|
|
if err := singleton.DB.Where("provider = ? AND open_id = ?", state.Provider, openId).First(&bind).Error; err != nil {
|
|
return nil, singleton.Localizer.ErrorT("oauth2 user not binded yet")
|
|
}
|
|
}
|
|
|
|
var bindUser model.User
|
|
if err := singleton.DB.First(&bindUser, bind.UserID).Error; err != nil {
|
|
return nil, newGormError("%v", err)
|
|
}
|
|
claims, err := issueJWTSession(c, &bindUser, singleton.Conf.JWTTimeout)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
tokenString, _, err := jwtConfig.TokenGenerator(claims)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
jwtConfig.SetCookie(c, tokenString)
|
|
setCSRFCookie(c)
|
|
c.Redirect(http.StatusFound, utils.IfOr(state.Action == model.RTypeBind, "/dashboard/profile?oauth2=true", "/dashboard/login?oauth2=true"))
|
|
|
|
return nil, errNoop
|
|
}
|
|
}
|
|
|
|
func exchangeOpenId(c *gin.Context, o2confRaw *model.Oauth2Config,
|
|
callbackData *model.Oauth2Callback, redirectURL string) (string, error) {
|
|
o2conf := o2confRaw.Setup(redirectURL)
|
|
|
|
otk, err := o2conf.Exchange(c, callbackData.Code)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
oauth2client := o2conf.Client(c, otk)
|
|
resp, err := oauth2client.Get(o2confRaw.UserInfoURL)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
defer resp.Body.Close()
|
|
body, err := io.ReadAll(resp.Body)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return gjson.GetBytes(body, o2confRaw.UserIDPath).String(), nil
|
|
}
|
|
|
|
func verifyState(c *gin.Context, state string) (*model.Oauth2State, error) {
|
|
// 验证登录跳转时的 State
|
|
stateKey, err := c.Cookie("nz-o2s")
|
|
if err != nil {
|
|
return nil, singleton.Localizer.ErrorT("invalid state key")
|
|
}
|
|
|
|
cacheKey := fmt.Sprintf("%s%s", model.CacheKeyOauth2State, stateKey)
|
|
istate, ok := singleton.Cache.Get(cacheKey)
|
|
if !ok {
|
|
return nil, singleton.Localizer.ErrorT("invalid state key")
|
|
}
|
|
|
|
oauth2State, ok := istate.(*model.Oauth2State)
|
|
if !ok || oauth2State.State != state {
|
|
return nil, singleton.Localizer.ErrorT("invalid state key")
|
|
}
|
|
|
|
return oauth2State, nil
|
|
}
|