8000 0.95-bugfixes: Apply security fix from [3592] and Windows compatibili… · django/django@a132d41 · GitHub
[go: up one dir, main page]

Skip to content

Commit a132d41

Browse files
committed
0.95-bugfixes: Apply security fix from [3592] and Windows compatibility for same from [3672]
git-svn-id: http://code.djangoproject.com/svn/django/branches/0.95-bugfixes@4360 bcc190cf-cafb-0310-a4f2-bffc1f526a37
1 parent 69fb4ba commit a132d41

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

django/bin/compile-messages.py

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,17 @@ def compile_messages():
1919
if f.endswith('.po'):
2020
sys.stderr.write('processing file %s in %s\n' % (f, dirpath))
2121
pf = os.path.splitext(os.path.join(dirpath, f))[0]
22-
cmd = 'msgfmt -o "%s.mo" "%s.po"' % (pf, pf)
22+
# Store the names of the .mo and .po files in an environment
23+
# variable, rather than doing a string replacement into the
24+
# command, so that we can take advantage of shell quoting, to
25+
# quote any malicious characters/escaping.
26+
# See http://cyberelk.net/tim/articles/cmdline/ar01s02.html
27+
os.environ['djangocompilemo'] = pf + '.mo'
28+
os.environ['djangocompilepo'] = pf + '.po'
29+
if sys.platform == 'win32': # Different shell-variable syntax
30+
cmd = 'msgfmt -o "%djangocompilemo%" "%djangocompilepo%"'
31+
else:
32+
cmd = 'msgfmt -o "$djangocompilemo" "$djangocompilepo"'
2333
os.system(cmd)
2434

2535
if __name__ == "__main__":

0 commit comments

Comments
 (0)
0