Files
sign/packages/lib/getSafeRedirectUrl.ts

25 lines
725 B
TypeScript
Raw Normal View History

2023-01-14 16:41:53 +01:00
// It ensures that redirection URL safe where it is accepted through a query params or other means where user can change it.
export const getSafeRedirectUrl = (url = "") => {
if (!url) {
return null;
}
2023-01-11 14:36:59 +01:00
2023-01-14 16:41:53 +01:00
//It is important that this fn is given absolute URL because urls that don't start with HTTP can still deceive browser into redirecting to another domain
if (url.search(/^https?:\/\//) === -1) {
throw new Error("Pass an absolute URL");
}
2023-01-11 14:36:59 +01:00
2023-01-14 16:41:53 +01:00
const urlParsed = new URL(url);
2023-01-11 14:36:59 +01:00
2023-01-14 16:41:53 +01:00
// Avoid open redirection security vulnerability
if (
!["CONSOLE_URL", "WEBAPP_URL", "WEBSITE_URL"].some(
(u) => new URL(u).origin === urlParsed.origin
)
) {
url = `${"WEBAPP_URL"}/`;
}
2023-01-11 14:36:59 +01:00
2023-01-14 16:41:53 +01:00
return url;
};