1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 23:33:31 +00:00

clean api url paths from directory traversal (#539)

This commit is contained in:
Kyle Spearrin
2021-11-09 15:37:58 -05:00
committed by GitHub
parent c4fb4a35ab
commit ea29f580a5

View File

@@ -1616,6 +1616,9 @@ export class ApiService implements ApiServiceAbstraction {
headers.set('User-Agent', this.customUserAgent);
}
// Clean path from directory traversal
path = path.split('../').join('');
const requestInit: RequestInit = {
cache: 'no-store',
credentials: this.getCredentials(),