Skip to content

Commit 415d660

Browse files
authored
Snyk js braces 6838727 (#40)
* Remove maxSymbols from README * Revert "Merge pull request #37 from coderaiser/fix/vulnerability" This reverts commit a5851e5, reversing changes made to 98414f9. * Lower defaultLength to 10000
1 parent 190510f commit 415d660

File tree

6 files changed

+24
-79
lines changed

6 files changed

+24
-79
lines changed

.verb.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ console.log(braces.expand('a{b}c'));
167167

168168
**Type**: `Number`
169169

170-
**Default**: `65,536`
170+
**Default**: `10,000`
171171

172172
**Description**: Limit the length of the input string. Useful when the input string is generated or your application allows users to pass a string, et cetera.
173173

README.md

+1-13
Original file line numberDiff line numberDiff line change
@@ -178,26 +178,14 @@ console.log(braces.expand('a{b}c'));
178178

179179
**Type**: `Number`
180180

181-
**Default**: `65,536`
181+
**Default**: `10,000`
182182

183183
**Description**: Limit the length of the input string. Useful when the input string is generated or your application allows users to pass a string, et cetera.
184184

185185
```js
186186
console.log(braces('a/{b,c}/d', { maxLength: 3 })); //=> throws an error
187187
```
188188

189-
### options.maxSymbols
190-
191-
**Type**: `Number`
192-
193-
**Default**: `1024`
194-
195-
**Description**: Limit the count of unique symbols the input string.
196-
197-
```js
198-
console.log(braces('a/{b,c}/d', { maxSymbols: 2 })); //=> throws an error
199-
```
200-
201189
### options.expand
202190

203191
**Type**: `Boolean`

lib/constants.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
'use strict';
22

33
module.exports = {
4-
MAX_LENGTH: 1024 * 64,
5-
MAX_SYMBOLS: 1024,
4+
MAX_LENGTH: 10000,
65

76
// Digits
87
CHAR_0: '0', /* 0 */

lib/parse.js

+21-41
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
'use strict';
22

33
const stringify = require('./stringify');
4-
const {isCorrectBraces, validateInput} = require('./validate-input');
54

65
/**
76
* Constants
87
*/
98

109
const {
1110
MAX_LENGTH,
12-
MAX_SYMBOLS,
1311
CHAR_BACKSLASH, /* \ */
1412
CHAR_BACKTICK, /* ` */
1513
CHAR_COMMA, /* , */
@@ -36,11 +34,6 @@ const parse = (input, options = {}) => {
3634
}
3735

3836
let opts = options || {};
39-
40-
validateInput(input, {
41-
maxSymbols: opts.maxSymbols || MAX_SYMBOLS,
42-
});
43-
4437
let max = typeof opts.maxLength === 'number' ? Math.min(MAX_LENGTH, opts.maxLength) : MAX_LENGTH;
4538
if (input.length > max) {
4639
throw new SyntaxError(`Input length (${input.length}), exceeds max characters (${max})`);
@@ -311,43 +304,30 @@ const parse = (input, options = {}) => {
311304
push({ type: 'text', value });
312305
}
313306

314-
flattenBlocks(stack)
315-
markImbalancedBraces(ast);
316-
push({ type: 'eos' });
317-
318-
return ast;
319-
};
320-
321-
module.exports = parse;
322-
323-
function markImbalancedBraces({nodes}) {
324307
// Mark imbalanced braces and brackets as invalid
325-
for (const node of nodes) {
326-
if (!node.nodes && !node.invalid) {
327-
if (node.type === 'open') node.isOpen = true;
328-
if (node.type === 'close') node.isClose = true;
329-
if (!node.nodes) node.type = 'text';
330-
331-
node.invalid = true;
332-
}
333-
334-
delete node.parent;
335-
delete node.prev;
336-
}
337-
}
338-
339-
function flattenBlocks(stack) {
340-
let block;
341308
do {
342309
block = stack.pop();
343310

344-
if (block.type === 'root')
345-
continue;
311+
if (block.type !== 'root') {
312+
block.nodes.forEach(node => {
313+
if (!node.nodes) {
314+
if (node.type === 'open') node.isOpen = true;
315+
if (node.type === 'close') node.isClose = true;
316+
if (!node.nodes) node.type = 'text';
317+
node.invalid = true;
318+
}
319+
});
346320

347-
// get the location of the block on parent.nodes (block's siblings)
348-
let parent = stack.at(-1);
349-
let index = parent.nodes.indexOf(block);
350-
// replace the (invalid) block with its nodes
351-
parent.nodes.splice(index, 1, ...block.nodes);
321+
// get the location of the block on parent.nodes (block's siblings)
322+
let parent = stack[stack.length - 1];
323+
let index = parent.nodes.indexOf(block);
324+
// replace the (invalid) block with it's nodes
325+
parent.nodes.splice(index, 1, ...block.nodes);
326+
}
352327
} while (stack.length > 0);
353-
}
328+
329+
push({ type: 'eos' });
330+
return ast;
331+
};
332+
333+
module.exports = parse;

lib/validate-input.js

-12
This file was deleted.

test/braces.parse.js

-10
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,6 @@ describe('braces.parse()', () => {
1010
let MAX_LENGTH = 1024 * 64;
1111
assert.throws(() => parse('.'.repeat(MAX_LENGTH + 2)));
1212
});
13-
it('should throw an error when symbols exceeds max symbols count default', () => {
14-
let SYMBOLS= 1024;
15-
assert.throws(() => parse('.'.repeat(MAX_SYMBOLS * 2)));
16-
});
17-
it('should throw an error when symbols exceeds max symbols count ', () => {
18-
let SYMBOLS= 2;
19-
assert.throws(() => parse('...', {
20-
maxSymbols: 2,
21-
}));
22-
});
2313
});
2414

2515
describe('valid', () => {

0 commit comments

Comments
 (0)