You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[x ] I have read the troubleshooting guide, done the checks and confirmed this is caused by arkenfox
unchecked issues may will be closed as invalid
馃煪 REQUIRED INFO
Browser version & OS: Firefox 119.0.1 & Ubuntu 22.04.3 LTS
Steps to Reproduce (STR): Set user_pref("places.history.enabled", false);
Expected result: about:networking#http page should be empty since browsing history is disabled
Actual result: about:networking#http lists sites that have been visited in current session
Console errors and warnings: N/A
Anything else you deem worth mentioning:
I've found that the only way to prevent about:networking#http from logging sites that I've visited is to use PB mode (private browsing), which may conflict with the statement under Index 5001 that users "can achieve [no "persistent" disk state] in normal mode". I've gone through StaticPrefList.yaml, hoping to find a relevant preference to modify, but I haven't had much success.
* [NOTE] The P in PB mode can be misleading: it means no "persistent" disk state such as history,
* caches, searches, cookies, localStorage, IndexedDB etc (which you can achieve in normal mode).
* In fact, PB mode limits or removes the ability to control some of these, and you need to quit
* Firefox to clear them.
so the note refers to site data - and some items are orthoganal, such as history (which we also clear). But totally avoiding disk state for the entire app is impossible and even Tor Browser don't claim to (well, the docs are going to be rewritten) because apps can't fully control the OS.
anyway, PB mode does do some things differently - i.e in some cases avoiding disk entirely by using memory - or writing to disk encrypted with a session-only memory-only key (and cleaning up on close and handling ungraceful exits - i.e cleanup on start). I'm not 100% sure what PB mode does with history (from a quick look it's not recorded, but back/forward still works and closed tabs are recorded, just not history - weird: there are lots of gaps in this area)
But no-one has ever claimed to prevent per-session data - and we sanitize history on close. So I'm not sure what it is you are trying to protect from - your threat model sounds like you should just use Tor Browser or Mullvad Browser
馃煡 https://github.com/arkenfox/user.js/wiki/5.2-Troubleshooting
maywill be closed as invalid馃煪 REQUIRED INFO
user_pref("places.history.enabled", false);
about:networking#http
page should be empty since browsing history is disabledabout:networking#http
lists sites that have been visited in current sessionI've found that the only way to prevent
about:networking#http
from logging sites that I've visited is to use PB mode (private browsing), which may conflict with the statement under Index 5001 that users "can achieve [no "persistent" disk state] in normal mode". I've gone through StaticPrefList.yaml, hoping to find a relevant preference to modify, but I haven't had much success.My modified preferences are the following:
click me for details
The text was updated successfully, but these errors were encountered: