Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tor Browser
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
The Tor Project
Applications
Tor Browser
Commits
cd73f25b
Commit
cd73f25b
authored
Mar 10, 2023
by
ma1
Committed by
Pier Angelo Vendrame
Mar 10, 2023
Browse files
Options
Downloads
Patches
Plain Diff
fixup! Firefox preference overrides.
parent
065785a8
No related branches found
No related tags found
1 merge request
!578
Bug 41667 & 41671: Defense-in-depth for WebRTC
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
browser/app/profile/001-base-profile.js
+4
-0
4 additions, 0 deletions
browser/app/profile/001-base-profile.js
with
4 additions
and
0 deletions
browser/app/profile/001-base-profile.js
+
4
−
0
View file @
cd73f25b
...
...
@@ -370,6 +370,10 @@ pref("network.http.http2.enable-hpack-dump", false, locked);
// (defense in depth measure)
pref
(
"
network.gio.supported-protocols
"
,
""
);
pref
(
"
media.peerconnection.enabled
"
,
false
);
// Disable WebRTC interfaces
// tor-browser#41667 - Defense in depth: use mDNS to avoid local IP leaks on Android too if user enables WebRTC
pref
(
"
media.peerconnection.ice.obfuscate_host_addresses
"
,
true
);
// tor-browser#41671 - Defense in depth: connect using TURN only, to avoid IP leaks if user enables WebRTC
pref
(
"
media.peerconnection.ice.relay_only
"
,
true
);
// Disables media devices but only if `media.peerconnection.enabled` is set to
// `false` as well. (see bug 16328 for this defense-in-depth measure)
pref
(
"
media.navigator.enabled
"
,
false
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment