blob: c2adffc03614488cf34ce0cc1ccbc5996ab2d340 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
/**
* Validates a redirect URL to prevent open redirect attacks.
* Only allows:
* - Relative paths starting with "/" (but not "//" to prevent protocol-relative URLs)
* - The karakeep:// scheme for the mobile app
*
* @returns The validated URL if valid, otherwise undefined.
*/
export function validateRedirectUrl(
url: string | null | undefined,
): string | undefined {
if (!url) {
return undefined;
}
// Allow relative paths starting with "/" but not "//" (protocol-relative URLs)
if (url.startsWith("/") && !url.startsWith("//")) {
return url;
}
// Allow karakeep:// scheme for mobile app deep links
if (url.startsWith("karakeep://")) {
return url;
}
// Reject all other schemes (http, https, javascript, data, etc.)
return undefined;
}
/**
* Checks if the redirect URL is a mobile app deep link.
*/
export function isMobileAppRedirect(url: string): boolean {
return url.startsWith("karakeep://");
}
|