Skip to content
Open
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
Binary file modified packages/editor/src/core/extensions/custom-link/extension.tsx
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,16 @@ export function clickHandler(options: ClickHandlerOptions): Plugin {
const target = link?.target ?? attrs.target;

if (link && href) {
// Defence-in-depth: link.href is the browser-resolved URL (whitespace
// already stripped by the browser's WHATWG URL parser), so a protocol
// check here is sufficient to catch any dangerous URI that slipped past
// the editor's parse/render-time guards. Matches the blocked-scheme list
// in isValidHttpUrl (javascript:, data:, vbscript:, file:, about:)
// to keep the policy consistent (GHSA-v2vv-7wq3-8w2j).
if (/^(javascript|data|vbscript|file|about):/i.test(href)) {
return false;
}

window.open(href, target);

return true;
Expand Down
Loading