Skip to content

Commit 4211bfc

Browse files
committed
[bugfix] Avoid loading path-looking locales from fs
1 parent f2a813a commit 4211bfc

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/lib/locale/locales.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,11 @@ function chooseLocale(names) {
6262
return globalLocale;
6363
}
6464

65+
function isLocaleNameSane(name) {
66+
// Prevent names that look like filesystem paths, i.e contain '/' or '\'
67+
return name.match('^[^/\\\\]*$') != null;
68+
}
69+
6570
function loadLocale(name) {
6671
var oldLocale = null,
6772
aliasedRequire;
@@ -70,7 +75,8 @@ function loadLocale(name) {
7075
locales[name] === undefined &&
7176
typeof module !== 'undefined' &&
7277
module &&
73-
module.exports
78+
module.exports &&
79+
isLocaleNameSane(name)
7480
) {
7581
try {
7682
oldLocale = globalLocale._abbr;

0 commit comments

Comments
 (0)