We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2a813a commit 4211bfcCopy full SHA for 4211bfc
src/lib/locale/locales.js
@@ -62,6 +62,11 @@ function chooseLocale(names) {
62
return globalLocale;
63
}
64
65
+function isLocaleNameSane(name) {
66
+ // Prevent names that look like filesystem paths, i.e contain '/' or '\'
67
+ return name.match('^[^/\\\\]*$') != null;
68
+}
69
+
70
function loadLocale(name) {
71
var oldLocale = null,
72
aliasedRequire;
@@ -70,7 +75,8 @@ function loadLocale(name) {
75
locales[name] === undefined &&
76
typeof module !== 'undefined' &&
77
module &&
73
- module.exports
78
+ module.exports &&
79
+ isLocaleNameSane(name)
74
80
) {
81
try {
82
oldLocale = globalLocale._abbr;
0 commit comments