Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ env:
- NPM_VERSION="^3.0.0"
matrix:
include:
- node_js: "0.12"
- node_js: "6"
env:
- node_js: "4"
- node_js: "8"
env:
before_install:
- "npm i -g npm@\"$NPM_VERSION\""
Expand Down
14 changes: 13 additions & 1 deletion core.js
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,19 @@ var Regex = Checkit.Regex = {
luhn: /^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\d{3})\d{11})$/,
natural: /^[0-9]+$/i,
naturalNonZero: /^[1-9][0-9]*$/i,
url: /^((http|https):\/\/(\w+:{0,1}\w*@)?(\S+)|)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?$/,
url: { 'test': function(str) {
// The url regex is vulnerable to catastrophic backtracking: O(n^2).
// It blows up around 50K+ chars, so enforce a much lower limit.
// 2K is about the de facto limit in web browsers.
// https://stackoverflow.com/questions/417142/what-is-the-maximum-length-of-a-url-in-different-browsers
const MAX_URL_LEN = 5000;
if (MAX_URL_LEN < str.length) {
return false;
}
const urlRE = /^((http|https):\/\/(\w+:?\w*@)?(\S+)|)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?$/;
return urlRE.test(str);
}
},
uuid: /^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/i
};

Expand Down
18 changes: 18 additions & 0 deletions test/block.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ return {

url1: 'http://google.com',
url2: 'https://google.com',
urlREDOS: genREDOSTest_url(),

uuidv1: uuid.v1(),
uuidv4: uuid.v4(),
Expand All @@ -85,3 +86,20 @@ bmVyYXRpb24gb2Yga25vd2xlZGdlLCBleGNlZWRzIHRoZSBzaG9ydCB2ZWhlbWVuY2Ugb2YgYW55IGNh
};

})();

/* The URL regex is vulnerable to REDOS. */
function genREDOSTest_url() {
const prefix = 'http://a';
const pump = 'a';
const suffix = '\t';

const nPumps = 50000;

let url = prefix;
for (let i = 0; i < nPumps; i++) {
url += pump;
}
url += suffix;

return url;
}
8 changes: 8 additions & 0 deletions test/spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,14 @@ describe('Checkit', function() {
}).run(testBlock)
});

it('should (quickly) reject an invalid REDOS url', function() {
return Checkit({
urlREDOS: ['url']
}).run(testBlock).catch(function() {
return true;
}).then(function(val) { equal(val, true) })
}).timeout(1000);

});

describe('misc', function() {
Expand Down