mirror of
https://github.com/drakkan/sftpgo.git
synced 2025-12-08 07:10:56 +03:00
csrf: reuse the cookie in reset password
no need to generate a new cookie each time. Signed-off-by: Nicola Murino <nicola.murino@gmail.com>
This commit is contained in:
@@ -1530,7 +1530,8 @@ func (s *httpdServer) setupWebClientRoutes() {
|
|||||||
s.router.Get(webClientForgotPwdPath, s.handleWebClientForgotPwd)
|
s.router.Get(webClientForgotPwdPath, s.handleWebClientForgotPwd)
|
||||||
s.router.With(jwtauth.Verify(s.csrfTokenAuth, jwtauth.TokenFromCookie)).
|
s.router.With(jwtauth.Verify(s.csrfTokenAuth, jwtauth.TokenFromCookie)).
|
||||||
Post(webClientForgotPwdPath, s.handleWebClientForgotPwdPost)
|
Post(webClientForgotPwdPath, s.handleWebClientForgotPwdPost)
|
||||||
s.router.Get(webClientResetPwdPath, s.handleWebClientPasswordReset)
|
s.router.With(jwtauth.Verify(s.csrfTokenAuth, jwtauth.TokenFromCookie)).
|
||||||
|
Get(webClientResetPwdPath, s.handleWebClientPasswordReset)
|
||||||
s.router.With(jwtauth.Verify(s.csrfTokenAuth, jwtauth.TokenFromCookie)).
|
s.router.With(jwtauth.Verify(s.csrfTokenAuth, jwtauth.TokenFromCookie)).
|
||||||
Post(webClientResetPwdPath, s.handleWebClientPasswordResetPost)
|
Post(webClientResetPwdPath, s.handleWebClientPasswordResetPost)
|
||||||
s.router.With(jwtauth.Verify(s.tokenAuth, jwtauth.TokenFromCookie),
|
s.router.With(jwtauth.Verify(s.tokenAuth, jwtauth.TokenFromCookie),
|
||||||
@@ -1667,7 +1668,8 @@ func (s *httpdServer) setupWebAdminRoutes() {
|
|||||||
s.router.Get(webAdminForgotPwdPath, s.handleWebAdminForgotPwd)
|
s.router.Get(webAdminForgotPwdPath, s.handleWebAdminForgotPwd)
|
||||||
s.router.With(jwtauth.Verify(s.csrfTokenAuth, jwtauth.TokenFromCookie)).
|
s.router.With(jwtauth.Verify(s.csrfTokenAuth, jwtauth.TokenFromCookie)).
|
||||||
Post(webAdminForgotPwdPath, s.handleWebAdminForgotPwdPost)
|
Post(webAdminForgotPwdPath, s.handleWebAdminForgotPwdPost)
|
||||||
s.router.Get(webAdminResetPwdPath, s.handleWebAdminPasswordReset)
|
s.router.With(jwtauth.Verify(s.csrfTokenAuth, jwtauth.TokenFromCookie)).
|
||||||
|
Get(webAdminResetPwdPath, s.handleWebAdminPasswordReset)
|
||||||
s.router.With(jwtauth.Verify(s.csrfTokenAuth, jwtauth.TokenFromCookie)).
|
s.router.With(jwtauth.Verify(s.csrfTokenAuth, jwtauth.TokenFromCookie)).
|
||||||
Post(webAdminResetPwdPath, s.handleWebAdminPasswordResetPost)
|
Post(webAdminResetPwdPath, s.handleWebAdminPasswordResetPost)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -729,7 +729,7 @@ func (s *httpdServer) renderResetPwdPage(w http.ResponseWriter, r *http.Request,
|
|||||||
commonBasePage: getCommonBasePage(r),
|
commonBasePage: getCommonBasePage(r),
|
||||||
CurrentURL: webAdminResetPwdPath,
|
CurrentURL: webAdminResetPwdPath,
|
||||||
Error: err,
|
Error: err,
|
||||||
CSRFToken: createCSRFToken(w, r, s.csrfTokenAuth, xid.New().String(), webBaseAdminPath),
|
CSRFToken: createCSRFToken(w, r, s.csrfTokenAuth, "", webBaseAdminPath),
|
||||||
LoginURL: webAdminLoginPath,
|
LoginURL: webAdminLoginPath,
|
||||||
Title: util.I18nResetPwdTitle,
|
Title: util.I18nResetPwdTitle,
|
||||||
Branding: s.binding.Branding.WebAdmin,
|
Branding: s.binding.Branding.WebAdmin,
|
||||||
|
|||||||
@@ -570,7 +570,7 @@ func (s *httpdServer) renderClientResetPwdPage(w http.ResponseWriter, r *http.Re
|
|||||||
commonBasePage: getCommonBasePage(r),
|
commonBasePage: getCommonBasePage(r),
|
||||||
CurrentURL: webClientResetPwdPath,
|
CurrentURL: webClientResetPwdPath,
|
||||||
Error: err,
|
Error: err,
|
||||||
CSRFToken: createCSRFToken(w, r, s.csrfTokenAuth, xid.New().String(), webBaseClientPath),
|
CSRFToken: createCSRFToken(w, r, s.csrfTokenAuth, "", webBaseClientPath),
|
||||||
LoginURL: webClientLoginPath,
|
LoginURL: webClientLoginPath,
|
||||||
Title: util.I18nResetPwdTitle,
|
Title: util.I18nResetPwdTitle,
|
||||||
Branding: s.binding.Branding.WebClient,
|
Branding: s.binding.Branding.WebClient,
|
||||||
|
|||||||
Reference in New Issue
Block a user