Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

fix($browser): do not decode cookies that do not appear encoded #9225

Closed
wants to merge 1 commit into from
Closed
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
12 changes: 10 additions & 2 deletions src/ng/browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,14 @@ function Browser(window, document, $log, $sniffer) {
var lastCookieString = '';
var cookiePath = self.baseHref();

function safeDecodeURIComponent(str) {
try {
return decodeURIComponent(str);
} catch (e) {
return str;
}
}

/**
* @name $browser#cookies
*
Expand Down Expand Up @@ -319,12 +327,12 @@ function Browser(window, document, $log, $sniffer) {
cookie = cookieArray[i];
index = cookie.indexOf('=');
if (index > 0) { //ignore nameless cookies
name = decodeURIComponent(cookie.substring(0, index));
name = safeDecodeURIComponent(cookie.substring(0, index));
// the first value that is seen for a cookie is the most
// specific one. values for the same cookie name that
// follow are for less specific paths.
if (lastCookies[name] === undefined) {
lastCookies[name] = decodeURIComponent(cookie.substring(index + 1));
lastCookies[name] = safeDecodeURIComponent(cookie.substring(index + 1));
}
}
}
Expand Down
11 changes: 8 additions & 3 deletions test/ng/browserSpecs.js
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ describe('browser', function() {
expect(oldVal).not.toBeDefined();
});

it('should escape both name and value', function() {
it('should encode both name and value', function() {
browser.cookies('cookie1=', 'val;ue');
browser.cookies('cookie2=bar;baz', 'val=ue');

Expand Down Expand Up @@ -312,7 +312,7 @@ describe('browser', function() {
expect(browser.cookies()['foo']).toBe('"first"');
});

it ('should unescape cookie values that were escaped by puts', function() {
it ('should decode cookie values that were encoded by puts', function() {
document.cookie = "cookie2%3Dbar%3Bbaz=val%3Due;path=/";
expect(browser.cookies()['cookie2=bar;baz']).toEqual('val=ue');
});
Expand All @@ -324,10 +324,15 @@ describe('browser', function() {
expect(browser.cookies()['cookie name']).not.toBeDefined();
});

it('should unscape special characters in cookie values', function() {
it('should decode special characters in cookie values', function() {
document.cookie = 'cookie_name=cookie_value_%E2%82%AC';
expect(browser.cookies()['cookie_name']).toEqual('cookie_value_€');
});

it('should not decode cookie values that do not appear to be encoded', function() {
document.cookie = 'cookie_name=cookie_value_%XX';
expect(browser.cookies()['cookie_name']).toEqual('cookie_value_%XX');
});
});


Expand Down