[tor-bugs] #33583 [Core Tor/Chutney]: Stop setting AssumeReachable on chutney relays and bridges

2020-03-09 Thread Tor Bug Tracker & Wiki
#33583: Stop setting AssumeReachable on chutney relays and bridges
--+---
 Reporter:  teor  |  Owner:  teor
 Type:  enhancement   | Status:  assigned
 Priority:  Medium|  Milestone:
Component:  Core Tor/Chutney  |Version:
 Severity:  Normal|   Keywords:  ipv6, prop311
Actual Points:|  Parent ID:  #33232
   Points:  0.5   |   Reviewer:
  Sponsor:  Sponsor55-must|
--+---
 We need to stop setting AssumeReachable on relays and bridges in chutney
 networks, so they do reachability self-tests.

 We should continue to set AssumeReachable on authorities (including the
 bridge authority), because it disables authority to relay reachability
 tests. (These tests are still performed on a half-hourly schedule, even in
 chutney networks. And they are out of scope for Sponsor 55.)

 After we implement this change, we should also be able to implement
 #33581.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33379 [Core Tor/Chutney]: Make chutney wait for all relays in the consensus before verifying

2020-03-09 Thread Tor Bug Tracker & Wiki
#33379: Make chutney wait for all relays in the consensus before verifying
--+
 Reporter:  teor  |  Owner:  teor
 Type:  enhancement   | Status:  needs_review
 Priority:  Medium|  Milestone:
Component:  Core Tor/Chutney  |Version:
 Severity:  Normal| Resolution:
 Keywords:  ipv6, prop311 |  Actual Points:  2
Parent ID:  #33232| Points:  0.5
 Reviewer:  ahf   |Sponsor:  Sponsor55-must
--+
Changes (by teor):

 * status:  needs_revision => needs_review
 * reviewer:  nickm => ahf
 * actualpoints:  0.5 => 2


Comment:

 I spoke with Alex today, and he's happy to review these chutney changes.

 Here's my draft PR:
 * chutney: ​https://github.com/torproject/chutney/pull/57

 It passes tor's `make test-network-all` locally, but chutney's CI is still
 running. There might be some issues with 0.3.5, like there were in #33378.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33378 [Core Tor/Chutney]: Require chutney node bootstrap before running verify

2020-03-09 Thread Tor Bug Tracker & Wiki
#33378: Require chutney node bootstrap before running verify
--+
 Reporter:  teor  |  Owner:  teor
 Type:  enhancement   | Status:  closed
 Priority:  Medium|  Milestone:
Component:  Core Tor/Chutney  |Version:
 Severity:  Normal| Resolution:  fixed
 Keywords:  ipv6, prop311 |  Actual Points:  0.5
Parent ID:  #33050| Points:  0.5
 Reviewer:  ahf   |Sponsor:
--+
Changes (by teor):

 * status:  needs_revision => closed
 * resolution:   => fixed
 * parent:  #33232 => #33050


Comment:

 Let's do the review and merge for this ticket in #33050.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33582 [Core Tor/Tor]: Make bridges wait until they have bootstrapped, before publishing their descriptor

2020-03-09 Thread Tor Bug Tracker & Wiki
#33582: Make bridges wait until they have bootstrapped, before publishing their
descriptor
-+-
 Reporter:  teor |  Owner:  (none)
 Type:  defect   | Status:  new
 Priority:  Medium   |  Milestone:  Tor:
 |  0.4.4.x-final
Component:  Core Tor/Tor |Version:
 Severity:  Normal   | Resolution:
 Keywords:  tor-bridge, tor-relay, prop311,  |  Actual Points:
  outreachy-ipv6 |
Parent ID:  #33232   | Points:  1
 Reviewer:   |Sponsor:
 |  Sponsor55-can
-+-

Comment (by arma):

 Yes please, this sounds like a fine plan.

 To clarify, right now both bridges and relays *do* wait until they have
 reached 100% bootstrapped, if AssumeReachable is default (0)? But this bug
 appears when AssumeReachable is set to 1, and then it tries to publish
 without regard for whether it has bootstrapped to 100%?

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33330 [Circumvention/Snowflake]: Use Go modules for Snowflake

2020-03-09 Thread Tor Bug Tracker & Wiki
#0: Use Go modules for Snowflake
-+
 Reporter:  cohosh   |  Owner:  cohosh
 Type:  defect   | Status:  closed
 Priority:  Medium   |  Milestone:
Component:  Circumvention/Snowflake  |Version:
 Severity:  Normal   | Resolution:  fixed
 Keywords:   |  Actual Points:  .2
Parent ID:   | Points:  .2
 Reviewer:   |Sponsor:
-+

Comment (by dcf):

 Replying to [comment:6 cohosh]:
 > Yeah this is weird. I'm still not sure why dependencies are sometimes
 added with `// indirect`. As far as I can tell, they are mostly not
 necessary to get a working build.
 [https://github.com/golang/go/wiki/Modules#why-does-go-mod-tidy-record-
 indirect-and-test-dependencies-in-my-gomod This resource] suggests that
 they are required by dependencies that don't have module support, but I
 suspect there's a bug in how they determine that.

 I think I see now. github.com/golang/protobuf and golang.org/x/text are
 only used by tests, and they are not packages themselves, but modules
 containing packages. The actual packages are
 github.com/golang/protobuf/proto and golang.org/x/text/secure/bidirule.
 `go mod why -m` searches for subpackages of that form.
 {{{
 $ go mod why github.com/golang/protobuf
 # github.com/golang/protobuf
 (main module does not need package github.com/golang/protobuf)

 $ go mod why golang.org/x/text
 # golang.org/x/text
 (main module does not need package golang.org/x/text)

 $ go mod why -m github.com/golang/protobuf
 # github.com/golang/protobuf
 git.torproject.org/pluggable-transports/snowflake.git/client
 github.com/pion/webrtc/v2
 github.com/pion/quic
 github.com/lucas-clemente/quic-go
 github.com/lucas-clemente/quic-go.test
 github.com/onsi/ginkgo
 github.com/onsi/ginkgo/internal/remote
 github.com/onsi/ginkgo/internal/spec_iterator
 github.com/onsi/ginkgo/internal/spec_iterator.test
 github.com/onsi/gomega/ghttp
 github.com/golang/protobuf/proto

 $ go mod why -m golang.org/x/text
 # golang.org/x/text
 git.torproject.org/pluggable-transports/snowflake.git/broker
 golang.org/x/crypto/acme/autocert
 golang.org/x/net/idna
 golang.org/x/text/secure/bidirule
 }}}

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33577 [Applications/Tor Browser]: Picture-in-Picture not working with dom.w3c_pointer_events.enabled=false

2020-03-09 Thread Tor Bug Tracker & Wiki
#33577: Picture-in-Picture not working with dom.w3c_pointer_events.enabled=false
--+--
 Reporter:  acat  |  Owner:  tbb-team
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal| Resolution:
 Keywords:|  Actual Points:
Parent ID:  #33533| Points:
 Reviewer:|Sponsor:
--+--

Comment (by cypherpunks):

 > We should think about switching to Mozilla's defense and enabling
 pointer events again where they are enabled by a default Firefox.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33010 [Metrics/Ideas]: Monitor cloudflare captcha rate: do a periodic onionperf-like query to a cloudflare-hosted static site

2020-03-09 Thread Tor Bug Tracker & Wiki
#33010: Monitor cloudflare captcha rate: do a periodic onionperf-like query to a
cloudflare-hosted static site
---+--
 Reporter:  arma   |  Owner:  metrics-team
 Type:  task   | Status:  new
 Priority:  Medium |  Milestone:
Component:  Metrics/Ideas  |Version:
 Severity:  Normal | Resolution:
 Keywords:  network-health gsoc-ideas  |  Actual Points:
Parent ID: | Points:
 Reviewer: |Sponsor:
---+--

Comment (by woswos):

 I wanted to conduct a few simple experiments on this issue. I will start
 by explaining my setup and continue with the experiments themselves.

 '''Domain Setup'''
 I registered two domains ([https://captcha.wtf/ captcha.wtf] and
 [https://exit11.online/ exit11.online]) with IPv4 records on Cloudflare.
 After playing with Cloudflare settings, I understood that domain owners
 have an important role in the way Cloudflare blocks Tor users.

 A new free Cloudflare account comes with a default security level (like
 the security levels in the Tor browser and as comment:5 mentioned), and
 the default security level doesn't explicitly block Tor users. I am not
 saying Cloudflare is innocent, but they don't mention a possible Tor user
 blocking at this security level. However, Tor shows up as a country on the
 Cloudflare firewall settings, and it is possible to block Tor users based
 on this firewall rule. I think they have a list of Tor exit node IPs, and
 they use this list to perform the filtering. They "offer" JS and Captcha
 challenges in addition to simple blocking, as shown in the image below:

 [[Image(https://bottomless-pit.barkin.io/tor-firewall-rules.png,
 width=100%)]]

 I think that's why some Tor users face more captcha challenges at higher
 Tor browser security levels. JavaScipt is blocked at higher security
 levels, and they can't pass the Cloudflare JS challenges.
 \\
 Also, if a firewall rule related to Tor is set, Cloudflare applies that
 rule (for example, the never-ending captcha challenge) all the time even
 if the user has somehow managed to pass the challenge 5 seconds ago - I
 think that is the part all of us hate, it just creates an endless loop. A
 sample Cloudflare firewall record below shows that the same IP address is
 continuously challenged over and over again, even after successfully
 passing the captcha challenge.

 [[Image(https://bottomless-pit.barkin.io/tor-firewall-1.png, width=100%)]]
 \\
 exit11.online has the default Cloudflare configuration without any
 additional firewall or protection. I am guessing that this would be the
 case with most of the average Cloudflare users. I also registered the
 [https://bypass.exit11.online/ bypass.exit11.online] subdomain, which
 bypasses the Cloudflare proxy and only utilizes Cloudflare as a DNS
 hosting service and CDN.

 [[Image(https://bottomless-pit.barkin.io/tor-cloudflare-exit11.png,
 width=100%)]]
 \\
 captcha.wtf has the default Cloudflare configuration ''with the additional
 firewall configuration'' for blocking Tor users, as I have mentioned
 previously. I registered this second domain to see the difference between
 using the default Cloudflare settings and adding additional firewall
 rules. I also registered the [https://bypass.captcha.wtf/
 bypass.captcha.wtf] subdomain, which bypasses the Cloudflare proxy and
 only utilizes Cloudflare as a DNS hosting service and CDN.

 [[Image(https://bottomless-pit.barkin.io/tor-cloudflare-wtf.png,
 width=100%)]]

 [[Image(https://bottomless-pit.barkin.io/tor-cloudflare-wtf-firewall.png,
 width=100%)]]
 \\
 Both of these domains have a very simple static "Hello world!" page at
 `/index.html`, and there is a more complicated page at `/complex.html`
 that loads resources from different locations. Additionally, captcha.wtf &
 exit11.online have SSL certificates issued by Cloudflare and
 bypass.captcha.wtf & bypass.exit11.online have SSL certificates issued by
 Let's Encrypt. I thought that these might have an effect on the way
 Cloudflare behaves.

 '''Experimenting'''
 Later, I used the Python script mentioned in comment:7 (it uses httplib)
 and the tor-browser-selenium mentioned in comment:13 to conduct a few
 simple experiments. I wrote another script to fetch different domain
 combinations via tor-browser-selenium and Python's httplib. For example,
 fetching bypass.exit11.online, exit11.online, exit11.online/complex.html,
 and bypass.exit11.online/complex.html via both tor-browser-selenium and
 Python's httplib.

 '''Results'''
 After fetching each combination about 100 times at one minute intervals,
 the domain with the default configuration (exit11.online) was not blocked
 a single time via both Tor and httplib. However, the domain with
 additional f

[tor-bugs] #33582 [Core Tor/Tor]: Make bridges wait until they have bootstrapped, before publishing their descriptor

2020-03-09 Thread Tor Bug Tracker & Wiki
#33582: Make bridges wait until they have bootstrapped, before publishing their
descriptor
-+-
 Reporter:  teor |  Owner:  (none)
 Type:  defect   | Status:  new
 Priority:  Medium   |  Milestone:  Tor: 0.4.4.x-final
Component:  Core |Version:
  Tor/Tor|   Keywords:  tor-bridge, tor-relay, prop311,
 Severity:  Normal   |  outreachy-ipv6
Actual Points:   |  Parent ID:  #33232
   Points:  1|   Reviewer:
  Sponsor:   |
  Sponsor55-can  |
-+-
 When `AssumeReachable` is set on bridges, there's a race condition when
 bridges try to publish their descriptor to the bridge authority:
 * bridges try to publish their descriptors before bootstrapping
 * but bridges can't publish their descriptors, because they don't have
 enough directory info to build a circuit to the bridge authority

 Bridges will eventually try to publish their descriptors again, when they
 become dirty.

 We should make bridges wait until they have bootstrapped, before they try
 to publish their descriptors. (This might be a good change for relays as
 well: there isn't much point in publishing a relay that can't bootstrap.)

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

[tor-bugs] #33581 [Core Tor/Chutney]: Restore bridge networkstatus checks in chutney

2020-03-09 Thread Tor Bug Tracker & Wiki
#33581: Restore bridge networkstatus checks in chutney
--+---
 Reporter:  teor  |  Owner:  teor
 Type:  defect| Status:  assigned
 Priority:  Medium|  Milestone:
Component:  Core Tor/Chutney  |Version:
 Severity:  Normal|   Keywords:  ipv6, prop311
Actual Points:|  Parent ID:  #33232
   Points:  0.1   |   Reviewer:
  Sponsor:  Sponsor55-must|
--+---
 In chutney networks, there's a race condition when bridges try to publish
 their descriptor to the bridge authority:
 * bridges have AssumeReachable set
 * bridges try to publish their descriptors before bootstrapping
 * but bridges can't publish their descriptors, because they don't have
 enough directory info to build a circuit to the bridge authority

 Also, bridges do not retry publishing their descriptor immediately after
 they bootstrap.

 Once we make bridges do reachability checks in chutney, they will wait to
 bootstrap, do reachability checks, then try to publish their descriptors.

 So we can enable the bridge networkstatus checks again.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

[tor-bugs] #33580 [Applications]: Allow WebAssembly in extensions

2020-03-09 Thread Tor Bug Tracker & Wiki
#33580: Allow WebAssembly in extensions
-+--
 Reporter:  pipboy96 |  Owner:  (none)
 Type:  enhancement  | Status:  new
 Priority:  Medium   |  Component:  Applications
  Version:   |   Severity:  Normal
 Keywords:   |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+--
 WebAssembly [https://github.com/EFForg/https-everywhere-lib-wasm is used
 by HTTPS Everywhere] to speed up applicable ruleset lookup. To my best
 knowledge allowing WebAssembly for extensions only while keeping it
 disabled for web content will not reduce browser security in any way.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33379 [Core Tor/Chutney]: Make chutney wait for all relays in the consensus before verifying

2020-03-09 Thread Tor Bug Tracker & Wiki
#33379: Make chutney wait for all relays in the consensus before verifying
--+
 Reporter:  teor  |  Owner:  teor
 Type:  enhancement   | Status:  needs_revision
 Priority:  Medium|  Milestone:
Component:  Core Tor/Chutney  |Version:
 Severity:  Normal| Resolution:
 Keywords:  ipv6, prop311 |  Actual Points:  0.5
Parent ID:  #33232| Points:  0.5
 Reviewer:  nickm |Sponsor:  Sponsor55-must
--+

Comment (by teor):

 Here is my work-in-progress branch, it works for about half the current
 chutney networks:
 * do not merge: https://github.com/torproject/chutney/pull/57

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

[tor-bugs] #33579 [Webpages/Website]: Please remove/deactivate job posting from website (Executive Assistant)

2020-03-09 Thread Tor Bug Tracker & Wiki
#33579: Please remove/deactivate job posting from website (Executive Assistant)
--+--
 Reporter:  ewyatt|  Owner:  hiro
 Type:  task  | Status:  new
 Priority:  High  |  Milestone:
Component:  Webpages/Website  |Version:
 Severity:  Normal|   Keywords:
Actual Points:|  Parent ID:
   Points:|   Reviewer:
  Sponsor:|
--+--
 {{{
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA512


 Please remove/deactivate the Executive Assistant job posting on our jobs
 page. We are in the final stages of interviewing and will be
 making/announcing a decision soon.
 Thanks.


 -BEGIN PGP SIGNATURE-
 Comment: GPGTools - https://gpgtools.org

 iQIzBAEBCgAdFiEENecqn2ZVRfkstmYkugyUAPgPkc4FAl5mziMACgkQugyUAPgP
 kc5FVw//brH19en9sb5ler5Pa0xcu4U4cpiRIpVyl1Nmx0gh5XqVriOcTdK8Do3D
 oHH8c1tCpTEp83x0zQ5YGFuSvJlja5nD9veLY7aMd/+Kephcq7tqoqEAiDCgQ8xB
 vE2pMDQjFqDIZKQsL/o+SIWWMN2WaQEyLOMFv0qiaN2sYtAXEYIpULSNr6BHyIhu
 aeRmUe4iPgXXGPYXMl48x97BoylNkyBD5c/0SVUJunsQHpB1p0g5qMGjTn3aa8r7
 bjJZMThSIiYzsgp/AZLhi7+43RvcAVCnUvimdCol89i/oZPXRxCGskv+IEJHUy+9
 m144dYhRRbTzj2wAV5gxb8lkktKEjpSMK6vUgxST/1ScVSPQIsrzzO8K/H7oqoSU
 QZWhRWWe2Ci16fx1MI3WibmAIFc3R+Dc4DBu3TNhXtsBPnJGXldvq32FEGI4oK8L
 QvO0lqUYn9QXRZj5IEmPKQFkuhP2OXgtLhvspZGu/rjAzSjy6vmZfmR7ArQKpN2t
 qEyHx7w6rqcdQYN8s3U4JlxOtH0OcByr1sOG8M2Ziemr8aJ60FFM4UliraT76bls
 7POJLxLIK5P9n09XN+wyRjDyFqY/ykqR90PnvLIqzKZSx1pUvTEGHgy4BsrlzP8z
 ohImTZv/uQWW7TRXhC2ho9RaYzxe2RxfmhiEEwj9AkJ8lBMFOq4=
 =93hE
 -END PGP SIGNATURE-
 }}}

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33330 [Circumvention/Snowflake]: Use Go modules for Snowflake

2020-03-09 Thread Tor Bug Tracker & Wiki
#0: Use Go modules for Snowflake
-+-
 Reporter:  cohosh   |  Owner:  cohosh
 Type:  defect   | Status:  merge_ready
 Priority:  Medium   |  Milestone:
Component:  Circumvention/Snowflake  |Version:
 Severity:  Normal   | Resolution:
 Keywords:   |  Actual Points:
Parent ID:   | Points:  .2
 Reviewer:   |Sponsor:
-+-

Comment (by cohosh):

 Merged at [https://gitweb.torproject.org/pluggable-
 transports/snowflake.git/commit/?id=58b52eb9f7987789d8e90a982a6df16013e200dd
 6013e200dd].

 Yeah this is weird. I'm still not sure why dependencies are sometimes
 added with `// indirect`. As far as I can tell, they are mostly not
 necessary to get a working build.
 [https://github.com/golang/go/wiki/Modules#why-does-go-mod-tidy-record-
 indirect-and-test-dependencies-in-my-gomod This resource] suggests that
 they are required by dependencies that don't have module support, but I
 suspect there's a bug in how they determine that.

 Anyways, I opened #33578 to bump the version of Snowflake in Tor Browser.
 This is a bit overdue as there have been several improvements since the
 last update. It also includes the changes necessary since merging this
 branch.

 This required a few more hacks than the obfs4 project to account for the
 use of v2 modules by pion-webrtc (see [https://gitweb.torproject.org
 /pluggable-
 
transports/snowflake.git/tree/client/lib/webrtc.go?id=58b52eb9f7987789d8e90a982a6df16013e200dd#n12
 here]).

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33330 [Circumvention/Snowflake]: Use Go modules for Snowflake

2020-03-09 Thread Tor Bug Tracker & Wiki
#0: Use Go modules for Snowflake
-+
 Reporter:  cohosh   |  Owner:  cohosh
 Type:  defect   | Status:  closed
 Priority:  Medium   |  Milestone:
Component:  Circumvention/Snowflake  |Version:
 Severity:  Normal   | Resolution:  fixed
 Keywords:   |  Actual Points:  .2
Parent ID:   | Points:  .2
 Reviewer:   |Sponsor:
-+
Changes (by cohosh):

 * status:  merge_ready => closed
 * resolution:   => fixed
 * actualpoints:   => .2


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33578 [Applications/Tor Browser]: Bump Snowflake version to 58b52eb9f7

2020-03-09 Thread Tor Bug Tracker & Wiki
#33578: Bump Snowflake version to 58b52eb9f7
+--
 Reporter:  cohosh  |  Owner:  tbb-team
 Type:  defect  | Status:  needs_review
 Priority:  Medium  |  Milestone:
Component:  Applications/Tor Browser|Version:
 Severity:  Normal  | Resolution:
 Keywords:  tbb-rbm, TorBrowserTeam202003R  |  Actual Points:
Parent ID:  | Points:
 Reviewer:  |Sponsor:
+--
Changes (by boklm):

 * keywords:   => tbb-rbm, TorBrowserTeam202003R


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33578 [Applications/Tor Browser]: Bump Snowflake version to 58b52eb9f7

2020-03-09 Thread Tor Bug Tracker & Wiki
#33578: Bump Snowflake version to 58b52eb9f7
--+--
 Reporter:  cohosh|  Owner:  tbb-team
 Type:  defect| Status:  needs_review
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal| Resolution:
 Keywords:|  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+--
Changes (by cohosh):

 * status:  new => needs_review


Comment:

 I've attached a patch.

 Note that some additional changes were needed to address the changes
 merged for #0 (adding a go module for Snowflake).

 The removal of `go.mod` and `go.sum` is pretty straightforward, and obfs4
 does the same [https://gitweb.torproject.org/builders/tor-browser-
 build.git/tree/projects/obfs4/build#n27 here].

 The symbolic linking of `pion/webrtc` and `pion/sdp` is a bit hacky.
 Basically, we have to include the version `v2` in the include paths when
 building normally to specify that we want the v2 module. This messes with
 the build when building without modules though. I'm not sure of a better
 way to handle this at the moment.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33578 [Applications/Tor Browser]: Bump Snowflake version to 58b52eb9f7

2020-03-09 Thread Tor Bug Tracker & Wiki
#33578: Bump Snowflake version to 58b52eb9f7
--+--
 Reporter:  cohosh|  Owner:  tbb-team
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal| Resolution:
 Keywords:|  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+--
Changes (by cohosh):

 * Attachment "0001-Bug-33578-Bump-Snowflake-version-to-58b52eb9f7.patch"
 added.


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33402 [Applications/Tor Browser]: Set app.update.url for nightly builds

2020-03-09 Thread Tor Bug Tracker & Wiki
#33402: Set app.update.url for nightly builds
-+-
 Reporter:  boklm|  Owner:  boklm
 Type:  task | Status:  closed
 Priority:  Medium   |  Milestone:
Component:  Applications/Tor Browser |Version:
 Severity:  Normal   | Resolution:  fixed
 Keywords:  tbb-rbm, tbb-update, |  Actual Points:  .1
  TorBrowserTeam202003R  |
Parent ID:  #18867   | Points:  .1
 Reviewer:  mcs, brade   |Sponsor:
-+-
Changes (by boklm):

 * status:  needs_review => closed
 * resolution:   => fixed


Comment:

 Replying to [comment:5 mcs]:
 > r=brade,r=mcs
 > This looks good.

 Thanks! I cherry-picked the patch to master as commit
 `2b608ad1a0fd704eb6c7a957638abc65508e1e2b`.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

[tor-bugs] #33578 [Applications/Tor Browser]: Bump Snowflake version to 58b52eb9f7

2020-03-09 Thread Tor Bug Tracker & Wiki
#33578: Bump Snowflake version to 58b52eb9f7
--+--
 Reporter:  cohosh|  Owner:  tbb-team
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal|   Keywords:
Actual Points:|  Parent ID:
   Points:|   Reviewer:
  Sponsor:|
--+--
 This includes:
  - refactoring changes to the Snowflake code
  - removal of erroneous logging
  - a bug fix for SOCKS handling
  - removal of local LAN ICE candidates, and
  - go.mod and go.sum files

 Some additional changes were needed to handle this last change (see
 #0).

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33403 [Applications/Tor Browser]: Add nightly mar key to tor-browser

2020-03-09 Thread Tor Bug Tracker & Wiki
#33403: Add nightly mar key to tor-browser
-+-
 Reporter:  boklm|  Owner:  boklm
 Type:  task | Status:  closed
 Priority:  Medium   |  Milestone:
Component:  Applications/Tor Browser |Version:
 Severity:  Normal   | Resolution:  fixed
 Keywords:  tbb-rbm, tbb-update, |  Actual Points:  .1
  TorBrowserTeam202003R  |
Parent ID:  #18867   | Points:  .1
 Reviewer:  brade, mcs   |Sponsor:
-+-
Changes (by boklm):

 * status:  needs_review => closed
 * resolution:   => fixed


Comment:

 Replying to [comment:4 mcs]:
 > r=brade,r=mcs
 > Looks good. Let's try it.

 Thanks! I cherry-picked the patch to master as commit
 `e6d2903efa95a88e24e846dd30f2f076fec45ca5`.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33403 [Applications/Tor Browser]: Add nightly mar key to tor-browser

2020-03-09 Thread Tor Bug Tracker & Wiki
#33403: Add nightly mar key to tor-browser
-+-
 Reporter:  boklm|  Owner:  boklm
 Type:  task | Status:
 |  needs_review
 Priority:  Medium   |  Milestone:
Component:  Applications/Tor Browser |Version:
 Severity:  Normal   | Resolution:
 Keywords:  tbb-rbm, tbb-update, |  Actual Points:  .1
  TorBrowserTeam202003R  |
Parent ID:  #18867   | Points:  .1
 Reviewer:  brade, mcs   |Sponsor:
-+-

Comment (by mcs):

 r=brade,r=mcs
 Looks good. Let's try it.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33402 [Applications/Tor Browser]: Set app.update.url for nightly builds

2020-03-09 Thread Tor Bug Tracker & Wiki
#33402: Set app.update.url for nightly builds
-+-
 Reporter:  boklm|  Owner:  boklm
 Type:  task | Status:
 |  needs_review
 Priority:  Medium   |  Milestone:
Component:  Applications/Tor Browser |Version:
 Severity:  Normal   | Resolution:
 Keywords:  tbb-rbm, tbb-update, |  Actual Points:  .1
  TorBrowserTeam202003R  |
Parent ID:  #18867   | Points:  .1
 Reviewer:  mcs, brade   |Sponsor:
-+-

Comment (by mcs):

 r=brade,r=mcs
 This looks good.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #26366 [Core Tor/Tor]: Possible duplicated logic in connection_edge_finished_connecting() and connection_exit_connect()

2020-03-09 Thread Tor Bug Tracker & Wiki
#26366: Possible duplicated logic in connection_edge_finished_connecting() and
connection_exit_connect()
--+--
 Reporter:  ahf   |  Owner:  neel
 Type:  defect| Status:  needs_review
 Priority:  Medium|  Milestone:  Tor: unspecified
Component:  Core Tor/Tor  |Version:  Tor: unspecified
 Severity:  Normal| Resolution:
 Keywords:  tor-hs|  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+--
Changes (by neel):

 * status:  assigned => needs_review


Comment:

 PR: https://github.com/torproject/tor/pull/1781

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #32380 [Applications/Tor Browser]: Get current Tor Browser code ready for RLBox

2020-03-09 Thread Tor Bug Tracker & Wiki
#32380: Get current Tor Browser code ready for RLBox
-+-
 Reporter:  gk   |  Owner:  gk
 Type:  defect   | Status:
 |  needs_review
 Priority:  Medium   |  Milestone:
Component:  Applications/Tor Browser |Version:
 Severity:  Normal   | Resolution:
 Keywords:  tbb-security, GeorgKoppen202002, |  Actual Points:
  TorBrowserTeam202003R  |
Parent ID:  #32389   | Points:
 Reviewer:  pospeselr|Sponsor:
-+-
Changes (by sysrqb):

 * reviewer:   => pospeselr


Comment:

 Adding pospeselr as a reviewer, for when he has some cycles for it.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #7193 [Core Tor/Tor]: Tor's sybil protection doesn't consider IPv6

2020-03-09 Thread Tor Bug Tracker & Wiki
#7193: Tor's sybil protection doesn't consider IPv6
-+-
 Reporter:  asn  |  Owner:  (none)
 Type:  enhancement  | Status:  new
 Priority:  Medium   |  Milestone:  Tor:
 |  unspecified
Component:  Core Tor/Tor |Version:
 Severity:  Normal   | Resolution:
 Keywords:  ipv6, intro, tor-dirauth, security,  |  Actual Points:
  sybil, network-health, outreachy-ipv6  |
Parent ID:  #24403   | Points:  1
 Reviewer:   |Sponsor:
 |  Sponsor55-can
-+-

Comment (by maurice_pibouin):

 I am writing tests for my modified implementation of
 "compare_routerinfo_by_ip_and_bw_", and I have trouble using the MOCK_DECL
 and MOCK_IMPL macros. I am trying to MOCK the function
 "routerdigest_is_trusted_dir_type", so I put a MOCK_DECL statement in
 dirlist.h, and a MOCK_IMPL statement in dirlist.c . On compilation, it
 doesn't work : I get "redefinition of
 ‘router_digest_is_trusted_dir_type’". I also tried a bunch of different
 location for both statements.
 See my branch : https://github.com/vnepveu/tor/tree/ticket7193_exp

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33182 [Metrics/Consensus Health]: Automate process from reporting bad relays to resolving them as much as possible

2020-03-09 Thread Tor Bug Tracker & Wiki
#33182: Automate process from reporting bad relays to resolving them as much as
possible
-+-
 Reporter:  gk   |  Owner:  gk
 Type:  defect   | Status:
 |  merge_ready
 Priority:  Medium   |  Milestone:
Component:  Metrics/Consensus Health |Version:
 Severity:  Normal   | Resolution:
 Keywords:  GeorgKoppen202002, network-health,   |  Actual Points:  2
  network-health-roadmap-2020Q1  |
Parent ID:   | Points:  3
 Reviewer:  dgoulet  |Sponsor:
-+-
Changes (by dgoulet):

 * status:  needs_review => merge_ready


Comment:

 No problem, consider these scripts totally 100% free license so you can
 put in BSD, GPL, whatever you want as long as it remains open :).

 The day Metrics gets a REST API, querying it will be much nicer than
 waiting to download all documents :).

 This works good! I've tested it with a good and invalid fingerprint.

 Later iteration could push the automation to the `git commit <...> && git
 push` level with some confirmation before you do but for now, this is
 great.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33533 [Applications/Tor Browser]: Rebase Tor Browser esr68 patches on top of mozilla-central

2020-03-09 Thread Tor Bug Tracker & Wiki
#33533: Rebase Tor Browser esr68 patches on top of mozilla-central
--+--
 Reporter:  acat  |  Owner:  acat
 Type:  task  | Status:  needs_review
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal| Resolution:
 Keywords:  TorBrowserTeam202003R |  Actual Points:  12
Parent ID:| Points:
 Reviewer:  sysrqb, pospeselr |Sponsor:
--+--

Comment (by acat):

 Found out that picture-in-picture is broken, created #33577 for that.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

[tor-bugs] #33577 [Applications/Tor Browser]: Picture-in-Picture not working with dom.w3c_pointer_events.enabled=false

2020-03-09 Thread Tor Bug Tracker & Wiki
#33577: Picture-in-Picture not working with dom.w3c_pointer_events.enabled=false
--+--
 Reporter:  acat  |  Owner:  tbb-team
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal|   Keywords:
Actual Points:|  Parent ID:  #33533
   Points:|   Reviewer:
  Sponsor:|
--+--
 Picture-in-Picture for videos does not work (at least in Firefox 75,
 probably since 71) with pref `dom.w3c_pointer_events.enabled = false`. We
 might be able to set it to `true` in #28729, so we should check that. But
 perhaps it's worth filing a bug in bugzilla in any case, since it looks
 like an internal Firefox UI should not be broken because of
 `dom.w3c_pointer_events.enabled` being set to `false`.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #32994 [Core Tor/Tor]: Get all flag defaults from port_cfg_new()

2020-03-09 Thread Tor Bug Tracker & Wiki
#32994: Get all flag defaults from port_cfg_new()
-+-
 Reporter:  teor |  Owner:  (none)
 Type:  defect   | Status:  new
 Priority:  Medium   |  Milestone:  Tor:
 |  unspecified
Component:  Core Tor/Tor |Version:
 Severity:  Normal   | Resolution:
 Keywords:  technical-debt, tor-client, easy,|  Actual Points:
  intro  |
Parent ID:   | Points:  1
 Reviewer:   |Sponsor:
-+-

Comment (by MrSquanchee):

 Hii teor,

 I would like to work on this issue as my first issue with tor.

 Could you please assign it to me :)

 Thanks,

 Suraj (!MrSquanchee)

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33446 [Internal Services/Tor Sysadmin Team]: migrate cupani/git-rw to the ganeti cluster, triggering an IP address change

2020-03-09 Thread Tor Bug Tracker & Wiki
#33446: migrate cupani/git-rw to the ganeti cluster, triggering an IP address
change
-+-
 Reporter:  anarcat  |  Owner:  anarcat
 Type:  task | Status:
 |  needs_review
 Priority:  High |  Milestone:
Component:  Internal Services/Tor Sysadmin Team  |Version:
 Severity:  Major| Resolution:
 Keywords:  tpa-roadmap-march|  Actual Points:
Parent ID:  #33085   | Points:
 Reviewer:  irl  |Sponsor:
-+-

Comment (by anarcat):

 i redid a sync without problems today, but i've removed the cloned
 machine. i'll finalize the migration tomorrow morning (UTC-4) and just fix
 the problems as they come along.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33346 [Core Tor/Tor]: Seccomp soft fail (no write) in 0.4.2.6

2020-03-09 Thread Tor Bug Tracker & Wiki
#33346: Seccomp soft fail (no write) in 0.4.2.6
-+-
 Reporter:  subjectfrosting  |  Owner:  nickm
 Type:  defect   | Status:
 |  needs_revision
 Priority:  Medium   |  Milestone:  Tor:
 |  0.4.4.x-final
Component:  Core Tor/Tor |Version:  0.4.2.6
 Severity:  Normal   | Resolution:
 Keywords:  easy? 035-backport 041-backport  |  Actual Points:  .1
  042-backport 043-backport  |
Parent ID:   | Points:  .1
 Reviewer:   |Sponsor:
-+-

Comment (by subjectfrosting):

 Nick and I discussed this on IRC earlier. I did try tampering with the
 flags that we give openat() but no luck. I was able to reproduce the bug
 on my amd64 machine too, so it is not ARM related.

 Let me know if there's anything further I can try out. Nick suggested it
 was likely to be one of two things:
 * seccomp2 is not adding the rule that we think
 * using wrong pointer for the file (must match handle, not just same
 string)

 I added my own logging on nick's request to see if the right path was
 being detected, but this seemed normal:
 {{{
 write(1, "seccomp: allow_file_open called "..., 51seccomp: allow_file_open
 called with use_openat:1
 ) = 51
 write(1, "seccomp: allow_file_open called "..., 75seccomp: allow_file_open
 called with file:/home/user/.tor/cached-consensus
 openat(AT_FDCWD, "/home/user/.tor/cached-consensus", O_RDONLY|O_CLOEXEC) =
 -1 EPERM (Operation not permitted)
 write(1, "Mar 09 16:30:06.000 [warn] Could"..., 112Mar 09 16:30:06.000
 [warn] Could not open "/home/user/.tor/cached-consensus" for mmap():
 Operation not permitted
 }}}


 An except of my strace:
 {{{
 ...
 getpid()= 22986
 sendto(7, "<29>Mar  9 14:26:07 Tor[22986]: "..., 69, MSG_NOSIGNAL, NULL,
 0) = 69
 unlinkat(AT_FDCWD, "/var/lib/tor/data/key-pinning-entries", 0) = -1 ENOENT
 (No such file or directory)
 openat(AT_FDCWD, "/var/lib/tor/data/cached-certs", O_RDONLY|O_CLOEXEC) =
 -1 EPERM (Operation not permitted)
 getpid()= 22986
 sendto(7, "<28>Mar  9 14:26:07 Tor[22986]: "..., 105, MSG_NOSIGNAL, NULL,
 0) = 105
 openat(AT_FDCWD, "/var/lib/tor/data/cached-consensus", O_RDONLY|O_CLOEXEC)
 = -1 EPERM (Operation not permitted)
 getpid()= 22986
 sendto(7, "<28>Mar  9 14:26:07 Tor[22986]: "..., 120, MSG_NOSIGNAL, NULL,
 0) = 120
 openat(AT_FDCWD, "/var/lib/tor/data/unverified-consensus",
 O_RDONLY|O_CLOEXEC) = -1 EPERM (Operation not permitted)
 getpid()= 22986
 sendto(7, "<28>Mar  9 14:26:07 Tor[22986]: "..., 124, MSG_NOSIGNAL, NULL,
 0) = 124
 openat(AT_FDCWD, "/var/lib/tor/data/cached-microdesc-consensus",
 O_RDONLY|O_CLOEXEC) = -1 EPERM (Operation not permitted)
 getpid()= 22986
 sendto(7, "<28>Mar  9 14:26:07 Tor[22986]: "..., 130, MSG_NOSIGNAL, NULL,
 0) = 130
 openat(AT_FDCWD, "/var/lib/tor/data/unverified-microdesc-consensus",
 O_RDONLY|O_CLOEXEC) = -1 EPERM (Operation not permitted)
 getpid()= 22986
 sendto(7, "<28>Mar  9 14:26:07 Tor[22986]: "..., 134, MSG_NOSIGNAL, NULL,
 0) = 134
 openat(AT_FDCWD, "/var/lib/tor/data/cached-microdescs",
 O_RDONLY|O_CLOEXEC) = -1 EPERM (Operation not permitted)
 getpid()= 22986
 sendto(7, "<28>Mar  9 14:26:07 Tor[22986]: "..., 121, MSG_NOSIGNAL, NULL,
 0) = 121
 openat(AT_FDCWD, "/var/lib/tor/data/cached-microdescs.new",
 O_RDONLY|O_CLOEXEC) = -1 EPERM (Operation not permitted)
 getpid()= 22986
 sendto(7, "<28>Mar  9 14:26:07 Tor[22986]: "..., 114, MSG_NOSIGNAL, NULL,
 0) = 114
 openat(AT_FDCWD, "/var/lib/tor/data/cached-descriptors",
 O_RDONLY|O_CLOEXEC) = -1 EPERM (Operation not permitted)
 getpid()= 22986
 sendto(7, "<28>Mar  9 14:26:07 Tor[22986]: "..., 122, MSG_NOSIGNAL, NULL,
 0) = 122
 newfstatat(AT_FDCWD, "/var/lib/tor/data/cached-descriptors.new",
 0x7fefcc0258, 0) = -1 EPERM (Operation not permitted)
 openat(AT_FDCWD, "/var/lib/tor/data/cached-extrainfo", O_RDONLY|O_CLOEXEC)
 = -1 EPERM (Operation not permitted)
 getpid()= 22986
 sendto(7, "<28>Mar  9 14:26:07 Tor[22986]: "..., 120, MSG_NOSIGNAL, NULL,
 0) = 120
 newfstatat(AT_FDCWD, "/var/lib/tor/data/cached-extrainfo.new",
 0x7fefcc0258, 0) = -1 EPERM (Operation not permitted)
 getpid()= 22986
 sendto(7, "<29>Mar  9 14:26:07 Tor[22986]: "..., 70, MSG_NOSIGNAL, NULL,
 0) = 70
 epoll_ctl(3, EPOLL_CTL_ADD, 6

Re: [tor-bugs] #32971 [Core Tor/Tor]: Document OwningControllerProcess time interval

2020-03-09 Thread Tor Bug Tracker & Wiki
#32971: Document OwningControllerProcess time interval
+
 Reporter:  teor|  Owner:  (none)
 Type:  defect  | Status:  needs_review
 Priority:  Medium  |  Milestone:  Tor: 0.4.3.x-final
Component:  Core Tor/Tor|Version:
 Severity:  Normal  | Resolution:
 Keywords:  easy, doc, 043-can  |  Actual Points:
Parent ID:  | Points:  0.1
 Reviewer:  dgoulet |Sponsor:
+
Changes (by rl1987):

 * status:  needs_revision => needs_review


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33570 [Core Tor/sbws]: Correct the relays to keep after retrieving new consensuses

2020-03-09 Thread Tor Bug Tracker & Wiki
#33570: Correct the relays to keep after retrieving new consensuses
---+---
 Reporter:  juga   |  Owner:  juga
 Type:  defect | Status:  closed
 Priority:  Medium |  Milestone:  sbws: 1.1.x-final
Component:  Core Tor/sbws  |Version:  sbws: 1.1.0
 Severity:  Normal | Resolution:  fixed
 Keywords:  sbws-roadmap   |  Actual Points:
Parent ID:  #30719 | Points:
 Reviewer:  ahf, gk|Sponsor:
---+---
Changes (by juga):

 * status:  merge_ready => closed
 * resolution:   => fixed


Comment:

 Merged.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #28764 [Applications/Tor Browser]: OpenSSL Build for Android

2020-03-09 Thread Tor Bug Tracker & Wiki
#28764: OpenSSL Build for Android
-+-
 Reporter:  sisbell  |  Owner:  sisbell
 Type:  defect   | Status:
 |  needs_review
 Priority:  Medium   |  Milestone:
Component:  Applications/Tor Browser |Version:
 Severity:  Normal   | Resolution:
 Keywords:  tbb-mobile, tbb-rbm, tbb-parity, |  Actual Points:
  TorBrowserTeam202003R  |
Parent ID:  #28704   | Points:  0.5
 Reviewer:  sysrqb, boklm|Sponsor:
-+-

Comment (by boklm):

 Replying to [comment:20 sisbell]:
 > Removed the white space at beginning of lines and removed libtinfo
 dependency since this is now included in rbm.conf
 >
 > https://github.com/sisbell/tor-browser-build/commits/bug-28764

 This looks good to me. I cherry-picked the patch to master as commit
 `b380d694e605e46500e411c792602e08cdbb6fb2`.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #28764 [Applications/Tor Browser]: OpenSSL Build for Android

2020-03-09 Thread Tor Bug Tracker & Wiki
#28764: OpenSSL Build for Android
-+-
 Reporter:  sisbell  |  Owner:  sisbell
 Type:  defect   | Status:  closed
 Priority:  Medium   |  Milestone:
Component:  Applications/Tor Browser |Version:
 Severity:  Normal   | Resolution:  fixed
 Keywords:  tbb-mobile, tbb-rbm, tbb-parity, |  Actual Points:
  TorBrowserTeam202003R  |
Parent ID:  #28704   | Points:  0.5
 Reviewer:  sysrqb, boklm|Sponsor:
-+-
Changes (by boklm):

 * status:  needs_review => closed
 * resolution:   => fixed


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #26366 [Core Tor/Tor]: Possible duplicated logic in connection_edge_finished_connecting() and connection_exit_connect()

2020-03-09 Thread Tor Bug Tracker & Wiki
#26366: Possible duplicated logic in connection_edge_finished_connecting() and
connection_exit_connect()
--+--
 Reporter:  ahf   |  Owner:  neel
 Type:  defect| Status:  assigned
 Priority:  Medium|  Milestone:  Tor: unspecified
Component:  Core Tor/Tor  |Version:  Tor: unspecified
 Severity:  Normal| Resolution:
 Keywords:  tor-hs|  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+--
Changes (by neel):

 * status:  new => assigned
 * cc: neel (added)
 * owner:  (none) => neel


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33446 [Internal Services/Tor Sysadmin Team]: migrate cupani/git-rw to the ganeti cluster, triggering an IP address change

2020-03-09 Thread Tor Bug Tracker & Wiki
#33446: migrate cupani/git-rw to the ganeti cluster, triggering an IP address
change
-+-
 Reporter:  anarcat  |  Owner:  anarcat
 Type:  task | Status:
 |  needs_review
 Priority:  High |  Milestone:
Component:  Internal Services/Tor Sysadmin Team  |Version:
 Severity:  Major| Resolution:
 Keywords:  tpa-roadmap-march|  Actual Points:
Parent ID:  #33085   | Points:
 Reviewer:  irl  |Sponsor:
-+-

Comment (by anarcat):

 i'm going to re-sync cupani-new, discarding all local changes.

 local changes in /etc:

 {{{
 root@cupani-new:/etc# git diff --cached | cat
 diff --git a/network/interfaces b/network/interfaces
 index 68f9eec..4156ee4 100644
 --- a/network/interfaces
 +++ b/network/interfaces
 @@ -6,11 +6,23 @@ auto lo
  iface lo inet loopback

  # The primary network interface
 -allow-hotplug eth0
 +#allow-hotplug eth0
 +#iface eth0 inet static
 +#address 78.47.38.228/28
 +#gateway 78.47.38.225
 +#iface eth0 inet6 static
 +#accept_ra 0
 +#address 2a01:4f8:211:6e8:0:823:4:1/96
 +#gateway 2a01:4f8:211:6e8:0:823:0:1
 +
 +auto eth0
  iface eth0 inet static
 -address 78.47.38.228/28
 -gateway 78.47.38.225
 +address 116.202.120.182/27
 +gateway 116.202.120.161
 +
  iface eth0 inet6 static
  accept_ra 0
 -address 2a01:4f8:211:6e8:0:823:4:1/96
 -gateway 2a01:4f8:211:6e8:0:823:0:1
 +address 2a01:4f8:fff0:4f:266:37ff:fe5f:c6c6/64
 +gateway 2a01:4f8:fff0:4f::1
 +#00:66:37:5f:c6:c6
 +#  IP: 116.202.120.182
 }}}

 sudoers was also changed, but that shouldn't matter in the final
 migration:

 {{{

 diff --git a/sudoers b/sudoers
 index 7052c06..149af16 100644
 --- a/sudoers
 +++ b/sudoers
 @@ -53,6 +53,7 @@ letsencrypt   nevii=(dnsadm)
 NOPASSWD: /srv/dns.torproject.org/bin/update
  %exonerator-webmaterculae=(exonerator-web)
 ALL
  %fpcentral forrestii=(fpcentral)   ALL
  %gitolite  cupani=(git)ALL
 +%gitolite  cupani-new=(git)
 ALL
  %gitwebvineale=(gitweb)
 ALL
  %metrics   meronense=(metrics) ALL
  %onionoo   ONIONOOHOSTS=(onionoo)  ALL
 }}}

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #28704 [Applications/Tor Browser]: Compile Tor and dependencies on our own for Android

2020-03-09 Thread Tor Bug Tracker & Wiki
#28704: Compile Tor and dependencies on our own for Android
-+-
 Reporter:  gk   |  Owner:  sisbell
 Type:  defect   | Status:
 |  assigned
 Priority:  High |  Milestone:
Component:  Applications/Tor Browser |Version:
 Severity:  Normal   | Resolution:
 Keywords:  tbb-mobile, tbb-rbm, tbb-parity, |  Actual Points:
  TorBrowserTeam202003   |
Parent ID:   | Points:  0
 Reviewer:   |Sponsor:
-+-
Changes (by boklm):

 * keywords:  tbb-mobile, tbb-rbm, tbb-parity, TorBrowserTeam202003R => tbb-
 mobile, tbb-rbm, tbb-parity, TorBrowserTeam202003


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33430 [Applications/Tor Browser]: Disable downloadable fonts on Safest security level

2020-03-09 Thread Tor Bug Tracker & Wiki
#33430: Disable downloadable fonts on Safest security level
--+--
 Reporter:  dcent |  Owner:  tbb-team
 Type:  defect| Status:  needs_review
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal| Resolution:
 Keywords:  TorBrowserTeam202003R |  Actual Points:
Parent ID:| Points:
 Reviewer:  acat  |Sponsor:
--+--

Comment (by sysrqb):

 Replying to [comment:17 ma1]:
 > This should work as expected in Please check
 https://noscript.net/getit#devel, thanks.

 Thanks ma1! We'll use NoScript 11.0.15 instead of the patch I posted.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #32564 [Core Tor/Tor]: Assertion pol->magic failed

2020-03-09 Thread Tor Bug Tracker & Wiki
#32564: Assertion pol->magic failed
+--
 Reporter:  Logforme|  Owner:  (none)
 Type:  defect  | Status:
|  needs_information
 Priority:  High|  Milestone:  Tor:
|  0.4.4.x-final
Component:  Core Tor/Tor|Version:  Tor: 0.4.1.6
 Severity:  Normal  | Resolution:
 Keywords:  assert crash backport 043-must  |  Actual Points:
Parent ID:  | Points:
 Reviewer:  |Sponsor:
+--
Changes (by dgoulet):

 * milestone:  Tor: 0.4.3.x-final => Tor: 0.4.4.x-final


Comment:

 Until we can get more information, deferring to 044.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #31669 [Core Tor/Tor]: Invalid signature for service descriptor signing key: expired

2020-03-09 Thread Tor Bug Tracker & Wiki
#31669: Invalid signature for service descriptor signing key: expired
---+
 Reporter:  a_p|  Owner:  asn
 Type:  defect | Status:  assigned
 Priority:  Medium |  Milestone:  Tor: 0.4.3.x-final
Component:  Core Tor/Tor   |Version:  Tor: 0.4.1.5
 Severity:  Normal | Resolution:
 Keywords:  tor-hs, log, 043-must  |  Actual Points:
Parent ID: | Points:  0.3
 Reviewer: |Sponsor:
---+
Changes (by asn):

 * owner:  (none) => asn
 * status:  new => assigned


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #24857 [Core Tor/Tor]: Tor uses 100% CPU when accessing the cache directory on Windows

2020-03-09 Thread Tor Bug Tracker & Wiki
#24857: Tor uses 100% CPU when accessing the cache directory on Windows
-+-
 Reporter:  Eugene646|  Owner:  ahf
 Type:  defect   | Status:
 |  assigned
 Priority:  High |  Milestone:  Tor:
 |  0.4.4.x-final
Component:  Core Tor/Tor |Version:  Tor:
 |  0.3.1.9
 Severity:  Normal   | Resolution:
 Keywords:  044-should, cpu, windows, linux, |  Actual Points:
  performance, regression, 033-triage-20180326,  |
  033-removed-20180326, 034-deferred-20180602,   |
  035-removed-20180711, 032-unreached-backport,  |
  040-roadmap-proposed, 033-unreached-backport-  |
  maybe, network-health  |
Parent ID:  #25500   | Points:  2
 Reviewer:   |Sponsor:
-+-
Changes (by ahf):

 * owner:  (none) => ahf
 * status:  new => assigned


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #30477 [Core Tor/Tor]: Tor should self-test reachability of TCP listeners exposed by PT's

2020-03-09 Thread Tor Bug Tracker & Wiki
#30477: Tor should self-test reachability of TCP listeners exposed by PT's
-+-
 Reporter:  ahf  |  Owner:  (none)
 Type:  task | Status:  new
 Priority:  Medium   |  Milestone:  Tor:
 |  unspecified
Component:  Core Tor/Tor |Version:  Tor:
 |  unspecified
 Severity:  Normal   | Resolution:
 Keywords:  tor-pt, s30-o23a3, network-team- |  Actual Points:
  roadmap-2020Q1 |
Parent ID:  #31280   | Points:
 Reviewer:   |Sponsor:
 |  Sponsor30-must
-+-
Changes (by gaba):

 * keywords:
 tor-pt, network-team-roadmap-november, s30-o23a3, network-team-
 roadmap-2020Q1
 => tor-pt, s30-o23a3, network-team-roadmap-2020Q1


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33484 [Internal Services/Tor Sysadmin Team]: Update expired PGP key in LDAP

2020-03-09 Thread Tor Bug Tracker & Wiki
#33484: Update expired PGP key in LDAP
-+-
 Reporter:  ahf  |  Owner:  anarcat
 Type:  task | Status:  closed
 Priority:  Medium   |  Milestone:
Component:  Internal Services/Tor Sysadmin Team  |Version:
 Severity:  Normal   | Resolution:  fixed
 Keywords:   |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by anarcat):

 * status:  accepted => closed
 * resolution:   => fixed


Comment:

 renewed, thanks!

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #32143 [Core Tor/Tor]: Build some CI jobs with ALL_BUGS_ARE_FATAL

2020-03-09 Thread Tor Bug Tracker & Wiki
#32143: Build some CI jobs with ALL_BUGS_ARE_FATAL
---+
 Reporter:  teor   |  Owner:  (none)
 Type:  task   | Status:  needs_review
 Priority:  Medium |  Milestone:  Tor: 0.4.3.x-final
Component:  Core Tor/Tor   |Version:
 Severity:  Normal | Resolution:
 Keywords:  043-should tor-ci  |  Actual Points:
Parent ID: | Points:  0.2
 Reviewer:  nickm  |Sponsor:
---+
Changes (by asn):

 * reviewer:   => nickm


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33573 [Core Tor/Tor]: Update dir-spec descriptor cosmetic difference criteria (12 hours -> 2 hours)

2020-03-09 Thread Tor Bug Tracker & Wiki
#33573: Update dir-spec descriptor cosmetic difference criteria (12 hours -> 2
hours)
--+
 Reporter:  opara |  Owner:  (none)
 Type:  defect| Status:  needs_review
 Priority:  Medium|  Milestone:  Tor: 0.4.4.x-final
Component:  Core Tor/Tor  |Version:
 Severity:  Normal| Resolution:
 Keywords:|  Actual Points:
Parent ID:| Points:
 Reviewer:  ahf   |Sponsor:
--+
Changes (by asn):

 * reviewer:   => ahf


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33555 [Core Tor/Tor]: Space out the line.key/line.value in test_policy_summary_helper_family_flags()

2020-03-09 Thread Tor Bug Tracker & Wiki
#33555: Space out the line.key/line.value in
test_policy_summary_helper_family_flags()
--+
 Reporter:  neel  |  Owner:  neel
 Type:  defect| Status:  needs_review
 Priority:  Medium|  Milestone:  Tor: 0.4.4.x-final
Component:  Core Tor/Tor  |Version:
 Severity:  Normal| Resolution:
 Keywords:  easy  |  Actual Points:
Parent ID:| Points:
 Reviewer:  asn   |Sponsor:
--+
Changes (by asn):

 * reviewer:   => asn


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33484 [Internal Services/Tor Sysadmin Team]: Update expired PGP key in LDAP

2020-03-09 Thread Tor Bug Tracker & Wiki
#33484: Update expired PGP key in LDAP
-+-
 Reporter:  ahf  |  Owner:  anarcat
 Type:  task | Status:
 |  accepted
 Priority:  Medium   |  Milestone:
Component:  Internal Services/Tor Sysadmin Team  |Version:
 Severity:  Normal   | Resolution:
 Keywords:   |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by anarcat):

 * status:  needs_review => accepted
 * owner:  tpa => anarcat


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33575 [Internal Services/Tor Sysadmin Team]: please update catalyst's PGP key in LDAP

2020-03-09 Thread Tor Bug Tracker & Wiki
#33575: please update catalyst's PGP key in LDAP
-+-
 Reporter:  catalyst |  Owner:  anarcat
 Type:  defect   | Status:  closed
 Priority:  Medium   |  Milestone:
Component:  Internal Services/Tor Sysadmin Team  |Version:
 Severity:  Normal   | Resolution:  fixed
 Keywords:   |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by anarcat):

 * status:  accepted => closed
 * resolution:   => fixed


Comment:

 done, thanks!

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33575 [Internal Services/Tor Sysadmin Team]: please update catalyst's PGP key in LDAP

2020-03-09 Thread Tor Bug Tracker & Wiki
#33575: please update catalyst's PGP key in LDAP
-+-
 Reporter:  catalyst |  Owner:  anarcat
 Type:  defect   | Status:
 |  accepted
 Priority:  Medium   |  Milestone:
Component:  Internal Services/Tor Sysadmin Team  |Version:
 Severity:  Normal   | Resolution:
 Keywords:   |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by anarcat):

 * status:  new => accepted
 * owner:  tpa => anarcat


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #19251 [Applications/Tor Browser]: TorBrowser might want to have an error page specific to when .onion links fail

2020-03-09 Thread Tor Bug Tracker & Wiki
#19251: TorBrowser might want to have an error page specific to when .onion 
links
fail
+--
 Reporter:  cypherpunks |  Owner:  brade
 Type:  enhancement | Status:  needs_review
 Priority:  Low |  Milestone:
Component:  Applications/Tor Browser|Version:
 Severity:  Normal  | Resolution:
 Keywords:  ux-team, TorBrowserTeam202003R  |  Actual Points:  6.7
Parent ID:  #30025  | Points:  6
 Reviewer:  acat,pospeselr  |Sponsor:
|  Sponsor27-must
+--
Changes (by mcs):

 * actualpoints:  6.3 => 6.7


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33482 [Applications/Tor Browser]: Update about:tor donate string

2020-03-09 Thread Tor Bug Tracker & Wiki
#33482: Update about:tor donate string
-+-
 Reporter:  antonela |  Owner:  mcs
 Type:  defect   | Status:
 |  needs_review
 Priority:  Medium   |  Milestone:
Component:  Applications/Tor Browser |Version:
 Severity:  Normal   | Resolution:
 Keywords:  ux-team, TorBrowserTeam202003R,  |  Actual Points:  0.1
  l10n   |
Parent ID:   | Points:  0.5
 Reviewer:  acat |Sponsor:
-+-
Changes (by mcs):

 * actualpoints:   => 0.1


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

[tor-bugs] #33576 [Applications/Tor Browser]: Update pion-webrtc version to 2.2.3

2020-03-09 Thread Tor Bug Tracker & Wiki
#33576: Update pion-webrtc version to 2.2.3
--+---
 Reporter:  cohosh|  Owner:  cohosh
 Type:  defect| Status:  assigned
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal|   Keywords:  snowflake
Actual Points:|  Parent ID:
   Points:|   Reviewer:
  Sponsor:|
--+---
 We recently tracked down some issues with the pion library that were
 causing inefficiencies and infinite loops to occur (see #33211).

 These have been addressed in pion-dtls `v2.0.0-rc.7` and pion-sctp
 `v1.7.5`. I'd suggest just bumping to the latest version of pion-webrtc
 `v2.2.3`, which includes version bumps for each of these supporting
 libraries.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33575 [Internal Services/Tor Sysadmin Team]: please update catalyst's PGP key in LDAP

2020-03-09 Thread Tor Bug Tracker & Wiki
#33575: please update catalyst's PGP key in LDAP
-+-
 Reporter:  catalyst |  Owner:  tpa
 Type:  defect   | Status:  new
 Priority:  Medium   |  Milestone:
Component:  Internal Services/Tor Sysadmin Team  |Version:
 Severity:  Normal   | Resolution:
 Keywords:   |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by catalyst):

 * Attachment "catalyst-min.asc" added.


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

[tor-bugs] #33575 [Internal Services/Tor Sysadmin Team]: please update catalyst's PGP key in LDAP

2020-03-09 Thread Tor Bug Tracker & Wiki
#33575: please update catalyst's PGP key in LDAP
-+-
 Reporter:  catalyst |  Owner:  tpa
 Type:  defect   | Status:  new
 Priority:  Medium   |  Milestone:
Component:  Internal Services/Tor Sysadmin Team  |Version:
 Severity:  Normal   |   Keywords:
Actual Points:   |  Parent ID:
   Points:   |   Reviewer:
  Sponsor:   |
-+-
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA256

 I recently let my PGP key expire without refreshing it. Please refresh
 my PGP key in LDAP, Schleuder lists, and anywhere else relevant that I
 might have forgotten to update. I'll attach an updated copy of the
 public key to this ticket. Thanks!

 - -Taylor
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v2

 iQGcBAEBCAAGBQJeZmjMAAoJEKMvF/0AVcMF/K0MAKFoQCOEsde5tuSlTKtMYamL
 EHMiVZphYIUuL7eAdlDdUky0Wf1MWVhaM2P+0dKEEjew1yW+AunjwfjaqaRHXP0j
 1o9qWY7omc6pE5t0/wym9X7tBcZ2yw7S2prvU2G3pj7uiX+jGLueb/W9XgfZ1EpZ
 Nys1Ki0/YKVNOj5rq8Ej4GG6GOfoN9SQE5+yWrXHuNfxc34SHQSK70MfDYMPtcpf
 Ii7KCRMn9hh8QY+kcKOqaoYAWrHG0mC5vim1pNzBiaCkDBHd7m05yx4AL3KPLSjN
 IvO3iBZkor2YLjBHxNTCHMUn5GGc5D4mlzRx2DRa3UxDwGmzWE0ncW+igp9JTOsq
 TYywzTPd06936VAfiMucWcQx56LxhVGmaAo7SjUzTTj8cSKUTcusuzWVC4fzRsQn
 skqB8wyDtVmAgXfGmpMzRPZaIGPAgPalPf3Rxq93tsdmeP6VZZF6yjU14+AdhpaN
 fSxhgwGG8//4iObdy+995ysSllzgaK7U4Ni8Yhci0A==
 =LnwU
 -END PGP SIGNATURE-

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33453 [Metrics/Relay Search]: Relay Search does not have an icon for StaleDesc

2020-03-09 Thread Tor Bug Tracker & Wiki
#33453: Relay Search does not have an icon for StaleDesc
--+-
 Reporter:  karsten   |  Owner:  karsten
 Type:  defect| Status:  closed
 Priority:  Medium|  Milestone:
Component:  Metrics/Relay Search  |Version:
 Severity:  Normal| Resolution:  fixed
 Keywords:  ux-team   |  Actual Points:  0.1
Parent ID:| Points:
 Reviewer:|Sponsor:
--+-
Changes (by karsten):

 * actualpoints:   => 0.1


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33453 [Metrics/Relay Search]: Relay Search does not have an icon for StaleDesc

2020-03-09 Thread Tor Bug Tracker & Wiki
#33453: Relay Search does not have an icon for StaleDesc
--+-
 Reporter:  karsten   |  Owner:  karsten
 Type:  defect| Status:  closed
 Priority:  Medium|  Milestone:
Component:  Metrics/Relay Search  |Version:
 Severity:  Normal| Resolution:  fixed
 Keywords:  ux-team   |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+-
Changes (by karsten):

 * status:  accepted => closed
 * resolution:   => fixed


Comment:

 Done. Merged and deployed. Closing.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33541 [Applications/Tor Browser]: fingerprinting: zoom.min/maxPercent should be fixed at 100

2020-03-09 Thread Tor Bug Tracker & Wiki
#33541: fingerprinting: zoom.min/maxPercent should be fixed at 100
---+--
 Reporter:  cypherpunks|  Owner:  tbb-team
 Type:  defect | Status:  new
 Priority:  Medium |  Milestone:
Component:  Applications/Tor Browser   |Version:
 Severity:  Normal | Resolution:
 Keywords:  tbb-fingerprinting-resolution  |  Actual Points:
Parent ID: | Points:
 Reviewer: |Sponsor:
---+--

Comment (by tom):

 As I understand it, this ticket is saying "Hey, a user can manually choose
 to zoom the page, and when they do that, the resolution changes."  (And a
 bunch of other stuff changes too, like device pixel ratio and dpi and you
 can detect the zoom percentage.)

 > The ultimate solution, but I'm not entirely sure if it's feasible (or is
 but low priority and/or a lot of work), is that zoom could trigger
 letterboxing to re-calculate

 I don't understand what we would recalculate. When you zoom, the
 resolution of the browser stays the same, but from the website's
 perspective the resolution has decreased. The amount of information the
 website is (a) Original Resolution (b) Zoom Level.  Everything else is -
 AFAICT - a calculation of those two components, so trying to hide (B)
 would require hiding it as it's exposed everywhere (e.g. device pixel
 ratio)

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #31701 [Circumvention/Obfs4]: Reachability tests for new obfs4 bridges

2020-03-09 Thread Tor Bug Tracker & Wiki
#31701: Reachability tests for new obfs4 bridges
---+--
 Reporter:  cohosh |  Owner:  cohosh
 Type:  defect | Status:  needs_review
 Priority:  Medium |  Milestone:
Component:  Circumvention/Obfs4|Version:
 Severity:  Normal | Resolution:
 Keywords:  reachability, measurement  |  Actual Points:
Parent ID: | Points:
 Reviewer:  phw|Sponsor:
---+--
Changes (by cohosh):

 * cc: cohosh (added)
 * reviewer:   => phw
 * status:  assigned => needs_review


Comment:

 Should I still be running these tests? I can keep them going but we might
 be seeing diminishing returns here in terms of information. Especially if
 we're moving to OONI eventually.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #31701 [Circumvention/Obfs4]: Reachability tests for new obfs4 bridges

2020-03-09 Thread Tor Bug Tracker & Wiki
#31701: Reachability tests for new obfs4 bridges
---+--
 Reporter:  cohosh |  Owner:  cohosh
 Type:  defect | Status:  assigned
 Priority:  Medium |  Milestone:
Component:  Circumvention/Obfs4|Version:
 Severity:  Normal | Resolution:
 Keywords:  reachability, measurement  |  Actual Points:
Parent ID: | Points:
 Reviewer: |Sponsor:
---+--

Comment (by cohosh):

 Replying to [comment:4 sigvids]:
 > > I just re-ran these tests and looks like at least 2 bridges that were
 previously unreachable in China are now reachable again.
 >
 > I have seen some reports saying that the GFW will unblock blocked IP
 addresses after a period of time. One report for Outline (i.e.,
 Shadowsocks) says unblocking can happen after as little as three days.
 However, if you start reusing the server for the same purpose, it will be
 blocked again:
 >
 > https://github.com/Jigsaw-Code/outline-
 server/issues/193#issuecomment-405042583
 >
 > It's possible that this unblocking rule applies also to IP addresses
 scraped from web/email/moat.
 >
 Thanks! This is a useful link. Indeed, blocking seems to be very
 intermittent for all of our bridges.
 > > So perhaps the block list populated by BridgeDB scraping is not
 static.
 >
 > Are the reachability tests based on a single connection, or on multiple
 connections with a realistic volume of traffic? It's possible that the GFW
 uses other detection methods in addition to scraping. A thread on Github
 suggests that blocking can be triggered by factors that include (1) volume
 of traffic, (2) traffic being fully encrypted, (3) very high entropy, and
 (4) use of popular VPS locations. The pattern is initially an IP/port ban,
 and then if you change ports multiple times, you get a full IP ban:
 >
 > https://github.com/shadowsocks/shadowsocks-libev/issues/2288
 You can see the test script
 [https://github.com/cohosh/bridgetest/blob/master/obfs4test here]. This is
 run approximately 4x a day from our probe point.

 We do download a large(ish) file, but it's possible it doesn't look like
 realistic traffic to a censor. As far as blocking based on use or
 suspicious traffic patterns, that's possible but as far as we know private
 obfs4 bridges are still working in China, which leads us to believe that
 they are not blocking based on traffic patterns.
 >
 > > It also looks like there are some bridges that are no longer reachable
 in North America. Might be worth checking into that.
 >
 > Is it possible that the bridges that are no longer reachable in North
 America have been taken offline? I sometimes see complaints by volunteers
 that their bridges don't get any traffic. For example:
 Yes I suspect it is because the bridges are
 misconfigured/unmaintained/down etc.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #31701 [Circumvention/Obfs4]: Reachability tests for new obfs4 bridges

2020-03-09 Thread Tor Bug Tracker & Wiki
#31701: Reachability tests for new obfs4 bridges
---+--
 Reporter:  cohosh |  Owner:  cohosh
 Type:  defect | Status:  assigned
 Priority:  Medium |  Milestone:
Component:  Circumvention/Obfs4|Version:
 Severity:  Normal | Resolution:
 Keywords:  reachability, measurement  |  Actual Points:
Parent ID: | Points:
 Reviewer: |Sponsor:
---+--

Comment (by cohosh):

 Just analyzed some more data from the probe point in China.

 Unfortunately, I hadn't started a cronjob from a site in North America.
 However, if you compare the most recent results with the ones before them,
 you'll notice that all bridges that are consistently blocked were reported
 as being down from a NA point as well. It's reasonable to assume that all
 bridges that were intermittently unavailable in China were reachable from
 North America at some point in that time.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #31701 [Circumvention/Obfs4]: Reachability tests for new obfs4 bridges

2020-03-09 Thread Tor Bug Tracker & Wiki
#31701: Reachability tests for new obfs4 bridges
---+--
 Reporter:  cohosh |  Owner:  cohosh
 Type:  defect | Status:  assigned
 Priority:  Medium |  Milestone:
Component:  Circumvention/Obfs4|Version:
 Severity:  Normal | Resolution:
 Keywords:  reachability, measurement  |  Actual Points:
Parent ID: | Points:
 Reviewer: |Sponsor:
---+--
Changes (by cohosh):

 * Attachment "obfs4-reachability-2020-03-09.pdf" added.


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #32927 [Applications/Tor Browser]: Get new certificate for authenticode signing

2020-03-09 Thread Tor Bug Tracker & Wiki
#32927: Get new certificate for authenticode signing
-+--
 Reporter:  gk   |  Owner:  gk
 Type:  defect   | Status:  assigned
 Priority:  Medium   |  Milestone:
Component:  Applications/Tor Browser |Version:
 Severity:  Normal   | Resolution:
 Keywords:  tbb-sign, GeorgKoppen202003  |  Actual Points:
Parent ID:  #33168   | Points:
 Reviewer:   |Sponsor:
-+--

Comment (by gk):

 I ordered a renewal on last Friday, which is still pending.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #23226 [Applications/GetTor]: GetTor help message could be more helpful

2020-03-09 Thread Tor Bug Tracker & Wiki
#23226: GetTor help message could be more helpful
+--
 Reporter:  catalyst|  Owner:  cohosh
 Type:  defect  | Status:  needs_review
 Priority:  Medium  |  Milestone:
Component:  Applications/GetTor |Version:
 Severity:  Normal  | Resolution:
 Keywords:  anti-censorship-roadmap-2020Q1  |  Actual Points:
Parent ID:  #9036   | Points:  1
 Reviewer:  phw |Sponsor:
+--
Changes (by cohosh):

 * status:  assigned => needs_review
 * reviewer:   => phw


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33533 [Applications/Tor Browser]: Rebase Tor Browser esr68 patches on top of mozilla-central

2020-03-09 Thread Tor Bug Tracker & Wiki
#33533: Rebase Tor Browser esr68 patches on top of mozilla-central
--+--
 Reporter:  acat  |  Owner:  acat
 Type:  task  | Status:  needs_review
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal| Resolution:
 Keywords:  TorBrowserTeam202003R |  Actual Points:  12
Parent ID:| Points:
 Reviewer:  sysrqb, pospeselr |Sponsor:
--+--
Changes (by sysrqb):

 * reviewer:   => sysrqb, pospeselr


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #23226 [Applications/GetTor]: GetTor help message could be more helpful

2020-03-09 Thread Tor Bug Tracker & Wiki
#23226: GetTor help message could be more helpful
+--
 Reporter:  catalyst|  Owner:  cohosh
 Type:  defect  | Status:  assigned
 Priority:  Medium  |  Milestone:
Component:  Applications/GetTor |Version:
 Severity:  Normal  | Resolution:
 Keywords:  anti-censorship-roadmap-2020Q1  |  Actual Points:
Parent ID:  #9036   | Points:  1
 Reviewer:  |Sponsor:
+--
Changes (by cohosh):

 * status:  needs_review => assigned
 * owner:  (none) => cohosh


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33557 [Applications/Tor Browser]: Update Android Toolchain for Fenix

2020-03-09 Thread Tor Bug Tracker & Wiki
#33557: Update Android Toolchain for Fenix
-+-
 Reporter:  sisbell  |  Owner:  tbb-
 |  team
 Type:  task | Status:
 |  needs_review
 Priority:  Medium   |  Milestone:
Component:  Applications/Tor Browser |Version:
 Severity:  Normal   | Resolution:
 Keywords:  tbb-mobile, Android, |  Actual Points:
  TorBrowserTeam202003R  |
Parent ID:  #33184   | Points:
 Reviewer:  sysrqb   |Sponsor:
-+-
Changes (by sysrqb):

 * reviewer:   => sysrqb


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33543 [Applications/GetTor]: GetTor fails to respond if you don't include a proper command

2020-03-09 Thread Tor Bug Tracker & Wiki
#33543: GetTor fails to respond if you don't include a proper command
-+
 Reporter:  cohosh   |  Owner:  cohosh
 Type:  defect   | Status:  closed
 Priority:  Medium   |  Milestone:
Component:  Applications/GetTor  |Version:
 Severity:  Major| Resolution:  fixed
 Keywords:   |  Actual Points:
Parent ID:   | Points:  .5
 Reviewer:   |Sponsor:
-+
Changes (by cohosh):

 * status:  needs_review => closed
 * resolution:   => fixed


Comment:

 hiro gave the ok for this and it was merged and deployed at
 
[https://gitweb.torproject.org/gettor.git/commit/?id=61afa2c544ac47f7583aa2a68c72bd7887b043b0
 7887b043b0].

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33008 [Metrics/Relay Search]: Display a bridge's distribution bucket

2020-03-09 Thread Tor Bug Tracker & Wiki
#33008: Display a bridge's distribution bucket
-+-
 Reporter:  phw  |  Owner:
 |  metrics-team
 Type:  enhancement  | Status:
 |  merge_ready
 Priority:  Medium   |  Milestone:
Component:  Metrics/Relay Search |Version:
 Severity:  Normal   | Resolution:
 Keywords:  s30-o24a1, anti-censorship-roadmap-  |  Actual Points:
  2020Q1 metrics-team-roadmap-2020Q1 |
Parent ID:  #31281   | Points:  2
 Reviewer:   |Sponsor:
 |  Sponsor30-can
-+-

Comment (by phw):

 Replying to [comment:13 karsten]:
 > Should that be a new ticket, or is creating that page a quick task on
 your side?
 [[br]]
 It's a relatively quick task, so let's use this ticket. I'll try to create
 a page over the next few days.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33515 [Community/Tor Browser Manual]: Add Onion Location redirection details to Tor Browser Manual Onion Services Section

2020-03-09 Thread Tor Bug Tracker & Wiki
#33515: Add Onion Location redirection details to Tor Browser Manual Onion 
Services
Section
--+--
 Reporter:  pili  |  Owner:  ggus
 Type:  enhancement   | Status:  new
 Priority:  Medium|  Milestone:
Component:  Community/Tor Browser Manual  |Version:
 Severity:  Normal| Resolution:
 Keywords:  ux-team, tor-hs,tbb-9.5   |  Actual Points:
Parent ID:  #33512| Points:
 Reviewer:|Sponsor:
--+--
Changes (by pili):

 * keywords:
 ux-team, tor-hs, network-team-roadmap-november, tbb-9.5, network-team-
 roadmap-2020Q1, TorBrowserTeam202003R
 => ux-team, tor-hs,tbb-9.5


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33487 [Applications/Tor Browser]: Prepare lucetc and wasi-sdk for macOS build for RLBox Support (was: Prepare lucetc and wasi-sdk for macOS build)

2020-03-09 Thread Tor Bug Tracker & Wiki
#33487: Prepare lucetc and wasi-sdk for macOS build for RLBox Support
-+-
 Reporter:  gk   |  Owner:  gk
 Type:  defect   | Status:
 |  needs_review
 Priority:  Medium   |  Milestone:
Component:  Applications/Tor Browser |Version:
 Severity:  Normal   | Resolution:
 Keywords:  tbb-security, GeorgKoppen202002, |  Actual Points:
  TorBrowserTeam202003R  |
Parent ID:  #33410   | Points:
 Reviewer:   |Sponsor:
-+-

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33482 [Applications/Tor Browser]: Update about:tor donate string

2020-03-09 Thread Tor Bug Tracker & Wiki
#33482: Update about:tor donate string
-+-
 Reporter:  antonela |  Owner:  mcs
 Type:  defect   | Status:
 |  needs_review
 Priority:  Medium   |  Milestone:
Component:  Applications/Tor Browser |Version:
 Severity:  Normal   | Resolution:
 Keywords:  ux-team, TorBrowserTeam202003R,  |  Actual Points:
  l10n   |
Parent ID:   | Points:  0.5
 Reviewer:  acat |Sponsor:
-+-
Changes (by sysrqb):

 * reviewer:   => acat


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33512 [Webpages]: Document Onion Location redirects in portals

2020-03-09 Thread Tor Bug Tracker & Wiki
#33512: Document Onion Location redirects in portals
--+---
 Reporter:  pili  |  Owner:  (none)
 Type:  enhancement   | Status:  new
 Priority:  Medium|  Milestone:
Component:  Webpages  |Version:
 Severity:  Normal| Resolution:
 Keywords:  ux-team, tor-hs, tbb-9.5  |  Actual Points:
Parent ID:  #21952| Points:
 Reviewer:|Sponsor:  Sponsor27-can
--+---
Changes (by pili):

 * keywords:
 ux-team, tor-hs, network-team-roadmap-november, tbb-9.5, network-team-
 roadmap-2020Q1, TorBrowserTeam202003R
 => ux-team, tor-hs, tbb-9.5


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33403 [Applications/Tor Browser]: Add nightly mar key to tor-browser

2020-03-09 Thread Tor Bug Tracker & Wiki
#33403: Add nightly mar key to tor-browser
-+-
 Reporter:  boklm|  Owner:  boklm
 Type:  task | Status:
 |  needs_review
 Priority:  Medium   |  Milestone:
Component:  Applications/Tor Browser |Version:
 Severity:  Normal   | Resolution:
 Keywords:  tbb-rbm, tbb-update, |  Actual Points:  .1
  TorBrowserTeam202003R  |
Parent ID:  #18867   | Points:  .1
 Reviewer:  brade, mcs   |Sponsor:
-+-
Changes (by sysrqb):

 * reviewer:   => brade, mcs


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33276 [Internal Services/Tor Sysadmin Team]: decomission listera

2020-03-09 Thread Tor Bug Tracker & Wiki
#33276: decomission listera
-+-
 Reporter:  anarcat  |  Owner:  tpa
 Type:  task | Status:  new
 Priority:  High |  Milestone:
Component:  Internal Services/Tor Sysadmin Team  |Version:
 Severity:  Major| Resolution:
 Keywords:  tpa-roadmap-april|  Actual Points:
Parent ID:   | Points:  1
 Reviewer:   |Sponsor:
-+-
Changes (by anarcat):

 * keywords:  tpa-roadmap-march => tpa-roadmap-april


Comment:

 no time for this in march

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33402 [Applications/Tor Browser]: Set app.update.url for nightly builds

2020-03-09 Thread Tor Bug Tracker & Wiki
#33402: Set app.update.url for nightly builds
-+-
 Reporter:  boklm|  Owner:  boklm
 Type:  task | Status:
 |  needs_review
 Priority:  Medium   |  Milestone:
Component:  Applications/Tor Browser |Version:
 Severity:  Normal   | Resolution:
 Keywords:  tbb-rbm, tbb-update, |  Actual Points:  .1
  TorBrowserTeam202003R  |
Parent ID:  #18867   | Points:  .1
 Reviewer:  mcs, brade   |Sponsor:
-+-
Changes (by sysrqb):

 * reviewer:   => mcs, brade


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #32534 [Applications/Tor Browser]: settle on one canonical jtorctl

2020-03-09 Thread Tor Bug Tracker & Wiki
#32534: settle on one canonical jtorctl
-+-
 Reporter:  eighthave|  Owner:  tbb-
 |  team
 Type:  defect   | Status:
 |  needs_review
 Priority:  High |  Milestone:
Component:  Applications/Tor Browser |Version:
 Severity:  Normal   | Resolution:
 Keywords:  Android, tbb-mobile, jtorctl,|  Actual Points:
  TorBrowserTeam202003R  |
Parent ID:   | Points:
 Reviewer:  sysrqb   |Sponsor:
-+-
Changes (by sysrqb):

 * reviewer:   => sysrqb


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #32993 [Applications/Tor Browser]: Package Tor With Tor Android Service Project

2020-03-09 Thread Tor Bug Tracker & Wiki
#32993: Package Tor With Tor Android Service Project
-+-
 Reporter:  sisbell  |  Owner:  tbb-
 |  team
 Type:  defect   | Status:
 |  needs_review
 Priority:  Medium   |  Milestone:
Component:  Applications/Tor Browser |Version:
 Severity:  Normal   | Resolution:
 Keywords:  tbb-mobile, tbb-rbm, tbb-parity, |  Actual Points:
  TorBrowserTeam202003R  |
Parent ID:  #28704   | Points:
 Reviewer:  boklm|Sponsor:
-+-
Changes (by sysrqb):

 * reviewer:   => boklm


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #32803 [Internal Services/Tor Sysadmin Team]: migrate eugeni to the gnt-fsn cluster

2020-03-09 Thread Tor Bug Tracker & Wiki
#32803: migrate eugeni to the gnt-fsn cluster
-+-
 Reporter:  anarcat  |  Owner:  tpa
 Type:  task | Status:  new
 Priority:  High |  Milestone:
Component:  Internal Services/Tor Sysadmin Team  |Version:
 Severity:  Major| Resolution:
 Keywords:  tpa-roadmap-april|  Actual Points:
Parent ID:  #32802   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by anarcat):

 * keywords:  tpa-roadmap-march => tpa-roadmap-april


Comment:

 it's very unlikely we'll have the cycles to do this in march. we should do
 a few more migrations before taking a critical one as this one.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33537 [Internal Services/Tor Sysadmin Team]: audit SVN accesses

2020-03-09 Thread Tor Bug Tracker & Wiki
#33537: audit SVN accesses
-+-
 Reporter:  anarcat  |  Owner:  anarcat
 Type:  task | Status:
 |  assigned
 Priority:  Very High|  Milestone:
Component:  Internal Services/Tor Sysadmin Team  |Version:
 Severity:  Major| Resolution:
 Keywords:  tpa-roadmap-march|  Actual Points:
Parent ID:  #17202   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by anarcat):

 * status:  new => assigned
 * owner:  tpa => anarcat


Comment:

 i agreed in vegas to take care of this.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #29974 [Internal Services/Tor Sysadmin Team]: move critical services off, and then replace, moly

2020-03-09 Thread Tor Bug Tracker & Wiki
#29974: move critical services off, and then replace, moly
-+-
 Reporter:  anarcat  |  Owner:  anarcat
 Type:  project  | Status:
 |  assigned
 Priority:  Medium   |  Milestone:
Component:  Internal Services/Tor Sysadmin Team  |Version:
 Severity:  Normal   | Resolution:
 Keywords:  tpa-roadmap-april|  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by anarcat):

 * keywords:  tpa-roadmap-march => tpa-roadmap-april


Comment:

 see #29397

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33484 [Internal Services/Tor Sysadmin Team]: Update expired PGP key in LDAP

2020-03-09 Thread Tor Bug Tracker & Wiki
#33484: Update expired PGP key in LDAP
-+-
 Reporter:  ahf  |  Owner:  tpa
 Type:  task | Status:
 |  needs_review
 Priority:  Medium   |  Milestone:
Component:  Internal Services/Tor Sysadmin Team  |Version:
 Severity:  Normal   | Resolution:
 Keywords:   |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by ahf):

 * status:  needs_information => needs_review


Comment:

 Added my key.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #29397 [Internal Services/Tor Sysadmin Team]: Make use of some donated hardware

2020-03-09 Thread Tor Bug Tracker & Wiki
#29397: Make use of some donated hardware
-+-
 Reporter:  ln5  |  Owner:  anarcat
 Type:  task | Status:
 |  assigned
 Priority:  Medium   |  Milestone:
Component:  Internal Services/Tor Sysadmin Team  |Version:
 Severity:  Normal   | Resolution:
 Keywords:  tpa-roadmap-april|  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by anarcat):

 * keywords:  tpa-roadmap-march => tpa-roadmap-april


Comment:

 no news from cymru for a week or two and i will have little time for this,
 so postponing to april

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33484 [Internal Services/Tor Sysadmin Team]: Update expired PGP key in LDAP

2020-03-09 Thread Tor Bug Tracker & Wiki
#33484: Update expired PGP key in LDAP
-+-
 Reporter:  ahf  |  Owner:  tpa
 Type:  task | Status:
 |  needs_information
 Priority:  Medium   |  Milestone:
Component:  Internal Services/Tor Sysadmin Team  |Version:
 Severity:  Normal   | Resolution:
 Keywords:   |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by ahf):

 * Attachment "0xF9BC2FE22B08CE8F.txt" added.

 Updated key

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33085 [Internal Services/Tor Sysadmin Team]: decomission unifolium/kvm2, 6 VMs to migrate

2020-03-09 Thread Tor Bug Tracker & Wiki
#33085: decomission unifolium/kvm2, 6 VMs to migrate
-+-
 Reporter:  anarcat  |  Owner:  anarcat
 Type:  task | Status:
 |  assigned
 Priority:  High |  Milestone:
Component:  Internal Services/Tor Sysadmin Team  |Version:
 Severity:  Normal   | Resolution:
 Keywords:  tpa-roadmap-march|  Actual Points:
Parent ID:   | Points:  5
 Reviewer:   |Sponsor:
-+-
Changes (by anarcat):

 * keywords:  tpa-roadmap-february => tpa-roadmap-march


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33446 [Internal Services/Tor Sysadmin Team]: migrate cupani/git-rw to the ganeti cluster, triggering an IP address change

2020-03-09 Thread Tor Bug Tracker & Wiki
#33446: migrate cupani/git-rw to the ganeti cluster, triggering an IP address
change
-+-
 Reporter:  anarcat  |  Owner:  anarcat
 Type:  task | Status:
 |  needs_review
 Priority:  High |  Milestone:
Component:  Internal Services/Tor Sysadmin Team  |Version:
 Severity:  Major| Resolution:
 Keywords:  tpa-roadmap-march|  Actual Points:
Parent ID:  #33085   | Points:
 Reviewer:  irl  |Sponsor:
-+-
Changes (by anarcat):

 * keywords:  tpa-roadmap-february => tpa-roadmap-march


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33387 [Internal Services/Tor Sysadmin Team]: establish tmpfs policy

2020-03-09 Thread Tor Bug Tracker & Wiki
#33387: establish tmpfs policy
-+-
 Reporter:  anarcat  |  Owner:  tpa
 Type:  task | Status:  new
 Priority:  Medium   |  Milestone:
Component:  Internal Services/Tor Sysadmin Team  |Version:
 Severity:  Normal   | Resolution:
 Keywords:  tpa-roadmap-april|  Actual Points:
Parent ID:  #31239   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by anarcat):

 * keywords:  tpa-roadmap-february => tpa-roadmap-april


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33332 [Internal Services/Tor Sysadmin Team]: move root passwords to trocla?

2020-03-09 Thread Tor Bug Tracker & Wiki
#2: move root passwords to trocla?
-+-
 Reporter:  anarcat  |  Owner:  tpa
 Type:  task | Status:  new
 Priority:  Low  |  Milestone:
Component:  Internal Services/Tor Sysadmin Team  |Version:
 Severity:  Major| Resolution:
 Keywords:  tpa-roadmap-april|  Actual Points:
Parent ID:  #31239   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by anarcat):

 * keywords:  tpa-roadmap-february => tpa-roadmap-april


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33448 [Internal Services/Tor Sysadmin Team]: Migrate IP address of polyanthum.torproject.org (BridgeDB)

2020-03-09 Thread Tor Bug Tracker & Wiki
#33448: Migrate IP address of polyanthum.torproject.org (BridgeDB)
-+-
 Reporter:  cohosh   |  Owner:  anarcat
 Type:  defect   | Status:
 |  assigned
 Priority:  Medium   |  Milestone:
Component:  Internal Services/Tor Sysadmin Team  |Version:
 Severity:  Normal   | Resolution:
 Keywords:  tpa-roadmap-march|  Actual Points:
Parent ID:  #33085   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by anarcat):

 * owner:  tpa => anarcat
 * keywords:  tpa-roadmap-february => tpa-roadmap-march
 * status:  new => assigned


Comment:

 hoping to do this this week.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33447 [Internal Services/Tor Sysadmin Team]: migrate omeiense to the ganeti cluster, triggering an IP change

2020-03-09 Thread Tor Bug Tracker & Wiki
#33447: migrate omeiense to the ganeti cluster, triggering an IP change
-+-
 Reporter:  anarcat  |  Owner:  anarcat
 Type:  task | Status:
 |  accepted
 Priority:  High |  Milestone:
Component:  Internal Services/Tor Sysadmin Team  |Version:
 Severity:  Major| Resolution:
 Keywords:  tpa-roadmap-march|  Actual Points:
Parent ID:  #33085   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by anarcat):

 * keywords:  tpa-roadmap-february => tpa-roadmap-march
 * owner:  tpa => anarcat
 * status:  new => accepted


Comment:

 hoping to do this this week.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #13410 [Applications/Tor Browser]: Disable self-signed certificate warnings when visiting .onion sites

2020-03-09 Thread Tor Bug Tracker & Wiki
#13410: Disable self-signed certificate warnings when visiting .onion sites
+--
 Reporter:  tom |  Owner:  pospeselr
 Type:  defect  | Status:
|  needs_information
 Priority:  Very High   |  Milestone:
Component:  Applications/Tor Browser|Version:
 Severity:  Normal  | Resolution:
 Keywords:  ux-team, TorBrowserTeam202003R  |  Actual Points:  7
Parent ID:  #30025  | Points:
 Reviewer:  |Sponsor:
|  Sponsor27-must
+--
Changes (by sysrqb):

 * status:  needs_review => needs_information


Comment:

 We should discuss this and make sure we implement the functionality we
 actually want.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #32802 [Internal Services/Tor Sysadmin Team]: decomission kvm4

2020-03-09 Thread Tor Bug Tracker & Wiki
#32802: decomission kvm4
-+-
 Reporter:  anarcat  |  Owner:  tpa
 Type:  project  | Status:  new
 Priority:  High |  Milestone:
Component:  Internal Services/Tor Sysadmin Team  |Version:
 Severity:  Major| Resolution:
 Keywords:  tpa-roadmap-april|  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by anarcat):

 * keywords:   => tpa-roadmap-april


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #32901 [Internal Services/Tor Sysadmin Team]: puppetize Nagios

2020-03-09 Thread Tor Bug Tracker & Wiki
#32901: puppetize Nagios
-+-
 Reporter:  anarcat  |  Owner:  anarcat
 Type:  project  | Status:
 |  assigned
 Priority:  Low  |  Milestone:
Component:  Internal Services/Tor Sysadmin Team  |Version:
 Severity:  Major| Resolution:
 Keywords:  tpa-roadmap-april|  Actual Points:
Parent ID:  #31239   | Points:  10
 Reviewer:   |Sponsor:
-+-
Changes (by anarcat):

 * keywords:  tpa-roadmap-february => tpa-roadmap-april


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #31239 [Internal Services/Tor Sysadmin Team]: automate installs

2020-03-09 Thread Tor Bug Tracker & Wiki
#31239: automate installs
-+-
 Reporter:  anarcat  |  Owner:  anarcat
 Type:  enhancement  | Status:
 |  assigned
 Priority:  Low  |  Milestone:
Component:  Internal Services/Tor Sysadmin Team  |Version:
 Severity:  Normal   | Resolution:
 Keywords:  tpa-roadmap-april|  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by anarcat):

 * keywords:  tpa-roadmap-february => tpa-roadmap-april


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33574 [Community/Translations]: invisible unreviewed string in "Tor Launcher - properties"

2020-03-09 Thread Tor Bug Tracker & Wiki
#33574: invisible unreviewed string in "Tor Launcher - properties"
+--
 Reporter:  Zarko_Gjurov|  Owner:  emmapeel
 Type:  defect  | Status:  new
 Priority:  Medium  |  Milestone:
Component:  Community/Translations  |Version:
 Severity:  Blocker | Resolution:
 Keywords:  |  Actual Points:
Parent ID:  | Points:
 Reviewer:  |Sponsor:
+--
Changes (by emmapeel):

 * priority:  Immediate => Medium


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33573 [Core Tor/Tor]: Update dir-spec descriptor cosmetic difference criteria (12 hours -> 2 hours)

2020-03-09 Thread Tor Bug Tracker & Wiki
#33573: Update dir-spec descriptor cosmetic difference criteria (12 hours -> 2
hours)
--+
 Reporter:  opara |  Owner:  (none)
 Type:  defect| Status:  needs_review
 Priority:  Medium|  Milestone:  Tor: 0.4.4.x-final
Component:  Core Tor/Tor  |Version:
 Severity:  Normal| Resolution:
 Keywords:|  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+
Changes (by nickm):

 * status:  new => needs_review
 * milestone:   => Tor: 0.4.4.x-final


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33087 [Core Tor/Tor]: closing stdio fds on exit can interfere with LeakSanitizer, etc

2020-03-09 Thread Tor Bug Tracker & Wiki
#33087: closing stdio fds on exit can interfere with LeakSanitizer, etc
-+-
 Reporter:  catalyst |  Owner:  teor
 Type:  defect   | Status:
 |  merge_ready
 Priority:  Medium   |  Milestone:  Tor:
 |  0.4.3.x-final
Component:  Core Tor/Tor |Version:  Tor:
 |  0.4.1.6
 Severity:  Normal   | Resolution:
 Keywords:  tor-log, 043-should, consider-   |  Actual Points:  0.5
  backport-after-0433, 041-backport, |
  042-backport   |
Parent ID:   | Points:  0.2
 Reviewer:  dgoulet  |Sponsor:
-+-
Changes (by dgoulet):

 * status:  needs_review => merge_ready


Comment:

 lgtm. Merged PR 1723 to master.

 Leaving in 043 milestone for backport consideration.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33453 [Metrics/Relay Search]: Relay Search does not have an icon for StaleDesc

2020-03-09 Thread Tor Bug Tracker & Wiki
#33453: Relay Search does not have an icon for StaleDesc
--+--
 Reporter:  karsten   |  Owner:  karsten
 Type:  defect| Status:  accepted
 Priority:  Medium|  Milestone:
Component:  Metrics/Relay Search  |Version:
 Severity:  Normal| Resolution:
 Keywords:  ux-team   |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+--
Changes (by karsten):

 * status:  needs_information => accepted
 * owner:  metrics-team => karsten


Comment:

 Great! I'll put it in later today. Thanks, antonela and irl!

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #30196 [Core Tor/sbws]: Add the tor version to the sbws bandwidth file header

2020-03-09 Thread Tor Bug Tracker & Wiki
#30196: Add the tor version to the sbws bandwidth file header
---+---
 Reporter:  teor   |  Owner:  (none)
 Type:  enhancement| Status:  closed
 Priority:  High   |  Milestone:  sbws: 1.2.x-final
Component:  Core Tor/sbws  |Version:
 Severity:  Major  | Resolution:  fixed
 Keywords:  sbws-roadmap   |  Actual Points:
Parent ID:  #33121 | Points:  1
 Reviewer:  ahf|Sponsor:
---+---
Changes (by juga):

 * status:  merge_ready => closed
 * resolution:   => fixed


Comment:

 Merged.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #33574 [Community/Translations]: invisible unreviewed string in "Tor Launcher - properties"

2020-03-09 Thread Tor Bug Tracker & Wiki
#33574: invisible unreviewed string in "Tor Launcher - properties"
+--
 Reporter:  Zarko_Gjurov|  Owner:  emmapeel
 Type:  defect  | Status:  new
 Priority:  Immediate   |  Milestone:
Component:  Community/Translations  |Version:
 Severity:  Blocker | Resolution:
 Keywords:  |  Actual Points:
Parent ID:  | Points:
 Reviewer:  |Sponsor:
+--
Changes (by Zarko_Gjurov):

 * Attachment "TransifexBug_small.jpg" added.

 Preview

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

  1   2   >