Skip to content

Commit 179b177

Browse files
jackfromeastpatak-dev
authored andcommitted
fix: avoid DOM Clobbering gadget in getRelativeUrlFromDocument (#18115)
1 parent 6820bb3 commit 179b177

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/vite/src/node/build.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1133,7 +1133,7 @@ const getRelativeUrlFromDocument = (relativePath: string, umd = false) =>
11331133
getResolveUrl(
11341134
`'${escapeId(partialEncodeURIPath(relativePath))}', ${
11351135
umd ? `typeof document === 'undefined' ? location.href : ` : ''
1136-
}document.currentScript && document.currentScript.src || document.baseURI`,
1136+
}document.currentScript && document.currentScript.tagName.toUpperCase() === 'SCRIPT' && document.currentScript.src || document.baseURI`,
11371137
)
11381138

11391139
const getFileUrlFromFullPath = (path: string) =>

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy