Filter out %0A from paths

This commit is contained in:
Joas Schilling 2016-09-01 10:06:06 +02:00
parent a98e66ddb0
commit 778ae8abd5
No known key found for this signature in database
GPG Key ID: E166FD8976B3BAC8
2 changed files with 8 additions and 2 deletions

View File

@ -1327,6 +1327,10 @@
return OC.linkTo('files', 'index.php')+"?dir="+ encodeURIComponent(dir).replace(/%2F/g, '/');
},
/**
* @param {string} path
* @returns {boolean}
*/
_isValidPath: function(path) {
var sections = path.split('/');
for (var i = 0; i < sections.length; i++) {
@ -1334,7 +1338,8 @@
return false;
}
}
return true;
return path.toLowerCase().indexOf(decodeURI('%0a')) === -1;
},
/**

View File

@ -1333,9 +1333,10 @@ describe('OCA.Files.FileList tests', function() {
'/abc/..',
'/abc/../',
'/../abc/',
'/foo%0Abar/',
'/another\\subdir/../foo\\../bar\\..\\file/..\\folder/../'
], function(path) {
fileList.changeDirectory(path);
fileList.changeDirectory(decodeURI(path));
expect(fileList.getCurrentDirectory()).toEqual('/');
});
});