Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: prevent open redirect with /login?redirect=<url> #4

Merged
merged 2 commits into from
Feb 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions api/src/auth.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

use crate::api::ApiError;
use crate::db::*;
use crate::util::sanitize_redirect_url;
use crate::util::ApiResult;
use chrono::DateTime;
use chrono::Duration;
Expand Down Expand Up @@ -203,10 +204,13 @@ pub async fn login_handler(req: Request<Body>) -> ApiResult<Response<Body>> {
.set_pkce_challenge(pkce_code_challenge)
.url();

let redirect_url = req
let mut redirect_url = req
.query("redirect")
.and_then(|url| urlencoding::decode(url).map(|url| url.into_owned()).ok())
.unwrap_or("/".to_string());

redirect_url = sanitize_redirect_url(&redirect_url);

Span::current().record("redirect", &redirect_url);

let db = req.data::<Database>().unwrap();
Expand Down Expand Up @@ -286,10 +290,12 @@ pub async fn login_callback_handler(

#[instrument(name = "GET /logout", skip(req), err, fields(redirect))]
pub async fn logout_handler(req: Request<Body>) -> ApiResult<Response<Body>> {
let redirect_url = req
let mut redirect_url = req
.query("redirect")
.and_then(|url| urlencoding::decode(url).map(|url| url.into_owned()).ok())
.unwrap_or("/".to_string());

redirect_url = sanitize_redirect_url(&redirect_url);
Span::current().record("redirect", &redirect_url);

Ok(
Expand Down
48 changes: 48 additions & 0 deletions api/src/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ use tracing::error;
use tracing::field;
use tracing::instrument;
use tracing::Span;
use url::Url;
use uuid::Uuid;

use crate::api::ApiError;
Expand Down Expand Up @@ -237,6 +238,38 @@ pub fn pagination(req: &Request<Body>) -> (i64, i64) {
(start, limit)
}

// Sanitize redirect urls
// - Remove origin from Url: https://evil.com -> /
// - Replace multiple slashes with one slash to remove prevent
// relative url bypass: //evil.com/foo -> /foo
// - Remove /../ and /./ from path segments
pub fn sanitize_redirect_url(raw: &str) -> String {
let base = Url::parse("http://localhost/").unwrap();
let url = base.join(raw).unwrap_or(base.clone());

let mut sanitized = "".to_string();

if let Some(segments) = url.path_segments() {
for seg in segments {
if seg.is_empty() {
continue;
}

sanitized.push_str(&format!("/{}", seg));
}
}

if let Some(query) = url.query() {
sanitized.push_str(&format!("?{}", query));
}

if sanitized.is_empty() {
"/".to_string()
} else {
sanitized
}
}

pub trait RequestIdExt {
fn param_uuid(&self, name: &str) -> Result<Uuid, ApiError>;
fn param_scope(&self) -> Result<ScopeName, ApiError>;
Expand Down Expand Up @@ -333,6 +366,7 @@ pub mod test {
use crate::db::{Database, NewUser, User};
use crate::errors_internal::ApiErrorStruct;
use crate::gcp::FakeGcsTester;
use crate::util::sanitize_redirect_url;
use crate::ApiError;
use crate::MainRouterOptions;
use hyper::http::HeaderName;
Expand Down Expand Up @@ -768,4 +802,18 @@ pub mod test {
assert!(!t.user3.user.is_staff);
assert!(t.staff_user.user.is_staff);
}

#[test]
fn sanitize_url_test() {
assert_eq!(sanitize_redirect_url("/foo"), "/foo");
assert_eq!(sanitize_redirect_url("//evil.com/bar"), "/bar");
assert_eq!(
sanitize_redirect_url("//evil.com//bar?foo=bar"),
"/bar?foo=bar"
);
assert_eq!(sanitize_redirect_url("https://evil.com"), "/");
assert_eq!(sanitize_redirect_url("/../foo"), "/foo");
assert_eq!(sanitize_redirect_url("/../foo/../bar"), "/bar");
assert_eq!(sanitize_redirect_url("/foo/./bar"), "/foo/bar");
}
}
Loading