Skip to content

Commit

Permalink
fix(flat-pages): avoid JavaScript protocol in redirect URL (#2135)
Browse files Browse the repository at this point in the history
  • Loading branch information
hyrious committed Mar 20, 2024
1 parent 68a4710 commit 216c931
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion packages/flat-pages/src/LoginPage/utils/state.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,17 @@ export function useMachine(): [any, (type: ToggleEventsType) => void] {
return [currentState, setCurrentState];
}

const isJavaScriptProtocol =
/^[\u0000-\u001F ]*j[\r\n\t]*a[\r\n\t]*v[\r\n\t]*a[\r\n\t]*s[\r\n\t]*c[\r\n\t]*r[\r\n\t]*i[\r\n\t]*p[\r\n\t]*t[\r\n\t]*\:/i;

function sanitizeURL(url: string | null): string | null {
if (url && isJavaScriptProtocol.test(url)) {
console.warn("Refuse to redirect to", url);
return null;
}
return url;
}

export interface LoginState {
currentState: any;
setCurrentState: (type: ToggleEventsType) => void;
Expand All @@ -55,7 +66,7 @@ export function useLoginState(): LoginState {
const [loginResult, setLoginResult] = useState<LoginProcessResult | null>(null);

const [redirectURL] = useState(() =>
new URLSearchParams(window.location.search).get("redirect"),
sanitizeURL(new URLSearchParams(window.location.search).get("redirect")),
);

const [currentState, setCurrentState] = useMachine();
Expand Down

0 comments on commit 216c931

Please sign in to comment.