Skip to content

Commit ec16d21

Browse files
authored
fix: html encode backslashes if used with escape filter or autoescape (#1437)
Backslashes should be html encoded when present in expressions that are passed to the escape filter (including when this happens automatically with autoescape)
1 parent fd50090 commit ec16d21

File tree

4 files changed

+23
-5
lines changed

4 files changed

+23
-5
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Changelog
22
=========
33

4+
3.2.4 (unreleased)
5+
------------------
6+
7+
* HTML encode backslashes when expressions are passed through the escape
8+
filter (including when this is done automatically with autoescape). Merge
9+
of [#1427](https://github.com/mozilla/nunjucks/pull/1427).
10+
411
3.2.3 (Feb 15 2021)
512
-------------------
613

nunjucks/src/lib.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@ var escapeMap = {
88
'"': '"',
99
'\'': ''',
1010
'<': '&lt;',
11-
'>': '&gt;'
11+
'>': '&gt;',
12+
'\\': '&#92;',
1213
};
1314

14-
var escapeRegex = /[&"'<>]/g;
15+
var escapeRegex = /[&"'<>\\]/g;
1516

1617
var exports = module.exports = {};
1718

tests/compiler.js

+11-1
Original file line numberDiff line numberDiff line change
@@ -1976,6 +1976,16 @@
19761976
finish(done);
19771977
});
19781978

1979+
it('should autoescape backslashes', function(done) {
1980+
equal(
1981+
'{{ foo }}',
1982+
{ foo: 'foo \\\' bar' },
1983+
{ autoescape: true },
1984+
'foo &#92;&#39; bar');
1985+
1986+
finish(done);
1987+
});
1988+
19791989
it('should not autoescape when extension set false', function(done) {
19801990
function TestExtension() {
19811991
// jshint validthis: true
@@ -2031,7 +2041,7 @@
20312041
});
20322042

20332043
it('should render regexs', function(done) {
2034-
equal('{{ r/name [0-9] \\// }}',
2044+
equal('{{ r/name [0-9] \\// }}', {}, { autoescape: false },
20352045
'/name [0-9] \\//');
20362046

20372047
equal('{{ r/x/gi }}',

tests/filters.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,9 @@
108108

109109
it('escape', function() {
110110
equal(
111-
'{{ "<html>" | escape }}', {},
111+
'{{ "<html>\\\\" | escape }}', {},
112112
{ autoescape: false },
113-
'&lt;html&gt;');
113+
'&lt;html&gt;&#92;');
114114
});
115115

116116
it('escape skip safe', function() {

0 commit comments

Comments
 (0)