Skip to content

Domain Cookie Bug (with solution) #104

Open
@JoniJnm

Description

@JoniJnm

Firesheep should remove the "www." from the domain name when stores a cookie.

For example, tuenti.com needs the change.

In ff-sidebar.js
Search:
deleteDomainCookies(cookieUri);

Add later:
var domain = cookieUri.host.toString();
if (domain.substr(0,4)=='www.') domain = domain.substr(4);

Change
';domain=.' + cookieUri.host;

By
';domain=.' + domain;

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions