From 40c825776dace42e03c08b6362571c01cf4921d5 Mon Sep 17 00:00:00 2001 From: CronyAkatsuki Date: Mon, 6 Nov 2023 13:52:56 +0100 Subject: [PATCH] Higher fingerprinting resistance. --- .config/qutebrowser/config.py | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/.config/qutebrowser/config.py b/.config/qutebrowser/config.py index 294d9d8..18d6b91 100644 --- a/.config/qutebrowser/config.py +++ b/.config/qutebrowser/config.py @@ -34,7 +34,19 @@ c.url.searchengines = { "y": "https://www.youtube.com/results?search_query={}", } +##-- Fingerprinting settings --## +c.content.headers.user_agent = "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.3" +c.content.headers.accept_language = "en-US,en;q=0.5" +c.content.headers.custom = { + "accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" +} +c.content.canvas_reading = False +c.content.webgl = False +c.content.webrtc_ip_handling_policy = "default-public-interface-only" +c.content.geolocation = False +c.content.blocking.method = "both" c.content.javascript.enabled = False +c.content.notifications.enabled = False +c.content.cookies.accept = "never" +c.content.private_browsing = False -# enable dark mode -c.content.webpage.darkmode.enable = True