Skip to content

Commit

Permalink
dom.enable_user_timing -> false
Browse files Browse the repository at this point in the history
Hopefully this would also mitigate against ASLR^Cache (AnC)

See: http://www.cs.vu.nl//~herbertb/download/papers/anc_ndss17.pdf
  • Loading branch information
pyllyukko committed Feb 20, 2017
1 parent fca0827 commit f37fceb
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions user.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@
* *
******************************************************************************/

// Make sure the User Timing API does not provide a new high resolution timestamp
// https://trac.torproject.org/projects/tor/ticket/16336
user_pref("dom.enable_user_timing", false);

// Disable "Are you sure you want to leave this page?" popups
// https://support.mozilla.org/en-US/questions/1043508
user_pref("dom.disable_beforeunload", true);
Expand Down

1 comment on commit f37fceb

@pyllyukko
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.