Skip to content

Commit f01c26a

Browse files
authored
Merge commit from fork
* Fix backtracking protection * Add test
1 parent 0c71192 commit f01c26a

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

index.js

+9-3
Original file line numberDiff line numberDiff line change
@@ -72,20 +72,26 @@ function pathToRegexp(path, keys, options) {
7272
path = path.replace(
7373
/\\.|(\/)?(\.)?:(\w+)(\(.*?\))?(\*)?(\?)?|[.*]|\/\(/g,
7474
function (match, slash, format, key, capture, star, optional, offset) {
75-
pos = offset + match.length;
76-
7775
if (match[0] === '\\') {
7876
backtrack += match;
77+
pos += 2;
7978
return match;
8079
}
8180

8281
if (match === '.') {
8382
backtrack += '\\.';
8483
extraOffset += 1;
84+
pos += 1;
8585
return '\\.';
8686
}
8787

88-
backtrack = slash || format ? '' : path.slice(pos, offset);
88+
if (slash || format) {
89+
backtrack = '';
90+
} else {
91+
backtrack += path.slice(pos, offset);
92+
}
93+
94+
pos = offset + match.length;
8995

9096
if (match === '*') {
9197
extraOffset += 3;

test.js

+4
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ describe('path-to-regexp', function () {
88
}, /path must be a string, array of strings, or regular expression/);
99
});
1010

11+
it('should generate a regex without backtracking', function () {
12+
assert.deepEqual(pathToRegExp('/:a-:b'), /^(?:\/([^/]+?))-(?:((?:(?!\/|-).)+?))\/?$/i);
13+
});
14+
1115
describe('strings', function () {
1216
it('should match simple paths', function () {
1317
var params = [];

0 commit comments

Comments
 (0)