richard pushed to branch tor-browser-102.12.0esr-12.5-1 at The Tor Project / Applications / Tor Browser
Commits:
e6cc145a by Pier Angelo Vendrame at 2023-06-05T19:46:15+00:00
fixup! Bug 31286: Implementation of bridge, proxy, and firewall settings in about:preferences#connection
Bug 41802: Improve the regex on parseBridgeLine
The previous version of the regex took for granted the bridge
fingerprint was always available, but it is actually optional.
So, parsing some bridge lines (e.g., Conjure) failed, and vanilla
bridge was displayed instead of the actual transport.
- - - - -
1 changed file:
- browser/components/torpreferences/content/connectionPane.js
Changes:
=====================================
browser/components/torpreferences/content/connectionPane.js
=====================================
@@ -1176,7 +1176,7 @@ function makeBridgeId(bridgeString) {
}
function parseBridgeLine(line) {
- const re = /^([^\s]+\s+)?([0-9a-fA-F\.\[\]\:]+:[0-9]{1,5})\s*([0-9a-fA-F]{40})(\s+.+)?/;
+ const re = /^\s*(\S+\s+)?([0-9a-fA-F\.\[\]\:]+:\d{1,5})(\s+[0-9a-fA-F]{40})?(\s+.+)?/;
const matches = line.match(re);
if (!matches) {
return null;
@@ -1186,7 +1186,7 @@ function parseBridgeLine(line) {
bridge.transport = matches[1].trim();
}
if (matches[3] !== undefined) {
- bridge.id = matches[3].toUpperCase();
+ bridge.id = matches[3].trim().toUpperCase();
}
if (matches[4] !== undefined) {
bridge.args = matches[4].trim();
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/e6cc145…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/e6cc145…
You're receiving this email because of your account on gitlab.torproject.org.
ma1 pushed to branch tor-browser-102.12.0esr-12.5-1 at The Tor Project / Applications / Tor Browser
Commits:
423f239c by cypherpunks1 at 2023-06-05T11:07:29-08:00
fixup! Bug 8324: Prevent DNS proxy bypasses caused by Drag&Drop
Bug 41792: Allow dragging downloads from about:downloads and the download panel
- - - - -
1 changed file:
- toolkit/torbutton/components/dragDropFilter.js
Changes:
=====================================
toolkit/torbutton/components/dragDropFilter.js
=====================================
@@ -142,7 +142,8 @@ DragDropFilter.prototype = {
for (const type of types) {
if (
type !== INTERNAL_FALLBACK &&
- type !== "text/x-moz-place" // don't touch bookmarks
+ type !== "text/x-moz-place" && // don't touch bookmarks
+ type !== "application/x-moz-file" // don't touch downloads
) {
aDataTransfer.mozClearDataAt(type, i);
}
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/423f239…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/423f239…
You're receiving this email because of your account on gitlab.torproject.org.
boklm pushed to branch maint-12.0-mullvad at The Tor Project / Applications / tor-browser-build
Commits:
747e1261 by Nicolas Vigier at 2023-06-02T11:32:41+02:00
Bug 40871: Update keyring/boklm.gpg for new subkeys
- - - - -
1 changed file:
- keyring/boklm.gpg
Changes:
=====================================
keyring/boklm.gpg
=====================================
Binary files a/keyring/boklm.gpg and b/keyring/boklm.gpg differ
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/7…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/7…
You're receiving this email because of your account on gitlab.torproject.org.