vw_small

Hardened fork of Vaultwarden (https://github.com/dani-garcia/vaultwarden) with fewer features.
git clone https://git.philomathiclife.com/repos/vw_small
Log | Files | Refs | README

commit 819d5e2dc8f5a32b5989fae34cd792eba37f82c8
parent 0de52c6c99737cb1ee0c33c138ccedd7ed955fd5
Author: Jeremy Lin <jjlin@cs.stanford.edu>
Date:   Fri,  1 May 2020 00:23:46 -0700

Use absolute URIs for admin page redirects

This is technically required per RFC 2616 (HTTP/1.1); some proxies will
rewrite a plain `/admin` path to an unexpected URL otherwise.

Diffstat:
Msrc/api/admin.rs | 12+++++++++---
1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/src/api/admin.rs b/src/api/admin.rs @@ -57,6 +57,12 @@ fn admin_path() -> String { format!("{}{}", CONFIG.domain_path(), ADMIN_PATH) } +/// Used for `Location` response headers, which must specify an absolute URI +/// (see https://tools.ietf.org/html/rfc2616#section-14.30). +fn admin_url() -> String { + format!("{}{}", CONFIG.domain(), ADMIN_PATH) +} + #[get("/", rank = 2)] fn admin_login(flash: Option<FlashMessage>) -> ApiResult<Html<String>> { // If there is an error, show it @@ -81,7 +87,7 @@ fn post_admin_login(data: Form<LoginForm>, mut cookies: Cookies, ip: ClientIp) - if !_validate_token(&data.token) { error!("Invalid admin token. IP: {}", ip.ip); Err(Flash::error( - Redirect::to(admin_path()), + Redirect::to(admin_url()), "Invalid admin token, please try again.", )) } else { @@ -97,7 +103,7 @@ fn post_admin_login(data: Form<LoginForm>, mut cookies: Cookies, ip: ClientIp) - .finish(); cookies.add(cookie); - Ok(Redirect::to(admin_path())) + Ok(Redirect::to(admin_url())) } } @@ -186,7 +192,7 @@ fn test_smtp(data: Json<InviteData>, _token: AdminToken) -> EmptyResult { #[get("/logout")] fn logout(mut cookies: Cookies) -> Result<Redirect, ()> { cookies.remove(Cookie::named(COOKIE_NAME)); - Ok(Redirect::to(admin_path())) + Ok(Redirect::to(admin_url())) } #[get("/users")]