WhoRoger@lemmy.world to Mildly Infuriating@lemmy.worldEnglish · edit-21 year agoWebsites telling me what I can do with my own browser so they can have their pointless cookieslemmy.worldimagemessage-square76fedilinkarrow-up177arrow-down13file-text
arrow-up174arrow-down1imageWebsites telling me what I can do with my own browser so they can have their pointless cookieslemmy.worldWhoRoger@lemmy.world to Mildly Infuriating@lemmy.worldEnglish · edit-21 year agomessage-square76fedilinkfile-text
minus-squareWhoRoger@lemmy.worldOPlinkfedilinkEnglisharrow-up3·1 year agoI’ll look into that. I believe web sites shouldn’t have any way to detect private mode, right?
minus-squareEavolution@kbin.sociallinkfedilinkarrow-up2·1 year agoI wonder if it tries to save a cookie then read it back? I don’t really know how any of this works but that sounds like a way to detect it that’s fairly infallible.
minus-squaredekatron@lemmy.fmhy.mllinkfedilinkEnglisharrow-up1·1 year agoThere are ways to detect private browsing by querying browser features or behaviours that are different in private browsing. For example, in Firefox calling Navigator.serviceworker returns undefined if private browsing is enabled. Check out this script for ways to detect this in popular browsers: https://github.com/Joe12387/detectIncognito/blob/main/src/detectIncognito.ts
minus-squarecuriosityLynx@kbin.sociallinkfedilinkarrow-up1arrow-down1·1 year agoWriting a cookie and reading it back should work just fine even in incognito mode. It just gets deleted once incognito is closed.
minus-squareJuxtaposedJaguar@lemmy.mllinkfedilinkEnglisharrow-up1·1 year agoMaybe incognito enforces CSP more strictly.
I’ll look into that. I believe web sites shouldn’t have any way to detect private mode, right?
I wonder if it tries to save a cookie then read it back? I don’t really know how any of this works but that sounds like a way to detect it that’s fairly infallible.
There are ways to detect private browsing by querying browser features or behaviours that are different in private browsing.
For example, in Firefox calling
Navigator.serviceworker
returnsundefined
if private browsing is enabled.Check out this script for ways to detect this in popular browsers:
https://github.com/Joe12387/detectIncognito/blob/main/src/detectIncognito.ts
Writing a cookie and reading it back should work just fine even in incognito mode. It just gets deleted once incognito is closed.
Maybe incognito enforces CSP more strictly.