samyk / evercookie

Produces persistent, respawning "super" cookies in a browser, abusing over a dozen techniques. Its goal is to identify users after they've removed standard cookies and other privacy data such as Flash cookies (LSOs), HTML5 storage, SilverLight storage, and others.

Home Page:https://samy.pl/evercookie/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Evercookie only storing integer values?

andreim27 opened this issue · comments

The candidates var in the _evercookie method is a list. It is used to count the number of times a particular cookie value has been stored. The values being counted are indices into this list, meaning values can only be integers (or strings of integers).
So if I try to store something like this: ec.set("cookie_name", "cookie_value"), when I later retrieve this (with or without a callback function), the return value is undefined.

Am I overlooking something very obvious here?