ma1 pushed to branch tor-browser-115.23.0esr-13.5-1 at The Tor Project / Applications / Tor Browser
Commits:
-
b7bbc040
by hackademix at 2025-04-24T15:54:21+02:00
-
336e1eba
by Hubert Boma Manilla at 2025-04-24T18:11:51+02:00
3 changed files:
- browser/app/profile/001-base-profile.js
- devtools/client/netmonitor/src/utils/powershell.js
- devtools/client/netmonitor/test/browser_net_copy_as_powershell.js
Changes:
| ... | ... | @@ -171,6 +171,12 @@ pref("browser.safebrowsing.provider.mozilla.updateURL", ""); |
| 171 | 171 | pref("browser.safebrowsing.provider.mozilla.gethashURL", "");
|
| 172 | 172 | pref("datareporting.healthreport.uploadEnabled", false);
|
| 173 | 173 | pref("datareporting.policy.dataSubmissionEnabled", false);
|
| 174 | + |
|
| 175 | +// Disable the UITour API
|
|
| 176 | +// See tor-browser#41457 and
|
|
| 177 | +// https://bugzilla.mozilla.org/show_bug.cgi?id=1915280
|
|
| 178 | +pref("browser.uitour.enabled", false);
|
|
| 179 | + |
|
| 174 | 180 | // Make sure Unified Telemetry is really disabled, see: #18738.
|
| 175 | 181 | pref("toolkit.telemetry.unified", false);
|
| 176 | 182 | // This needs to be locked, or nightly builds will automatically lock it to true
|
| ... | ... | @@ -86,7 +86,7 @@ const PowerShell = { |
| 86 | 86 | parameters.push(`-Uri ${escapeStr(url)}`);
|
| 87 | 87 | |
| 88 | 88 | if (method !== "GET") {
|
| 89 | - parameters.push(`-Method ${method}`);
|
|
| 89 | + parameters.push(`-Method ${escapeStr(method)}`);
|
|
| 90 | 90 | }
|
| 91 | 91 | |
| 92 | 92 | if (session.length) {
|
| ... | ... | @@ -60,7 +60,7 @@ Invoke-WebRequest -UseBasicParsing -Uri "https://example.com/browser/devtools/cl |
| 60 | 60 | $session.Cookies.Add((New-Object System.Net.Cookie("bob", "true", "/", "example.com")))
|
| 61 | 61 | $session.Cookies.Add((New-Object System.Net.Cookie("tom", "cool", "/", "example.com")))
|
| 62 | 62 | Invoke-WebRequest -UseBasicParsing -Uri "https://example.com/browser/devtools/client/netmonitor/test/sjs_simple-test-server.sjs" \`
|
| 63 | --Method POST \`
|
|
| 63 | +-Method "POST" \`
|
|
| 64 | 64 | -WebSession $session \`
|
| 65 | 65 | -UserAgent "${navigator.userAgent}" \`
|
| 66 | 66 | -Headers @{
|
| ... | ... | @@ -89,7 +89,7 @@ Invoke-WebRequest -UseBasicParsing -Uri "https://example.com/browser/devtools/cl |
| 89 | 89 | $session.Cookies.Add((New-Object System.Net.Cookie("bob", "true", "/", "example.com")))
|
| 90 | 90 | $session.Cookies.Add((New-Object System.Net.Cookie("tom", "cool", "/", "example.com")))
|
| 91 | 91 | Invoke-WebRequest -UseBasicParsing -Uri "https://example.com/browser/devtools/client/netmonitor/test/sjs_simple-test-server.sjs" \`
|
| 92 | --Method POST \`
|
|
| 92 | +-Method "POST" \`
|
|
| 93 | 93 | -WebSession $session \`
|
| 94 | 94 | -UserAgent "${navigator.userAgent}" \`
|
| 95 | 95 | -Headers @{
|