mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-21 22:50:59 -05:00
fix: sanitise links passed to react-router
fix: flip protocol sanitisation to use a whitelist
This commit is contained in:
parent
61a06c3f1a
commit
47bfaad508
1 changed files with 23 additions and 2 deletions
|
@ -13,6 +13,27 @@ const ALLOWED_ORIGINS = [
|
|||
"local.revolt.chat",
|
||||
];
|
||||
|
||||
const PROTOCOL_WHITELIST = [
|
||||
"https",
|
||||
"ftp",
|
||||
"ftps",
|
||||
"mailto",
|
||||
"news",
|
||||
"irc",
|
||||
"gopher",
|
||||
"nntp",
|
||||
"feed",
|
||||
"telnet",
|
||||
"mms",
|
||||
"rtsp",
|
||||
"svn",
|
||||
"git",
|
||||
"tel",
|
||||
"fax",
|
||||
"xmpp",
|
||||
"magnet",
|
||||
];
|
||||
|
||||
export function determineLink(href?: string): LinkType {
|
||||
let internal,
|
||||
url: URL | null = null;
|
||||
|
@ -22,13 +43,13 @@ export function determineLink(href?: string): LinkType {
|
|||
url = new URL(href, location.href);
|
||||
|
||||
if (ALLOWED_ORIGINS.includes(url.hostname)) {
|
||||
const path = url.pathname;
|
||||
const path = url.pathname.replace(/[^A-z0-9/]/g, "");
|
||||
return { type: "navigate", path };
|
||||
}
|
||||
} catch (err) {}
|
||||
|
||||
if (!internal && url) {
|
||||
if (!url.protocol.startsWith("javascript")) {
|
||||
if (PROTOCOL_WHITELIST.includes(url.protocol)) {
|
||||
return { type: "external", href, url };
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue