Releases: duckduckgo/tracker-radar
Releases · duckduckgo/tracker-radar
2021.11
Updated domains and entities from November crawl
2021.10
Updated domains and entities from October crawl
Update from 9/16 crawl
Updated domains and entities from September crawl.
2021.08
Update from August crawl
2021.07
Update from July crawl
2021.06
Update from June crawl
2021.05
- Update from May crawl
2021.04
- 📨 Update from April crawl
- 🐦 Dataset now contains data about calls to
document.interestCohort
and takes it into account in api_fingerprinting_weights.json
2021.03
2021.02
- 📨 Update from February crawl
‼️ Tacker Radar doubled in size - we now have over 23k domains (up from 11.8k) because we stopped filtering out domains that don't set cookies or call JS APIs (PR).- 🍪 We are now including information about first party cookies being set by 3rd party scripts (PR):
"resources": [
{
"rule": "google-analytics\\.com\\/analytics\\.js",
"firstPartyCookies": {
"_ga": {
"ttl": 63072001, // median expiry of this cookie, in seconds from set time.
"length": 26, // mean string length of the cookie value
"prevalence": 0.23242023108118448, // proportion of sites in the crawl where this cookie was set by this script
"uniqueness": 1 // number of distinct values seen divided by times set (0 = we have only seen one value, 1 = unique value on very load)
},
...
- 🍪 AND information about first party cookie values being sent in another 3rd party request (PR):
"resources": [
...
{
"firstPartyCookiesSent": {
"_ga": 0.03884765475552835, // proportion of sites in the crawl where the value of this 1st party cookie was sent to this endpoint
"G_ENABLED_IDPS": 0.0005126635549774275
},
- 🔧 We have fixed last few places where we were not using private entries for calculating eTLD+1 (PR).