Re: [tor-bugs] #33421 [Metrics/Onionperf]: Track which Guard is used for experimental measurements

2020-06-11 Thread Tor Bug Tracker & Wiki
#33421: Track which Guard is used for experimental measurements
-+-
 Reporter:  acute|  Owner:  karsten
 Type:  enhancement  | Status:
 |  accepted
 Priority:  Medium   |  Milestone:
Component:  Metrics/Onionperf|Version:
 Severity:  Normal   | Resolution:
 Keywords:  metrics-team-roadmap-2020, metrics-  |  Actual Points:
  team-roadmap-2020-june |
Parent ID:  #33321   | Points:  5.0
 Reviewer:   |Sponsor:
 |  Sponsor59-must
-+-

Comment (by mikeperry):

 It is possible prop#271 broke the GUARD event... That is a separate piece
 of work than switching to One Guard To Rule Them All, but it is what we
 use to manage guards since 0.3.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] #33939 [Applications/Tor Browser]: Decide which components of Fenix to rip out, disable, or use

2020-06-11 Thread Tor Bug Tracker & Wiki
#33939: Decide which components of Fenix to rip out, disable, or use
--+
 Reporter:  gk|  Owner:  tbb-team
 Type:  task  | Status:  new
 Priority:  High  |  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal| Resolution:
 Keywords:  tbb-mobile, TorBrowserTeam202006  |  Actual Points:
Parent ID:  #33661| Points:
 Reviewer:|Sponsor:
  |  Sponsor58-must
--+

Comment (by sysrqb):

 Replying to [comment:14 gk]:
 > Replying to [comment:13 sysrqb]:
 > > Replying to [comment:3 sysrqb]:
 > > > The follow list partitions the dependencies into "include",
 "exclude", "disable", and "must-audit" sets
 > > >
 > > > "Must Audit" includes dependencies that we could allow depending on
 their implementation
 > > >
 > > > "Disable" includes dependencies that we probably do not want and we
 should always use "Dummy" implementations
 > > >
 > > > "Disable" and "Exclude" may merge into a single set.
 > > >
 > > > === Include ===
 > > > {{{
 > > > > # GeckoView
 > > > > mozilla_browser_engine_gecko_nightly -> org.mozilla.components
 :browser-engine-gecko-nightly
 > > > > mozilla_browser_engine_gecko_beta -> org.mozilla.components
 :browser-engine-gecko-beta
 > >
 > > #34177
 >
 > One thing I've been thinking about the requirement for having multiple
 engines included at the same time when building is how to make sure we
 avoid that when actually building releases/alphas. I am not sure yet how
 to do that in the best way. I started playing with ripping things our in
 `android-components` so that we e.g. don't require some `gecko_nightly`
 code anymore. But it feels a bit awkward so far.
 >
 > The reason for doing that is tha I don't want to land in a situation
 that due to a bug not-proxy-safe and not audited nightly code is suddenly
 used in our builds. That's not a problem with geckoview per se as there is
 a branch per series (`mozilla-central` -> `gecko_nightly`, `mozilla-beta`
 -> `gecko_beta` etc.) but that's not the case anymore for those
 dependencies in `android-components` and `fenix`.

 Do you suggest we only keep `beta` and `production`? Should we simply
 carry a patch that deletes/comments-out the geckoNightly variant, so it
 can never be built accidentally?

--
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] #33939 [Applications/Tor Browser]: Decide which components of Fenix to rip out, disable, or use

2020-06-11 Thread Tor Bug Tracker & Wiki
#33939: Decide which components of Fenix to rip out, disable, or use
--+
 Reporter:  gk|  Owner:  tbb-team
 Type:  task  | Status:  new
 Priority:  High  |  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal| Resolution:
 Keywords:  tbb-mobile, TorBrowserTeam202006  |  Actual Points:
Parent ID:  #33661| Points:
 Reviewer:|Sponsor:
  |  Sponsor58-must
--+

Comment (by sysrqb):

 Replying to [comment:3 sysrqb]:
 > {{{
 > > # Shows site permission request prompts
 > > mozilla_feature_site_permissions -> org.mozilla.components:feature-
 sitepermissions
 > >

 No references to `net`, `connect`, `tcp`, `udp`, `write`, `send`, `read`,
 `recv`, `startActivity`. Uri is used for converting a Uri to a String.
 `launch` used for coroutines.

 > {{{
 > > # Wraps/Provides a Reader View WebExtension
 > > mozilla_feature_readerview -> org.mozilla.components:feature-
 readerview
 > >

 No references to `net`, `connect`, `tcp`, `udp`, `write`, `recv`, `Uri`,
 `launch`, `startActivity`. Lots of `read` matches, but that's because it's
 part of the name of the component. `send` is matched because readerview is
 a bundled webextension and messages are sent between the app and the
 webextension.

 > {{{
 > > # Implementation for saving, restoring and organizing collections of
 tabs
 > > mozilla_feature_tab_collections -> org.mozilla.components:feature-tab-
 collections
 > >

 No references to `net`, `connect`, `tcp`, `udp`, `send`, `recv`, `Uri`,
 `launch`, `startActivity`. `read`/`write` are used for interacting with
 state saved/cached on disk. #34438

 > {{{
 > > # Implementation for saving and removing top sites
 > > mozilla_feature_top_sites -> org.mozilla.components:feature-top-sites
 > >

 No references to `net`, `connect`, `tcp`, `udp`, `send`, `recv`, `Uri`,
 `read`, `write`, `launch`, `startActivity`.

 > {{{
 > > # Displays web notifications
 > > mozilla_feature_webnotifications -> org.mozilla.components:feature-
 webnotifications
 > >

 No references to `net`, `connect`, `tcp`, `udp`, `send`, `recv`, `read`,
 `write`, `launch`, `startActivity`. `Uri` used for holding a uri. #34439

 > {{{
 > > # Base or core component containing building blocks and interfaces for
 other components
 > > mozilla_support_base -> org.mozilla.components:support-base
 > >

 No references to `net`, `connect`, `tcp`, `udp`, `recv`, `Uri`, `read`,
 `launch`, `startActivity. `send` and `write` matches related to local
 logging.

 > {{{
 > > # A set of (Mozilla) Kotlin extensions on top of the Android framework
 and Kotlin standard library
 > > mozilla_support_ktx -> org.mozilla.components:support-ktx
 > >

 No references to `net`, `connect`, `tcp`, `udp`, `send`, `recv`, `Uri`,
 `read`, `write`, `launch`. `Context.share` is a wrapper around
 `startActivity`. Additional helper utility classes for AtomicFile, Uri,
 String, Preferences, etc.

 > {{{
 > > # Enables logging from Rust code.
 > > mozilla_support_rustlog -> org.mozilla.components:support-rustlog
 > >


 No references to `net`, `connect`, `tcp`, `udp`, `send`, `recv`, `Uri`,
 `read`, `write`, `launch`, `startActivity`.

 > {{{
 > > # Generic utility classes to be shared between projects.
 > > mozilla_support_utils -> org.mozilla.components:support-utils
 > >

 No references to `net`, `connect`, `tcp`, `udp`, `send`, `recv`, `read`,
 `write`, `launch`, `startActivity`. `Uri` used for storing and parsing
 uris.

 > {{{
 > > # Allow apps to change the system defined language by their custom one
 > > mozilla_support_locale -> org.mozilla.components:support-locale
 > >

 No references to `net`, `connect`, `tcp`, `udp`, `send`, `recv`, `Uri`,
 `read`, `write`, `launch`, `startActivity`.

 > {{{
 > > # The standard set of Photon colors
 > > mozilla_ui_colors -> org.mozilla.components:ui-colors
 > >

 No references to `net`, `connect`, `tcp`, `udp`, `send`, `recv`, `Uri`,
 `read`, `write`, `launch`, `startActivity`.

 > {{{
 > > # A collection of often used browser icons.
 > > mozilla_ui_icons -> org.mozilla.components:ui-icons
 > >

 No references to `net`, `connect`, `tcp`, `udp`, `send`, `recv`, `Uri`,
 `read`, `write`, `launch`, `startActivity`.

 > {{{
 > > # A library for reading and using the Public Suffix List.
 > > mozilla_ui_publicsuffixlist -> org.mozilla.components:lib-
 publicsuffixlist
 > >

 No references to `net`, `connect`, `tcp`, `udp`, `send`, `recv`, `read`,
 `write`, `launch`, `startActivity`. `Uri` for parsing strings.

 > {{{
 > > # More AndroidX compatibility libraries
 > > androidx_legacy -> 

[tor-bugs] #34443 [Applications/Tor Browser]: Audit Lottie?

2020-06-11 Thread Tor Bug Tracker & Wiki
#34443: Audit Lottie?
--+--
 Reporter:  sysrqb|  Owner:  tbb-team
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal|   Keywords:
Actual Points:|  Parent ID:  #33661
   Points:|   Reviewer:
  Sponsor:|
--+--
 https://github.com/airbnb/lottie-android

--
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] #34442 [Applications/Tor Browser]: Audit Flexbox?

2020-06-11 Thread Tor Bug Tracker & Wiki
#34442: Audit Flexbox?
--+--
 Reporter:  sysrqb|  Owner:  tbb-team
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal|   Keywords:
Actual Points:|  Parent ID:  #33661
   Points:|   Reviewer:
  Sponsor:|
--+--
 https://github.com/google/flexbox-layout/tree/2.0.1

 `com.google.android.flexbox.FlexboxLayoutManager`

--
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] #34441 [Applications/Tor Browser]: Audit Material Components library?

2020-06-11 Thread Tor Bug Tracker & Wiki
#34441: Audit Material Components library?
--+--
 Reporter:  sysrqb|  Owner:  tbb-team
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal|   Keywords:
Actual Points:|  Parent ID:  #33661
   Points:|   Reviewer:
  Sponsor:|
--+--
 https://github.com/material-components/material-components-
 android/tree/1.1.0

 `com.google.android.material.snackbar.Snackbar`
 `com.google.android.material.appbar.AppBarLayout`

--
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] #34440 [Applications/Tor Browser]: Audit AndroidX libraries?

2020-06-11 Thread Tor Bug Tracker & Wiki
#34440: Audit AndroidX libraries?
--+--
 Reporter:  sysrqb|  Owner:  tbb-team
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal|   Keywords:
Actual Points:|  Parent ID:  #33661
   Points:|   Reviewer:
  Sponsor:|
--+--
 #33939
 > {{{
 > > # More AndroidX compatibility libraries
 > > androidx_legacy -> androidx.legacy:legacy-support-v4
 > > androidx_paging -> androidx.paging:paging-runtime-ktx
 > > androidx_preference -> androidx.preference:preference-ktx
 > > androidx_fragment -> androidx.fragment:fragment-ktx
 > > androidx_navigation_fragment -> androidx.navigation:navigation-
 fragment-ktx
 > > androidx_navigation_ui -> androidx.navigation:navigation-ui
 > > androidx_recyclerview -> androidx.recyclerview:recyclerview
 > > androidx_lifecycle_livedata -> androidx.lifecycle:lifecycle-livedata-
 ktx
 > > androidx_lifecycle_runtime -> androidx.lifecycle:lifecycle-runtime-ktx
 > > androidx_lifecycle_viewmodel -> androidx.lifecycle:lifecycle-
 viewmodel-ktx
 > > androidx_core -> androidx.core:core
 > > androidx_core_ktx -> androidx.core:core-ktx
 > > androidx_transition -> androidx.transition:transition
 > > androidx_work_ktx -> androidx.work:work-runtime-ktx
 > }}}

--
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] #34439 [Applications/Tor Browser]: Isolate Icon loader on Android

2020-06-11 Thread Tor Bug Tracker & Wiki
#34439: Isolate Icon loader on Android
--+--
 Reporter:  sysrqb|  Owner:  tbb-team
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal|   Keywords:
Actual Points:|  Parent ID:  #33661
   Points:|   Reviewer:
  Sponsor:|
--+--
 https://github.com/mozilla-mobile/android-
 
components/blob/v44.0.1/components/browser/icons/src/main/java/mozilla/components/browser/icons/BrowserIcons.kt#L89

 And what's `DataUriIconLoader`?

 Coming from https://github.com/mozilla-mobile/android-
 
components/blob/v44.0.1/components/feature/webnotifications/src/main/java/mozilla/components/feature/webnotifications/NativeNotificationBridge.kt#L68

--
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] #34438 [Applications/Tor Browser]: Make sure TabCollections don't write in PBM on Android

2020-06-11 Thread Tor Bug Tracker & Wiki
#34438: Make sure TabCollections don't write in PBM on Android
--+--
 Reporter:  sysrqb|  Owner:  tbb-team
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal|   Keywords:
Actual Points:|  Parent ID:  #33661
   Points:|   Reviewer:
  Sponsor:|
--+--
 https://github.com/mozilla-mobile/android-
 components/blob/v44.0.1/components/feature/tab-
 
collections/src/main/java/mozilla/components/feature/tab/collections/TabCollectionStorage.kt#L70

--
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] #22657 [Community/Outreach]: Managing Youtube Account

2020-06-11 Thread Tor Bug Tracker & Wiki
#22657: Managing Youtube Account
+
 Reporter:  mrphs   |  Owner:  mrphs
 Type:  defect  | Status:  closed
 Priority:  Medium  |  Milestone:
Component:  Community/Outreach  |Version:
 Severity:  Normal  | Resolution:  fixed
 Keywords:  |  Actual Points:
Parent ID:  | Points:
 Reviewer:  |Sponsor:
+
Changes (by ggus):

 * status:  reopened => 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] #32893 [Community/Training]: Automating the remote training cycle

2020-06-11 Thread Tor Bug Tracker & Wiki
#32893: Automating the remote training cycle
+
 Reporter:  ggus|  Owner:  ggus
 Type:  defect  | Status:  closed
 Priority:  Medium  |  Milestone:
Component:  Community/Training  |Version:
 Severity:  Normal  | Resolution:  fixed
 Keywords:  |  Actual Points:
Parent ID:  | Points:
 Reviewer:  |Sponsor:
+
Changes (by ggus):

 * status:  assigned => 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] #33835 [Circumvention/BridgeDB]: Gmail's quoted response confuses BridgeDB's email autoresponder

2020-06-11 Thread Tor Bug Tracker & Wiki
#33835: Gmail's quoted response confuses BridgeDB's email autoresponder
+---
 Reporter:  phw |  Owner:  agix
 Type:  defect  | Status:  merge_ready
 Priority:  Medium  |  Milestone:
Component:  Circumvention/BridgeDB  |Version:
 Severity:  Normal  | Resolution:
 Keywords:  s30-o22a2   |  Actual Points:
Parent ID:  #31279  | Points:  1
 Reviewer:  |Sponsor:  Sponsor30-can
+---
Changes (by agix):

 * status:  needs_information => merge_ready


--
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] #34436 [Internal Services/Tor Sysadmin Team]: document the static mirror network and onionbalance system better

2020-06-11 Thread Tor Bug Tracker & Wiki
#34436: document the static mirror network and onionbalance system better
-+-
 Reporter:  anarcat  |  Owner:  anarcat
 Type:  task | Status:
 |  assigned
 Priority:  High |  Milestone:
Component:  Internal Services/Tor Sysadmin Team  |Version:
 Severity:  Minor| Resolution:
 Keywords:  tpa-roadmap-june |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-

Comment (by anarcat):

 other documentation sources:

 {{{
 17:58:36  there's also [git|master]
 weasel@orinoco:~/projects/debian/d-a/dsa-wiki/git$ find |grep -i stati
 17:58:36  ./input/howto/static-mirroring.creole
 17:58:55  and dsa-puppet/./modules/roles/README.static-
 mirroring.txt
 17:59:20  also ./modules/staticsync/files/OVERVIEW
 }}}

 and weasel's brain, naturally. :)

--
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] #29269 [Circumvention]: Evaluation of bridge statistics

2020-06-11 Thread Tor Bug Tracker & Wiki
#29269: Evaluation of bridge statistics
---+--
 Reporter:  cohosh |  Owner:  phw
 Type:  task   | Status:  assigned
 Priority:  Medium |  Milestone:
Component:  Circumvention  |Version:
 Severity:  Normal | Resolution:
 Keywords:  statistics, ex-sponsor-19  |  Actual Points:
Parent ID: | Points:
 Reviewer: |Sponsor:
---+--
Changes (by phw):

 * component:  Circumvention/BridgeDB => Circumvention


Comment:

 Removing the "BridgeDB" component because this has nothing to do with
 BridgeDB.

--
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] #34399 [Applications/Tor Browser]: Electrum-NMC can't make outgoing connections on Python 3.8+

2020-06-11 Thread Tor Bug Tracker & Wiki
#34399: Electrum-NMC can't make outgoing connections on Python 3.8+
--+--
 Reporter:  JeremyRand|  Owner:  tbb-team
 Type:  defect| Status:  needs_review
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal| Resolution:
 Keywords:  namecoin  |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+--
Changes (by JeremyRand):

 * status:  new => needs_review


Comment:

 Had to rebase the patch to make testing easier on my end; current Git
 commit hash is `2efbd8cbc0d69447f3047c151921aabc19f5682b` (still at
 https://notabug.org/JeremyRand/tor-browser-build/src/namecoin-3.3.11 ).
 Works fine in my testing on Python 3.7.x, and yanmaani reports that
 applying the Electrum-NMC patch manually to his Tor Browser Nightly fixed
 things on Python 3.8.x.  So I think this is ready for review.

 This bug (and #33752 , which is also fixed by this patch) are blocking
 some testers from trying out the Namecoin support in Nightly, so it would
 be great if it can be reviewed and merged relatively quickly.  (But, as
 usual, I know this experiment is not the highest priority for you, so I
 won't be annoyed if it takes time.)

 Thanks to Cyberia Computer Club for donating server resources that made it
 easier to test this patch.

--
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] #33886 [Circumvention/BridgeDB]: brid...@torproject.org Don't respond to gmail

2020-06-11 Thread Tor Bug Tracker & Wiki
#33886: brid...@torproject.org Don't respond to gmail
+---
 Reporter:  mh828   |  Owner:  phw
 Type:  defect  | Status:  closed
 Priority:  Medium  |  Milestone:
Component:  Circumvention/BridgeDB  |Version:
 Severity:  Normal  | Resolution:  duplicate
 Keywords:  bridgedb-reportbug  |  Actual Points:
Parent ID:  | Points:
 Reviewer:  |Sponsor:
+---
Changes (by phw):

 * status:  assigned => closed
 * resolution:   => duplicate


Comment:

 We fixed this issue over at #33945. The autoresponder has been working
 ever since we deployed the fix.

--
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] #34437 [Internal Services/Tor Sysadmin Team]: migrate help.tpo into a gitlab wiki

2020-06-11 Thread Tor Bug Tracker & Wiki
#34437: migrate help.tpo into a gitlab wiki
-+-
 Reporter:  anarcat  |  Owner:  anarcat
 Type:  task | Status:
 |  assigned
 Priority:  Low  |  Milestone:
Component:  Internal Services/Tor Sysadmin Team  |Version:
 Severity:  Minor| Resolution:
 Keywords:  tpa-roadmap-june |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by anarcat):

 * owner:  qbi => anarcat
 * status:  new => assigned
 * component:  Internal Services/Service - trac => Internal Services/Tor
 Sysadmin Team


Comment:

 i definitely did not mean to assign that to qbi :)

--
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] #34437 [Internal Services/Service - trac]: migrate help.tpo into a gitlab wiki

2020-06-11 Thread Tor Bug Tracker & Wiki
#34437: migrate help.tpo into a gitlab wiki
--+-
 Reporter:  anarcat   |  Owner:  qbi
 Type:  task  | Status:  new
 Priority:  Low   |  Milestone:
Component:  Internal Services/Service - trac  |Version:
 Severity:  Minor | Resolution:
 Keywords:  tpa-roadmap-june  |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+-

Comment (by anarcat):

 this was made part of a larger TPA-RFC-5:

 https://help.torproject.org/tsa/policy/tpa-rfc-5-gitlab/

--
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] #31282 [UX]: O3.1 - Research different scenarios of how human rights defenders experience censorship.

2020-06-11 Thread Tor Bug Tracker & Wiki
#31282: O3.1 - Research different scenarios of how human rights defenders
experience censorship.
-+
 Reporter:  gaba |  Owner:  antonela
 Type:  project  | Status:  new
 Priority:  Medium   |  Milestone:
Component:  UX   |Version:
 Severity:  Normal   | Resolution:
 Keywords:   |  Actual Points:
Parent ID:  #31269   | Points:
 Reviewer:   |Sponsor:  Sponsor30-must
-+

Comment (by phw):

 Thanks for this, antonela. Your scenarios should cover the majority of
 censorship scenarios that Tor users experience. All three scenarios
 however can result in the same kind of censorship, so from Alice's point
 of view it makes little difference if she's subject to on-device or to
 ISP-based blocking because the effect is the same. All three scenarios can
 result in the following:

 1. The domain torproject.org is blocked (user must use GetTor to get Tor
 Browser)
 2. Directory authorities are blocked (user must use bridges)
 3. Default bridges are blocked (user must use non-default bridges)
 4. Vanilla Tor is blocked by protocol (user must use obfs4 or snowflake)
 5. bridges.torproject.org is blocked (user must use moat)
 6. Google's STUN server is blocked (user must use something other than
 snowflake)

 All that said, here are two more scenarios, for the sake of completeness:

 * Self-censorship: fear of consequences may prevent users from learning
 about or using Tor Browser.
 * Throttling: In theory, an adversary could throttle (but not block) Tor
 traffic, in an attempt to discourage people from using 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] #34065 [Core Tor/Tor]: Make routerset_contains_router() support IPv6

2020-06-11 Thread Tor Bug Tracker & Wiki
#34065: Make routerset_contains_router() support IPv6
+
 Reporter:  teor|  Owner:  neel
 Type:  enhancement | Status:  needs_review
 Priority:  Medium  |  Milestone:  Tor: 0.4.4.x-final
Component:  Core Tor/Tor|Version:
 Severity:  Normal  | Resolution:
 Keywords:  ipv6, prop311, 044-can  |  Actual Points:
Parent ID:  #33221  | Points:  0.5
 Reviewer:  |Sponsor:  Sponsor55-can
+
Changes (by neel):

 * 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] #34065 [Core Tor/Tor]: Make routerset_contains_router() support IPv6

2020-06-11 Thread Tor Bug Tracker & Wiki
#34065: Make routerset_contains_router() support IPv6
+
 Reporter:  teor|  Owner:  neel
 Type:  enhancement | Status:  needs_revision
 Priority:  Medium  |  Milestone:  Tor: 0.4.4.x-final
Component:  Core Tor/Tor|Version:
 Severity:  Normal  | Resolution:
 Keywords:  ipv6, prop311, 044-can  |  Actual Points:
Parent ID:  #33221  | Points:  0.5
 Reviewer:  |Sponsor:  Sponsor55-can
+
Changes (by neel):

 * status:  assigned => needs_revision


--
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] #32040 [Core Tor/Tor]: HS intro padding machine reactivates after receiving INTRODUCE_ACK

2020-06-11 Thread Tor Bug Tracker & Wiki
#32040: HS intro padding machine reactivates after receiving INTRODUCE_ACK
-+-
 Reporter:  asn  |  Owner:  asn
 Type:  defect   | Status:
 |  needs_revision
 Priority:  Medium   |  Milestone:  Tor:
 |  0.4.4.x-final
Component:  Core Tor/Tor |Version:
 Severity:  Normal   | Resolution:
 Keywords:  wtf-pad, padding, circpad-   |  Actual Points:
  researchers-want, 043-deferred |
Parent ID:   | Points:  1
 Reviewer:   |Sponsor:
 |  Sponsor2
-+-

Comment (by mikeperry):

 Ah, I forgot I added C_INTRODUCING to the keep_purpose_mask based on this
 bug.

 Am I correct in believing that we should add C_INTRODUCING to
 keep_purpose_mask so that we don't shut down the machines if we fall back
 to that purpose, based on the loglines in the description? Or do we need
 to add other/more purposes to keep_purpose_mask here? Or none?

--
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] #34437 [Internal Services/Service - trac]: migrate help.tpo into a gitlab wiki

2020-06-11 Thread Tor Bug Tracker & Wiki
#34437: migrate help.tpo into a gitlab wiki
--+-
 Reporter:  anarcat   |  Owner:  qbi
 Type:  task  | Status:  new
 Priority:  Low   |  Milestone:
Component:  Internal Services/Service - trac  |Version:
 Severity:  Minor | Resolution:
 Keywords:  tpa-roadmap-june  |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+-
Description changed by anarcat:

Old description:

> we are currently using ikiwiki to host our documentation. that has served
> us well so far: it's available as a static site in the static mirror
> system and allows all sysadmins to have a static, offsite copy of the
> documentation when everything is down.
>
> but ikiwiki is showing its age. it's an old program written in Perl,
> difficult to theme and not very welcoming to new users. for example, it's
> impossible for a user unfamiliar with git to contribute to the
> documentation.
>
> gitlab wikis, in contrast, have a web interface to edit pages. it doesn't
> have the macros ikiwiki has, but that's nothing a few commandline hacks
> can't fix... or at least we should consider it.
>
> this is not blocking the trac to gitlab migration, but it would be nice
> to jump onboard with everyone, since we will be migrating the Trac wiki
> onto gitlab as well...

New description:

 we are currently using ikiwiki to host our documentation. that has served
 us well so far: it's available as a static site in the static mirror
 system and allows all sysadmins to have a static, offsite copy of the
 documentation when everything is down.

 but ikiwiki is showing its age. it's an old program written in Perl,
 difficult to theme and not very welcoming to new users. for example, it's
 impossible for a user unfamiliar with git to contribute to the
 documentation. it also has its own unique Markdown dialect that is not
 used anywhere else. and while Markdown itself is not standardized and has
 lots of such dialects, there is /some/ convergence around CommonMark and
 GFM (GitHub's markdown) as de-facto standards at least, which ikiwiki
 still has to catchup with. it also has powerful macros which are nice to
 make complex websites, but do not render in the offline documentation,
 making us dependent on the rendered copy (as opposed to setting up client-
 side tools to peruse the documentation).

 gitlab wikis, in contrast, have a web interface to edit pages. it doesn't
 have the macros ikiwiki has, but that's nothing a few commandline hacks
 can't fix... or at least we should consider it. they don't have macros or
 any more powerful features that ikiwiki has, but maybe that's exactly what
 we want.

 this is not blocking the trac to gitlab migration, but it would be nice to
 jump onboard with everyone, since we will be migrating the Trac wiki onto
 gitlab as well...

--

--
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] #34437 [Internal Services/Service - trac]: migrate help.tpo into a gitlab wiki

2020-06-11 Thread Tor Bug Tracker & Wiki
#34437: migrate help.tpo into a gitlab wiki
--+-
 Reporter:  anarcat   |  Owner:  qbi
 Type:  task  | Status:  new
 Priority:  Low   |  Milestone:
Component:  Internal Services/Service - trac  |Version:
 Severity:  Minor | Resolution:
 Keywords:  tpa-roadmap-june  |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+-
Changes (by anarcat):

 * keywords:   => tpa-roadmap-june


--
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] #34437 [Internal Services/Service - trac]: migrate help.tpo into a gitlab wiki

2020-06-11 Thread Tor Bug Tracker & Wiki
#34437: migrate help.tpo into a gitlab wiki
--+-
 Reporter:  anarcat   |  Owner:  qbi
 Type:  task  | Status:  new
 Priority:  Low   |  Milestone:
Component:  Internal Services/Service - trac  |Version:
 Severity:  Minor | Resolution:
 Keywords:|  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+-

Comment (by anarcat):

 Here are the ikiwik macros in use in the wiki:

 {{{
 $ git grep -h '\[\[!' | sed 's/ .*//' | sort | uniq -c | sort -n
   1 [[!toc]]
  10 [[!map
  24 [[!meta
  45 [[!toc
 }}}

  * `[[!toc` can be converted to `[[_TOC_]]`. this is a non-standard "GFM"
 (GitHub Formatted Markdown) extension
  * `[[!meta` should be converted to a
 [https://gitlab.com/help/user/markdown#front-matter front matter] block,
 since it's all titles (the meta directive supports other uses but we don't
 use those). this is a non-standard "GFM" extension
  * `[[!map` has no good equivalent in markdown, but could be replaced by
 the page listings built into the gitlab wiki, on the right column

 I will also note that `[[links|like this]]` would need to be converted as
 well. those are tricky because they need to take into account context of
 the refering page. we have about 184 such links to cover.

 I have written code to convert from ikiwiki's peculiar dialect into a more
 standard (in my case Hugo's) Markdown dialect here:

 https://gitlab.com/anarcat/scripts/-/blob/master/ikiwiki2hugo.py

 that code can probably be reused here, although it only handles the "meta"
 case for now.

 this sounds like a lot of work, but I will note that the longer we wait to
 make this transition, the harder this will be to do correctly, so the
 sooner the better.

--
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] #34065 [Core Tor/Tor]: Make routerset_contains_router() support IPv6

2020-06-11 Thread Tor Bug Tracker & Wiki
#34065: Make routerset_contains_router() support IPv6
+
 Reporter:  teor|  Owner:  neel
 Type:  enhancement | Status:  assigned
 Priority:  Medium  |  Milestone:  Tor: 0.4.4.x-final
Component:  Core Tor/Tor|Version:
 Severity:  Normal  | Resolution:
 Keywords:  ipv6, prop311, 044-can  |  Actual Points:
Parent ID:  #33221  | Points:  0.5
 Reviewer:  |Sponsor:  Sponsor55-can
+
Changes (by neel):

 * type:  defect => enhancement


Comment:

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

 I think this is an "enhancement", but if it is a "defect" change it back.

--
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] #34437 [Internal Services/Service - trac]: migrate help.tpo into a gitlab wiki

2020-06-11 Thread Tor Bug Tracker & Wiki
#34437: migrate help.tpo into a gitlab wiki
--+-
 Reporter:  anarcat   |  Owner:  qbi
 Type:  task  | Status:  new
 Priority:  Low   |  Milestone:
Component:  Internal Services/Service - trac  |Version:
 Severity:  Minor |   Keywords:
Actual Points:|  Parent ID:
   Points:|   Reviewer:
  Sponsor:|
--+-
 we are currently using ikiwiki to host our documentation. that has served
 us well so far: it's available as a static site in the static mirror
 system and allows all sysadmins to have a static, offsite copy of the
 documentation when everything is down.

 but ikiwiki is showing its age. it's an old program written in Perl,
 difficult to theme and not very welcoming to new users. for example, it's
 impossible for a user unfamiliar with git to contribute to the
 documentation.

 gitlab wikis, in contrast, have a web interface to edit pages. it doesn't
 have the macros ikiwiki has, but that's nothing a few commandline hacks
 can't fix... or at least we should consider it.

 this is not blocking the trac to gitlab migration, but it would be nice to
 jump onboard with everyone, since we will be migrating the Trac wiki onto
 gitlab as well...

--
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] #34436 [Internal Services/Tor Sysadmin Team]: document the static mirror network and onionbalance system better

2020-06-11 Thread Tor Bug Tracker & Wiki
#34436: document the static mirror network and onionbalance system better
-+-
 Reporter:  anarcat  |  Owner:  anarcat
 Type:  task | Status:  assigned
 Priority:  High |  Milestone:
Component:  Internal Services/Tor Sysadmin   |Version:
  Team   |   Keywords:  tpa-
 Severity:  Minor|  roadmap-june
Actual Points:   |  Parent ID:
   Points:   |   Reviewer:
  Sponsor:   |
-+-
 we have some documentation on the static mirroring system here:

 https://help.torproject.org/tsa/howto/static-component/

 it's mostly procedural and minimal: add a component, remove a component
 and that's it. it doesn't explain at all how the system works, how to
 create or remove a new node in the network, how onion services interact
 with it, and how it actually works in puppet.

 all this should be better documented. for example, I should be able to
 resolve #34396 without asking weasel. :)

--
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] #34065 [Core Tor/Tor]: Make routerset_contains_router() support IPv6

2020-06-11 Thread Tor Bug Tracker & Wiki
#34065: Make routerset_contains_router() support IPv6
+
 Reporter:  teor|  Owner:  neel
 Type:  defect  | Status:  assigned
 Priority:  Medium  |  Milestone:  Tor: 0.4.4.x-final
Component:  Core Tor/Tor|Version:
 Severity:  Normal  | Resolution:
 Keywords:  ipv6, prop311, 044-can  |  Actual Points:
Parent ID:  #33221  | Points:  0.5
 Reviewer:  |Sponsor:  Sponsor55-can
+
Changes (by neel):

 * status:  new => assigned
 * 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] #34065 [Core Tor/Tor]: Make routerset_contains_router() support IPv6

2020-06-11 Thread Tor Bug Tracker & Wiki
#34065: Make routerset_contains_router() support IPv6
+
 Reporter:  teor|  Owner:  neel
 Type:  defect  | Status:  assigned
 Priority:  Medium  |  Milestone:  Tor: 0.4.4.x-final
Component:  Core Tor/Tor|Version:
 Severity:  Normal  | Resolution:
 Keywords:  ipv6, prop311, 044-can  |  Actual Points:
Parent ID:  #33221  | Points:  0.5
 Reviewer:  |Sponsor:  Sponsor55-can
+
Changes (by neel):

 * cc: neel (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] #34250 [Applications/Tor Browser]: Fix torbutton noscript-control race condition

2020-06-11 Thread Tor Bug Tracker & Wiki
#34250: Fix torbutton noscript-control race condition
--+
 Reporter:  acat  |  Owner:  acat
 Type:  defect| Status:  closed
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal| Resolution:  fixed
 Keywords:  TorBrowserTeam202006R |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+
Changes (by gk):

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


Comment:

 It seems we missed that for 10.0a1. :( I've cherry-picked your patch to
 `master` now (commit `21e6fbd52a4b38150a56fb64475e4fd80352b92f`) so it can
 make it into 10.0a2 instead.

--
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] #34396 [Internal Services/Tor Sysadmin Team]: Remove or clarify atlas on onion.torproject.org

2020-06-11 Thread Tor Bug Tracker & Wiki
#34396: Remove or clarify atlas on onion.torproject.org
-+-
 Reporter:  c|  Owner:  weasel
 Type:  defect   | Status:
 |  assigned
 Priority:  Medium   |  Milestone:
Component:  Internal Services/Tor Sysadmin Team  |Version:
 Severity:  Normal   | Resolution:
 Keywords:   |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by anarcat):

 * owner:  anarcat => weasel


Comment:

 i'm kind of stumped by this one. i would have expected the .onion service
 to either disappear or be updated to point at a new address, but instead
 it obstinately stays there, invalid as ever.

 i tried to restore the service with commits b7996501 and 805e3271 in
 puppet, to no avail.

 i'll ask around.

--
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] #34361 [Applications/Tor Browser]: "Prioritize .onion sites when known" appears under General

2020-06-11 Thread Tor Bug Tracker & Wiki
#34361: "Prioritize .onion sites when known" appears under General
-+-
 Reporter:  sysrqb   |  Owner:  tbb-
 |  team
 Type:  defect   | Status:  closed
 Priority:  Medium   |  Milestone:
Component:  Applications/Tor Browser |Version:
 Severity:  Normal   | Resolution:  fixed
 Keywords:   |  Actual Points:
  tbb-9.5-issues,TorBrowserTeam202006R   |
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by gk):

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


Comment:

 Cherry-picked to `tor-browser-68.9.0esr-9.5-1` (commit
 `da4458c8d39845e56d70051c61f49b7d50b0c2da`) and `tor-
 browser-68.9.0esr-10.0-1` (e170c676b8b30f92c7279e8a817ebe8ca4cb2f09).

--
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] #697 [Core Tor/Tor]: Wrong DNS configuration could break navigation

2020-06-11 Thread Tor Bug Tracker & Wiki
#697: Wrong DNS configuration could break navigation
-+-
 Reporter:  amis |  Owner:  (none)
 Type:  defect   | Status:  closed
 Priority:  Low  |  Milestone:  Tor:
 |  unspecified
Component:  Core Tor/Tor |Version:  0.2.0.25-rc
 Severity:  Normal   | Resolution:  wontfix
 Keywords:  dns tor-relay design-needed  |  Actual Points:
Parent ID:   | Points:  5
 Reviewer:   |Sponsor:
-+-
Changes (by nickm):

 * status:  new => closed
 * resolution:  None => wontfix


Comment:

 We've gotten some of this handled through relay education and badexits,
 and we still check for DNS hijacking.  Those are probably the way to go
 for future developments 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] #1075 [Core Tor/Tor]: reachability controller status events too liberal

2020-06-11 Thread Tor Bug Tracker & Wiki
#1075: reachability controller status events too liberal
-+-
 Reporter:  arma |  Owner:  (none)
 Type:  defect   | Status:  closed
 Priority:  Low  |  Milestone:  Tor:
 |  unspecified
Component:  Core Tor/Tor |Version:
 |  0.2.1.19
 Severity:  Normal   | Resolution:  invalid
 Keywords:  tor-relay, bootstrap, usability, |  Actual Points:
  tor-controller, sponsor8-maybe |
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by nickm):

 * status:  new => closed
 * resolution:  None => invalid


Comment:

 We've significantly revamped bootstrap reporting since this ticket was a
 thing.

--
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] #1099 [Core Tor/Tor]: Spurious bootstrap warnings if no-route-to-host

2020-06-11 Thread Tor Bug Tracker & Wiki
#1099: Spurious bootstrap warnings if no-route-to-host
-+-
 Reporter:  arma |  Owner:  (none)
 Type:  defect   | Status:  closed
 Priority:  Low  |  Milestone:  Tor:
 |  unspecified
Component:  Core Tor/Tor |Version:
 |  0.2.1.19
 Severity:  Normal   | Resolution:  invalid
 Keywords:  tor-client, bootstrap, usability,|  Actual Points:
  sponsor8-maybe |
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by nickm):

 * status:  new => closed
 * resolution:  None => invalid


Comment:

 We've significantly revamped our bootstrap reporting since this ticket was
 a thing.

--
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] #4580 [Core Tor/Tor]: Some Tor clients go nuts requesting the consensus if there is no recent enough consensus

2020-06-11 Thread Tor Bug Tracker & Wiki
#4580: Some Tor clients go nuts requesting the consensus if there is no recent
enough consensus
-+-
 Reporter:  arma |  Owner:  (none)
 Type:  defect   | Status:  closed
 Priority:  High |  Milestone:  Tor:
 |  unspecified
Component:  Core Tor/Tor |Version:  Tor:
 |  unspecified
 Severity:  Major| Resolution:
 Keywords:  tor-client, tor-dos zombies  |  worksforme
  deprecation|  Actual Points:
Parent ID:   | Points:  4.5
 Reviewer:   |Sponsor:
-+-
Changes (by nickm):

 * status:  new => closed
 * resolution:   => worksforme


--
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] #4580 [Core Tor/Tor]: Some Tor clients go nuts requesting the consensus if there is no recent enough consensus

2020-06-11 Thread Tor Bug Tracker & Wiki
#4580: Some Tor clients go nuts requesting the consensus if there is no recent
enough consensus
-+-
 Reporter:  arma |  Owner:  (none)
 Type:  defect   | Status:  new
 Priority:  High |  Milestone:  Tor:
 |  unspecified
Component:  Core Tor/Tor |Version:  Tor:
 |  unspecified
 Severity:  Major| Resolution:
 Keywords:  tor-client, tor-dos zombies  |  Actual Points:
  deprecation|
Parent ID:   | Points:  4.5
 Reviewer:   |Sponsor:
-+-

Comment (by nickm):

 No reports of this or problems from it in 7 years.

--
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] #4816 [Core Tor/Tor]: Request: add count to "[warn] Your computer is too slow..."

2020-06-11 Thread Tor Bug Tracker & Wiki
#4816: Request: add count to "[warn] Your computer is too slow..."
+--
 Reporter:  tmpname0901 |  Owner:  (none)
 Type:  enhancement | Status:  closed
 Priority:  Low |  Milestone:  Tor: unspecified
Component:  Core Tor/Tor|Version:
 Severity:  Minor   | Resolution:  implemented
 Keywords:  tor-relay easy logging  |  Actual Points:
Parent ID:  | Points:
 Reviewer:  |Sponsor:
+--
Changes (by nickm):

 * status:  new => closed
 * resolution:   => implemented


--
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] #4816 [Core Tor/Tor]: Request: add count to "[warn] Your computer is too slow..."

2020-06-11 Thread Tor Bug Tracker & Wiki
#4816: Request: add count to "[warn] Your computer is too slow..."
+--
 Reporter:  tmpname0901 |  Owner:  (none)
 Type:  enhancement | Status:  new
 Priority:  Low |  Milestone:  Tor: unspecified
Component:  Core Tor/Tor|Version:
 Severity:  Minor   | Resolution:
 Keywords:  tor-relay easy logging  |  Actual Points:
Parent ID:  | Points:
 Reviewer:  |Sponsor:
+--

Comment (by nickm):

 (This message has been rate-limited since 0.2.2.16.)

--
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] #34361 [Applications/Tor Browser]: "Prioritize .onion sites when known" appears under General

2020-06-11 Thread Tor Bug Tracker & Wiki
#34361: "Prioritize .onion sites when known" appears under General
-+-
 Reporter:  sysrqb   |  Owner:  tbb-
 |  team
 Type:  defect   | Status:
 |  merge_ready
 Priority:  Medium   |  Milestone:
Component:  Applications/Tor Browser |Version:
 Severity:  Normal   | Resolution:
 Keywords:   |  Actual Points:
  tbb-9.5-issues,TorBrowserTeam202006R   |
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by acat):

 * status:  needs_review => merge_ready


Comment:

 Looks good to me, 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


[tor-bugs] #34435 [Circumvention/Snowflake]: Update bug-reporting links for gitlab

2020-06-11 Thread Tor Bug Tracker & Wiki
#34435: Update bug-reporting links for gitlab
-+
 Reporter:  dcf  |  Owner:  (none)
 Type:  defect   | Status:  new
 Priority:  Medium   |  Milestone:
Component:  Circumvention/Snowflake  |Version:
 Severity:  Minor|   Keywords:
Actual Points:   |  Parent ID:
   Points:   |   Reviewer:
  Sponsor:   |
-+
 After the [https://lists.torproject.org/pipermail/tor-
 project/2020-June/002866.html gitlab migration] we need to update bug-
 reporting instructions.

  * https://snowflake.torproject.org/#bugs\\
https://gitweb.torproject.org/pluggable-transports/snowflake-
 
webext.git/tree/static/index.html?h=webext-0.3.1=d2a9a8fd136ac6bbba393de3d51fb7ca85e17b8a#n75

 I checked in snowflake.git and did not find anything that needs to be
 changed.

--
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] #33816 [Core Tor/Tor]: Fill in missing IPv6 addresses in extend cells

2020-06-11 Thread Tor Bug Tracker & Wiki
#33816: Fill in missing IPv6 addresses in extend cells
-+-
 Reporter:  teor |  Owner:  neel
 Type:  task | Status:
 |  needs_review
 Priority:  Medium   |  Milestone:  Tor:
 |  0.4.5.x-final
Component:  Core Tor/Tor |Version:
 Severity:  Normal   | Resolution:
 Keywords:  ipv6, prop311, outreachy-ipv6,   |  Actual Points:
  044-deferred   |
Parent ID:  #33220   | Points:  1
 Reviewer:   |Sponsor:
 |  Sponsor55-can
-+-
Changes (by nickm):

 * milestone:  Tor: unspecified => Tor: 0.4.5.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] #33848 [Applications/Tor Browser]: Disable Enhanced Tracking Protection (assuming we want it disabled)

2020-06-11 Thread Tor Bug Tracker & Wiki
#33848: Disable Enhanced Tracking Protection (assuming we want it disabled)
--+--
 Reporter:  pospeselr |  Owner:  mcs
 Type:  defect| Status:  needs_review
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal| Resolution:
 Keywords:  TorBrowserTeam202006R |  Actual Points:
Parent ID:  #33534| Points:
 Reviewer:|Sponsor:  Sponsor58
--+--

Comment (by acat):

 Looks good, but there's a small conflict with the new `about:pioneer` (I
 guess we'll have to take a look that one too, in another ticket).

--
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] #33816 [Core Tor/Tor]: Fill in missing IPv6 addresses in extend cells

2020-06-11 Thread Tor Bug Tracker & Wiki
#33816: Fill in missing IPv6 addresses in extend cells
-+-
 Reporter:  teor |  Owner:  neel
 Type:  task | Status:
 |  needs_review
 Priority:  Medium   |  Milestone:  Tor:
 |  unspecified
Component:  Core Tor/Tor |Version:
 Severity:  Normal   | Resolution:
 Keywords:  ipv6, prop311, outreachy-ipv6,   |  Actual Points:
  044-deferred   |
Parent ID:  #33220   | Points:  1
 Reviewer:   |Sponsor:
 |  Sponsor55-can
-+-
Changes (by neel):

 * status:  assigned => needs_review


Comment:

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

--
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] #33768 [Core Tor/Tor]: Make tor_inet_pton() handle bad addresses consistently on Windows

2020-06-11 Thread Tor Bug Tracker & Wiki
#33768: Make tor_inet_pton() handle bad addresses consistently on Windows
-+-
 Reporter:  teor |  Owner:  dgoulet
 Type:  defect   | Status:
 |  assigned
 Priority:  Medium   |  Milestone:  Tor:
 |  0.4.4.x-final
Component:  Core Tor/Tor |Version:
 Severity:  Normal   | Resolution:
 Keywords:  044-should, 035-backport,|  Actual Points:
  041-backport, 042-backport, 043-backport,  |
  outreachy-ipv6, ipv6, windows, postfreeze-ok   |
Parent ID:  #33049   | Points:  1
 Reviewer:   |Sponsor:
 |  Sponsor55-must
-+-
Changes (by nickm):

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


Comment:

 It's possible part of this is already done in the child ticket.

--
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] #33781 [Core Tor/Tor]: DocTor chokes on malformed dirreq-stats-end line

2020-06-11 Thread Tor Bug Tracker & Wiki
#33781: DocTor chokes on malformed dirreq-stats-end line
-+-
 Reporter:  gk   |  Owner:  ahf
 Type:  defect   | Status:
 |  assigned
 Priority:  Medium   |  Milestone:  Tor:
 |  0.4.4.x-final
Component:  Core Tor/Tor |Version:
 Severity:  Normal   | Resolution:
 Keywords:  044-should, dir-spec, torspec,   |  Actual Points:
  postfreeze-ok  |
Parent ID:   | Points:  1
 Reviewer:   |Sponsor:
-+-
Changes (by nickm):

 * status:  new => assigned
 * owner:  (none) => 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] #33669 [Core Tor/Tor]: "Pluggable Transport process terminated" but Tor keeps on going (and of course doesn't work)

2020-06-11 Thread Tor Bug Tracker & Wiki
#33669: "Pluggable Transport process terminated" but Tor keeps on going (and of
course doesn't work)
-+-
 Reporter:  arma |  Owner:  asn
 Type:  defect   | Status:
 |  assigned
 Priority:  Medium   |  Milestone:  Tor:
 |  0.4.4.x-final
Component:  Core Tor/Tor |Version:
 Severity:  Normal   | Resolution:
 Keywords:  ux-team, anticensorship-wants,   |  Actual Points:
  044-should, postfreeze-ok  |
Parent ID:  #19001   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by nickm):

 * 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] #33757 [Core Tor/Tor]: Fix log message when multiple tors try the same data directory

2020-06-11 Thread Tor Bug Tracker & Wiki
#33757: Fix log message when multiple tors try the same data directory
-+-
 Reporter:  teor |  Owner:  asn
 Type:  defect   | Status:
 |  assigned
 Priority:  Medium   |  Milestone:  Tor:
 |  0.4.4.x-final
Component:  Core Tor/Tor |Version:  Tor:
 |  0.4.2.7
 Severity:  Normal   | Resolution:
 Keywords:  044-should, 035-backport-maybe, 041  |  Actual Points:
  -backport-maybe, 042-backport, 043-backport,   |
  postfreeze-ok  |
Parent ID:   | Points:  1
 Reviewer:   |Sponsor:
-+-
Changes (by nickm):

 * 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] #34396 [Internal Services/Tor Sysadmin Team]: Remove or clarify atlas on onion.torproject.org

2020-06-11 Thread Tor Bug Tracker & Wiki
#34396: Remove or clarify atlas on onion.torproject.org
-+-
 Reporter:  c|  Owner:  anarcat
 Type:  defect   | Status:
 |  assigned
 Priority:  Medium   |  Milestone:
Component:  Internal Services/Tor Sysadmin Team  |Version:
 Severity:  Normal   | Resolution:
 Keywords:   |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by anarcat):

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


Comment:

 you are, of course, correct, sorry about that. i'm surprised to see the
 .onion service still announced, actually, i'll check it out.

--
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] #33747 [Core Tor/Tor]: If the ExtORPort doesn't report an external IP address, Tor won't apply rate limiting or account for bandwidth on that connection

2020-06-11 Thread Tor Bug Tracker & Wiki
#33747: If the ExtORPort doesn't report an external IP address, Tor won't apply
rate limiting or account for bandwidth on that connection
-+-
 Reporter:  arma |  Owner:  dgoulet
 Type:  defect   | Status:
 |  assigned
 Priority:  Medium   |  Milestone:  Tor:
 |  0.4.4.x-final
Component:  Core Tor/Tor |Version:
 Severity:  Normal   | Resolution:
 Keywords:  anticensorship-wants?, backport?,|  Actual Points:
  044-should, postfreeze-ok  |
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by nickm):

 * owner:  (none) => dgoulet
 * 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] #29128 [Core Tor/Tor]: Place complete obfs4 bridge line in accessible location

2020-06-11 Thread Tor Bug Tracker & Wiki
#29128: Place complete obfs4 bridge line in accessible location
-+-
 Reporter:  phoul|  Owner:  (none)
 Type:  enhancement  | Status:  new
 Priority:  Medium   |  Milestone:  Tor:
 |  0.4.5.x-final
Component:  Core Tor/Tor |Version:
 Severity:  Normal   | Resolution:
 Keywords:  tor-pt, tor-doc, |  Actual Points:
  040-deferred-20190220, network-team-roadmap-   |
  2020Q1, network-team-roadmap-2020Q2|
  anticensorship-wants 044-deferred  |
Parent ID:  #30471   | Points:
 Reviewer:   |Sponsor:
 |  Sponsor28-must
-+-
Changes (by nickm):

 * keywords:
 tor-pt, tor-doc, 040-deferred-20190220, network-team-roadmap-2020Q1,
 network-team-roadmap-2020Q2 anticensorship-wants 044-should?
 =>
 tor-pt, tor-doc, 040-deferred-20190220, network-team-roadmap-2020Q1,
 network-team-roadmap-2020Q2 anticensorship-wants 044-deferred
 * type:  defect => enhancement
 * milestone:  Tor: 0.4.4.x-final => Tor: 0.4.5.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] #33589 [Core Tor/Tor]: Copy Outreachy developer advice to the wiki or doc/HACKING

2020-06-11 Thread Tor Bug Tracker & Wiki
#33589: Copy Outreachy developer advice to the wiki or doc/HACKING
-+-
 Reporter:  teor |  Owner:  ahf
 Type:  task | Status:
 |  assigned
 Priority:  Medium   |  Milestone:  Tor:
 |  0.4.4.x-final
Component:  Core Tor/Tor |Version:
 Severity:  Normal   | Resolution:
 Keywords:  044-should, docshackathon,   |  Actual Points:
  postfreeze-ok  |
Parent ID:   | Points:  0.5
 Reviewer:   |Sponsor:
-+-
Changes (by nickm):

 * status:  new => assigned
 * owner:  (none) => 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] #31009 [Core Tor/Tor]: Tor lets transports advertise private IP addresses in descriptor

2020-06-11 Thread Tor Bug Tracker & Wiki
#31009: Tor lets transports advertise private IP addresses in descriptor
-+-
 Reporter:  phw  |  Owner:  (none)
 Type:  enhancement  | Status:  new
 Priority:  Medium   |  Milestone:  Tor:
 |  0.4.5.x-final
Component:  Core Tor/Tor |Version:
 Severity:  Normal   | Resolution:
 Keywords:  tor-pt, tor-bridge, 035-backport,|  Actual Points:
  040-backport, 041-backport,|
  042-deferred-20190918, network-team-roadmap-   |
  2020Q1, 043-should, anticensorship-wants,  |
  044-deferred   |
Parent ID:   | Points:  0.5
 Reviewer:   |Sponsor:
 |  Sponsor28-can
-+-
Changes (by nickm):

 * keywords:
 tor-pt, tor-bridge, 035-backport, 040-backport, 041-backport,
 042-deferred-20190918, network-team-roadmap-2020Q1, 043-should,
 anticensorship-wants, 044-should
 =>
 tor-pt, tor-bridge, 035-backport, 040-backport, 041-backport,
 042-deferred-20190918, network-team-roadmap-2020Q1, 043-should,
 anticensorship-wants, 044-deferred
 * type:  defect => enhancement
 * milestone:  Tor: 0.4.4.x-final => Tor: 0.4.5.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] #33411 [Core Tor/Tor]: Make DirCache default to 0 on Windows relays, if we can't fix the mmap issues

2020-06-11 Thread Tor Bug Tracker & Wiki
#33411: Make DirCache default to 0 on Windows relays, if we can't fix the mmap
issues
-+-
 Reporter:  teor |  Owner:  ahf
 Type:  defect   | Status:
 |  assigned
 Priority:  Medium   |  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, postfreeze-ok   |
Parent ID:  #24857   | Points:  0.2
 Reviewer:   |Sponsor:
-+-
Changes (by nickm):

 * 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] #16016 [Core Tor/Tor]: extrainfo_insert(): Bug: No entry found in extrainfo map.

2020-06-11 Thread Tor Bug Tracker & Wiki
#16016: extrainfo_insert(): Bug: No entry found in extrainfo map.
-+-
 Reporter:  arma |  Owner:  nickm
 Type:  defect   | Status:
 |  accepted
 Priority:  Medium   |  Milestone:  Tor:
 |  0.4.4.x-final
Component:  Core Tor/Tor |Version:
 Severity:  Normal   | Resolution:
 Keywords:  044-should, tor-relay, extrainfo,|  Actual Points:
  warning, annoying, postfreeze-ok   |
Parent ID:   | Points:  1
 Reviewer:   |Sponsor:
-+-
Changes (by nickm):

 * status:  new => accepted
 * owner:  (none) => 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] #5304 [Core Tor/Tor]: Obfsproxy should respect OutboundBindAddress in torrc

2020-06-11 Thread Tor Bug Tracker & Wiki
#5304: Obfsproxy should respect OutboundBindAddress in torrc
-+-
 Reporter:  korobkov |  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:  needs-spec-change, needs-tor-|  Actual Points:  1.25
  change, network-team-roadmap-2020Q1,   |
  043-should, network-team-roadmap-2020Q2,   |
  anticensorship-wants 044-should|
Parent ID:  #30471   | Points:  3
 Reviewer:  phw  |Sponsor:
 |  Sponsor28-must
-+-
Changes (by nickm):

 * keywords:
 needs-spec-change, needs-tor-change, network-team-roadmap-2020Q1,
 043-should, network-team-roadmap-2020Q2, anticensorship-wants,
 044-should
 =>
 needs-spec-change, needs-tor-change, network-team-roadmap-2020Q1,
 043-should, network-team-roadmap-2020Q2, anticensorship-wants
 044-should
 * status:  new => 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] #33237 [Core Tor/Tor]: Prop 312: 3.2.2. Stop Directory Authorities Resolving *Port Hostnames

2020-06-11 Thread Tor Bug Tracker & Wiki
#33237: Prop 312: 3.2.2. Stop Directory Authorities Resolving *Port Hostnames
+--
 Reporter:  teor|  Owner:  (none)
 Type:  defect  | Status:  new
 Priority:  Medium  |  Milestone:  Tor:
|  0.4.5.x-final
Component:  Core Tor/Tor|Version:
 Severity:  Normal  | Resolution:
 Keywords:  prop312, tor-dirauth, security-low  |  Actual Points:
Parent ID:  #33049  | Points:  1
 Reviewer:  |Sponsor:
|  Sponsor55-must
+--
Changes (by nickm):

 * keywords:  prop312, tor-dirauth, security-low, 044-must => prop312, tor-
 dirauth, security-low
 * milestone:  Tor: 0.4.4.x-final => Tor: 0.4.5.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] #33629 [Core Tor/Tor]: Use stale bot to close old pull requests

2020-06-11 Thread Tor Bug Tracker & Wiki
#33629: Use stale bot to close old pull requests
-+-
 Reporter:  teor |  Owner:  ahf
 Type:  task | Status:
 |  assigned
 Priority:  Medium   |  Milestone:  Tor:
 |  0.4.4.x-final
Component:  Core Tor/Tor |Version:
 Severity:  Normal   | Resolution:
 Keywords:  tor-github, 044-should, postfreeze-  |  Actual Points:
  ok |
Parent ID:   | Points:  0.5
 Reviewer:   |Sponsor:
-+-
Changes (by nickm):

 * owner:  (none) => 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


[tor-bugs] [Tor Bug Tracker & Wiki] Batch modify: #34086, #34087

2020-06-11 Thread Tor Bug Tracker & Wiki
Batch modification to #34086, #34087 by nickm:


Action: reassign

--
Tickets 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] [Tor Bug Tracker & Wiki] Batch modify: #33352, #34084

2020-06-11 Thread Tor Bug Tracker & Wiki
Batch modification to #33352, #34084 by nickm:


Action: reassign

--
Tickets 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] [Tor Bug Tracker & Wiki] Batch modify: #32622, #32696, #33639, #33640, ...

2020-06-11 Thread Tor Bug Tracker & Wiki
Batch modification to #32622, #32696, #33639, #33640, #34249 by nickm:


Action: reassign

--
Tickets 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] #33998 [Applications/Tor Browser]: stop using XUL soon

2020-06-11 Thread Tor Bug Tracker & Wiki
#33998: stop using XUL  soon
-+-
 Reporter:  mcs  |  Owner:  mcs
 Type:  defect   | Status:
 |  needs_review
 Priority:  Medium   |  Milestone:
Component:  Applications/Tor Browser |Version:
 Severity:  Normal   | Resolution:
 Keywords:   |  Actual Points:
  ReleaseTrainMigration,ff78-esr,TorBrowserTeam202006R|
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-

Comment (by acat):

 It seems `` was not yet removed in 78, but it's good to stop using
 it in any case.

 Looks good, just one small nit: with the changes, the `torPreferences-
 advanced-textboxAllowedPorts` input does not fully expand until the end of
 the column as before, maybe now it needs `-moz-box-flex: 1;` 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] [Tor Bug Tracker & Wiki] Batch modify: #10416, #20647, #34139, #4310, ...

2020-06-11 Thread Tor Bug Tracker & Wiki
Batch modification to #10416, #20647, #34139, #4310, #5940, #24403, #26294, 
#27802, #29211, #29212, #29213, #29215, #29216, #29227, #29528, #30828, #31002, 
#31062, #31078, #31180, #31181, #31238, #31635, #31653, #31820, #31829, #31851, 
#31882, #31908, #31912, #31940, #32036, #32103, #32139, #32162, #32181, #32208, 
#32249, #32340, #32369, #32395, #32474, #32488, #32489, #32490, #32522, #32621, 
#32655, #32691, #32722, #32773, #32784, #32798, #32809, #32810, #32812, #32813, 
#32814, #32817, #32831, #32835, #32850, #32883, #32888, #33043, #33086, #33124, 
#33196, #33204, #33220, #33221, #33223, #33224, #33229, #33230, #33231, #33233, 
#33234, #33235, #33236, #33238, #33239, #33240, #33241, #33242, #33243, #33244, 
#33245, #33246, #33247, #33248, #33249, #33252, #33253, #33262, #33263, #33264, 
#33265, #33268, #33270, #33272, #33371, #33383, #33398, #33408, #33415, #33437, 
#33530, #33538, #33547, #33550, #33554, #33582, #33681, #33763, #33816, #33818, 
#33826, #33850, #33860, #33880, #33905, #3
 3978, #34064, #34068, #34082, #34083, #34088, #34137, #34232, #34357, #30990, 
#32059, #32859, #33741, #33742 by nickm:
milestone to Tor: unspecified

Comment:
Bulk-remove tickets from 0.4.4.  Add the 044-deferred label to them.

--
Tickets 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] #32776 [Core Tor/Tor]: Remove 0.2.9 from the jenkins builders

2020-06-11 Thread Tor Bug Tracker & Wiki
#32776: Remove 0.2.9 from the jenkins builders
-+-
 Reporter:  teor |  Owner:  (none)
 Type:  task | Status:  new
 Priority:  Medium   |  Milestone:  Tor:
 |  0.4.4.x-final
Component:  Core Tor/Tor |Version:
 Severity:  Normal   | Resolution:
 Keywords:  network-team-roadmap-2020Q1, |  Actual Points:
  044-can|
Parent ID:   | Points:  0.1
 Reviewer:   |Sponsor:
-+-
Changes (by nickm):

 * keywords:  network-team-roadmap-2020Q1, 043-can => network-team-roadmap-
 2020Q1, 044-can


--
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] #34275 [Circumvention/Snowflake]: Establishing connection with the client and finally check the connection.

2020-06-11 Thread Tor Bug Tracker & Wiki
#34275: Establishing connection with the client and finally check the 
connection.
-+
 Reporter:  HashikD  |  Owner:  (none)
 Type:  task | Status:  new
 Priority:  Medium   |  Milestone:
Component:  Circumvention/Snowflake  |Version:
 Severity:  Normal   | Resolution:
 Keywords:  snowflake-mobile |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+

Comment (by HashikD):

 By the end of **WebRTC** branch in [https://github.com/Hashik-Donthineni
 /Snowflake-Mobile GitHub Mirror], we can test the connection.

--
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] #34274 [Circumvention/Snowflake]: Sending answer SDP to the broker as a POST request.

2020-06-11 Thread Tor Bug Tracker & Wiki
#34274: Sending answer SDP to the broker as a POST request.
-+
 Reporter:  HashikD  |  Owner:  (none)
 Type:  task | Status:  new
 Priority:  Medium   |  Milestone:
Component:  Circumvention/Snowflake  |Version:
 Severity:  Normal   | Resolution:
 Keywords:  snowflake-mobile |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+

Comment (by HashikD):

 Network calls to send answer and establish connection

 Commit ID: 579050ffe2550d0d7c1a7c9bba0c1fb6c9d747ce

 [https://github.com/Hashik-Donthineni/Snowflake-Mobile GitHub Mirror]

 **Note**: **SendAnswer** function creates the answer.

--
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] #34272 [Circumvention/Snowflake]: Creating answer

2020-06-11 Thread Tor Bug Tracker & Wiki
#34272: Creating answer
-+
 Reporter:  HashikD  |  Owner:  (none)
 Type:  task | Status:  new
 Priority:  Medium   |  Milestone:
Component:  Circumvention/Snowflake  |Version:
 Severity:  Normal   | Resolution:
 Keywords:  snowflake-mobile |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+

Comment (by HashikD):

 Network calls to send answer and establish connection

 Commit ID: 579050ffe2550d0d7c1a7c9bba0c1fb6c9d747ce

 [https://github.com/Hashik-Donthineni/Snowflake-Mobile GitHub Mirror]

 **Note**: **CreateAnswer** function creates the answer.

--
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] #34272 [Circumvention/Snowflake]: Creating answer (was: Setting remote description offer and creating answer.)

2020-06-11 Thread Tor Bug Tracker & Wiki
#34272: Creating answer
-+
 Reporter:  HashikD  |  Owner:  (none)
 Type:  task | Status:  new
 Priority:  Medium   |  Milestone:
Component:  Circumvention/Snowflake  |Version:
 Severity:  Normal   | Resolution:
 Keywords:  snowflake-mobile |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+
Description changed by HashikD:

Old description:

> Setting the SDP that we got from the broker after formating as the remote
> SDP.

New description:

 Creating SDP Answer.

--

--
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] #32088 [Core Tor/Tor]: Proposal 310 - choose guards in sampled order

2020-06-11 Thread Tor Bug Tracker & Wiki
#32088: Proposal 310 - choose guards in sampled order
-+-
 Reporter:  Jaym |  Owner:  (none)
 Type:  enhancement  | Status:  closed
 Priority:  High |  Milestone:  Tor:
 |  0.4.4.x-final
Component:  Core Tor/Tor |Version:
 Severity:  Normal   | Resolution:  fixed
 Keywords:  tor-spec prop271 prop310 044-should  |  Actual Points:
Parent ID:   | Points:
 Reviewer:  nickm, asn   |Sponsor:
-+-

Comment (by nickm):

 (Also merged the spec patch)

--
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] #34354 [Circumvention/Snowflake]: SDP Serialization.

2020-06-11 Thread Tor Bug Tracker & Wiki
#34354: SDP Serialization.
-+
 Reporter:  HashikD  |  Owner:  (none)
 Type:  defect   | Status:  new
 Priority:  Medium   |  Milestone:
Component:  Circumvention/Snowflake  |Version:
 Severity:  Normal   | Resolution:
 Keywords:  snowflake-mobile |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+

Comment (by HashikD):

 Setting remote description and SDP serialization, deserialization

 Commit ID: 9c4333451d15f71f5fe8f0fbf38a91c234389598

 [https://github.com/Hashik-Donthineni/Snowflake-Mobile GitHub Mirror]

 **NOTE:** Both the child tickets can be closed with 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] #34270 [Circumvention/Snowflake]: Sending POST request in longpolling fashion to the broker.

2020-06-11 Thread Tor Bug Tracker & Wiki
#34270: Sending POST request in longpolling fashion to the broker.
-+
 Reporter:  HashikD  |  Owner:  (none)
 Type:  task | Status:  new
 Priority:  Medium   |  Milestone:
Component:  Circumvention/Snowflake  |Version:
 Severity:  Normal   | Resolution:
 Keywords:  snowflake-mobile |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+

Comment (by HashikD):

 Added 'fetch offer' to fetch offer from broker

 Commit ID: 78334a91237dee8e8dba16f2dd06e1c17fb2b042

 [https://github.com/Hashik-Donthineni/Snowflake-Mobile GitHub Mirror]

--
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] [Tor Bug Tracker & Wiki] Batch modify: #10802, #12957, #31873, #23839, ...

2020-06-11 Thread Tor Bug Tracker & Wiki
Batch modification to #10802, #12957, #31873, #23839, #28015, #28526, #28531, 
#29184, #29277, #29288, #29296, #29590, #30477, #31265, #31266, #31267, #31268, 
#31269, #31270, #31271, #31272, #31273, #31274, #31279, #31280, #31281, #31282, 
#31283, #31284, #31870, #31871, #31874, #31875, #31876, #31877, #31878, #32740, 
#32811, #34153, #34345 by cohosh:


Comment:
cohosh cc'ing myself on sponsor 30 work

--
Tickets 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] #31282 [UX]: O3.1 - Research different scenarios of how human rights defenders experience censorship.

2020-06-11 Thread Tor Bug Tracker & Wiki
#31282: O3.1 - Research different scenarios of how human rights defenders
experience censorship.
-+
 Reporter:  gaba |  Owner:  antonela
 Type:  project  | Status:  new
 Priority:  Medium   |  Milestone:
Component:  UX   |Version:
 Severity:  Normal   | Resolution:
 Keywords:   |  Actual Points:
Parent ID:  #31269   | Points:
 Reviewer:   |Sponsor:  Sponsor30-must
-+
Changes (by cohosh):

 * cc: cohosh (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] #33835 [Circumvention/BridgeDB]: Gmail's quoted response confuses BridgeDB's email autoresponder

2020-06-11 Thread Tor Bug Tracker & Wiki
#33835: Gmail's quoted response confuses BridgeDB's email autoresponder
+---
 Reporter:  phw |  Owner:  agix
 Type:  defect  | Status:  needs_information
 Priority:  Medium  |  Milestone:
Component:  Circumvention/BridgeDB  |Version:
 Severity:  Normal  | Resolution:
 Keywords:  s30-o22a2   |  Actual Points:
Parent ID:  #31279  | Points:  1
 Reviewer:  |Sponsor:  Sponsor30-can
+---
Changes (by agix):

 * status:  needs_review => needs_information


--
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] #33835 [Circumvention/BridgeDB]: Gmail's quoted response confuses BridgeDB's email autoresponder

2020-06-11 Thread Tor Bug Tracker & Wiki
#33835: Gmail's quoted response confuses BridgeDB's email autoresponder
+---
 Reporter:  phw |  Owner:  agix
 Type:  defect  | Status:  needs_review
 Priority:  Medium  |  Milestone:
Component:  Circumvention/BridgeDB  |Version:
 Severity:  Normal  | Resolution:
 Keywords:  s30-o22a2   |  Actual Points:
Parent ID:  #31279  | Points:  1
 Reviewer:  |Sponsor:  Sponsor30-can
+---

Comment (by agix):

 I just left one comment on your patch
 
[https://github.com/NullHypothesis/bridgedb/commit/8caa83df6382f772c02453705a1014f156b66850
 here]
 Other than that, the patch looks good to me.

--
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] #32811 [UX/Research]: Research on information controls to extend our user personas to specific censored personas

2020-06-11 Thread Tor Bug Tracker & Wiki
#32811: Research on information controls to extend our user personas to specific
censored personas
-+-
 Reporter:  gaba |  Owner:
 |  antonela
 Type:  defect   | Status:
 |  assigned
 Priority:  Medium   |  Milestone:
Component:  UX/Research  |Version:
 Severity:  Normal   | Resolution:
 Keywords:  s30-o31a1, anti-censorship-  |  Actual Points:
  roadmap-2020   |
Parent ID:  #31282   | Points:
 Reviewer:   |Sponsor:
 |  Sponsor30-must
-+-
Changes (by antonela):

 * Attachment "new-persona-notes.csv" added.

 in-progress

--
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] #34417 [Internal Services/Tor Sysadmin Team]: move henryi/consensus-health off kvm5

2020-06-11 Thread Tor Bug Tracker & Wiki
#34417: move henryi/consensus-health off kvm5
-+-
 Reporter:  weasel   |  Owner:  weasel
 Type:  defect   | Status:
 |  assigned
 Priority:  Medium   |  Milestone:
Component:  Internal Services/Tor Sysadmin Team  |Version:
 Severity:  Normal   | Resolution:
 Keywords:  tpa-roadmap-june |  Actual Points:
Parent ID:  #33084   | Points:
 Reviewer:   |Sponsor:
-+-

Comment (by tom):

 If you're moving the entire VM; no I don't think so. If you're
 reinstalling from scratch then we have accumulated the installation of
 many packages whose installation was probably not documented.

--
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] #34423 [Applications/GetTor]: Implement GetTor for mobile users

2020-06-11 Thread Tor Bug Tracker & Wiki
#34423: Implement GetTor for mobile users
-+
 Reporter:  cohosh   |  Owner:  (none)
 Type:  task | Status:  new
 Priority:  Medium   |  Milestone:
Component:  Applications/GetTor  |Version:
 Severity:  Normal   | Resolution:
 Keywords:   |  Actual Points:
Parent ID:   | Points:  2
 Reviewer:   |Sponsor:
-+
Changes (by cohosh):

 * cc: sysrqb (added)


Comment:

 Just noticed that the Android .apk download links aren't included in
 https://aus1.torproject.org/torbrowser/update_3/release/downloads.json

 Is there a way for us to get these easily?

--
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] #34362 [Applications/Tor Browser]: Improve Onion Service Authentication prompt

2020-06-11 Thread Tor Bug Tracker & Wiki
#34362: Improve Onion Service Authentication prompt
-+-
 Reporter:  sysrqb   |  Owner:  mcs
 Type:  defect   | Status:  closed
 Priority:  Medium   |  Milestone:
Component:  Applications/Tor Browser |Version:
 Severity:  Normal   | Resolution:  fixed
 Keywords:  tbb-9.5-issues,  |  Actual Points:
  TorBrowserTeam202006R  |
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by gk):

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


Comment:

 Replying to [comment:6 mcs]:
 > tor-browser patch:
 > https://gitweb.torproject.org/user/brade/tor-
 browser.git/commit/?h=bug34362-01=6b2a25050b80a142f5f8ec540d543810a685cc9f

 Cherry-picked to `tor-browser-68.9.0esr-9.5-1` (commit
 `aace250e0ac5bb4b36004aadd0cab2d05c23d5d5`) and `tor-
 browser-68.9.0esr-10.0-1` (commit
 `c5cd695c6803f32c97a4f5ec052155c3d021b379`).

 > Torbutton patch:
 >
 
https://gitweb.torproject.org/user/brade/torbutton.git/commit/?h=bug34362-01=605e9d398ab026ce53ec8ad106848bfe5ae5e627

 Merged to `master` (commit `605e9d398ab026ce53ec8ad106848bfe5ae5e627`),
 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] #34369 [Applications/Tor Browser]: Fix learn more link in Onion Auth prompt

2020-06-11 Thread Tor Bug Tracker & Wiki
#34369: Fix learn more link in Onion Auth prompt
--+
 Reporter:  antonela  |  Owner:  mcs
 Type:  defect| Status:  closed
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal| Resolution:  fixed
 Keywords:  tbb-9.5-issues,TorBrowserTeam202006R  |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+
Changes (by gk):

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


Comment:

 Thanks. Cherry-picked to `tor-browser-68.9.0esr-9.5-1` (commit
 `58ac4b710c63854d6285b437e241e0284b43dbee`) and `tor-
 browser-68.9.0esr-10.0-1` (commit
 632beb89a79f17bdb0db266196c39b67fc11561f).

--
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] #34434 [Applications/Tor Browser]: Remove unused $var: 1 declarations in rbm.conf

2020-06-11 Thread Tor Bug Tracker & Wiki
#34434: Remove unused $var: 1 declarations in rbm.conf
--+
 Reporter:  gk|  Owner:  tbb-team
 Type:  enhancement   | Status:  new
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal|   Keywords:  tbb-rbm, tbb-maint
Actual Points:|  Parent ID:
   Points:|   Reviewer:
  Sponsor:|
--+
 There are a bunch of unused $var: 1 declarations in `rbm.conf` (that is
 they don't have a matching `[% c("var/$var") %]` check). We should clean
 that up and keep things tidy so that it is obvious where things need to
 get added and where they are not needed.

--
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] #34433 [Core Tor/Tor]: Replace clang-format.sh with a faster, better version

2020-06-11 Thread Tor Bug Tracker & Wiki
#34433: Replace clang-format.sh with a faster, better version
--+
 Reporter:  nickm |  Owner:  nickm
 Type:  enhancement   | Status:  needs_review
 Priority:  Medium|  Milestone:  Tor: 0.4.4.x-final
Component:  Core Tor/Tor  |Version:
 Severity:  Normal| Resolution:
 Keywords:  c-style   |  Actual Points:  .2
Parent ID:| Points:
 Reviewer:|Sponsor:
--+
Changes (by nickm):

 * status:  assigned => 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] #34317 [Community]: Regading adding a Doc link in "Using Tor with …"

2020-06-11 Thread Tor Bug Tracker & Wiki
#34317: Regading adding a Doc link in "Using Tor with …"
-+--
 Reporter:  samsapi01|  Owner:  ggus
 Type:  enhancement  | Status:  new
 Priority:  Low  |  Milestone:
Component:  Community|Version:
 Severity:  Normal   | Resolution:
 Keywords:  ftp  |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+--

Comment (by samsapi01):

 Replying to [comment:1 gk]:
 > FTP is about to go away in major browsers thus, I am not sure whether we
 should add that link to anything. ggus might want to think about that. (I
 am not even sure where the "Using Tor with" list actually is that
 samsapi01 is referring to)

 https://trac.torproject.org/projects/tor/wiki#UsingTorwith
 Im referring to the block.

--
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] #33851 [Applications/Tor Browser]: Patch out Parental Controls detection and logging

2020-06-11 Thread Tor Bug Tracker & Wiki
#33851: Patch out Parental Controls detection and logging
--+--
 Reporter:  pospeselr |  Owner:  mcs
 Type:  defect| Status:  needs_review
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal| Resolution:
 Keywords:  TorBrowserTeam202006R |  Actual Points:
Parent ID:  #33534| Points:
 Reviewer:|Sponsor:  Sponsor58
--+--

Comment (by acat):

 Looks good to me, but should we also have a Tor Browser mozconfs fixup to
 keep in sync?

--
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] #34379 [Applications/Tor Browser]: Fix learn more for Onion-Location

2020-06-11 Thread Tor Bug Tracker & Wiki
#34379: Fix learn more for Onion-Location
--+
 Reporter:  acat  |  Owner:  mcs
 Type:  defect| Status:  closed
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal| Resolution:  fixed
 Keywords:  tbb-9.5-issues,TorBrowserTeam202006R  |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+
Changes (by gk):

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


Comment:

 Cherry-picked to `tor-browser-68.9.0esr-9.5-1` (commit
 `e2d86fb3d25e5044c0b514c096b1af1a632829ab`) and `tor-
 browser-68.9.0esr-10.0-1` (commit
 `8c3168ab58f038cc1e72d2f408bee1e5f715c455`).

--
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] #34317 [Community]: Regading adding a Doc link in "Using Tor with …"

2020-06-11 Thread Tor Bug Tracker & Wiki
#34317: Regading adding a Doc link in "Using Tor with …"
-+--
 Reporter:  samsapi01|  Owner:  ggus
 Type:  enhancement  | Status:  new
 Priority:  Low  |  Milestone:
Component:  Community|Version:
 Severity:  Normal   | Resolution:
 Keywords:  ftp  |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+--
Changes (by samsapi01):

 * priority:  Medium => Low


--
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] #34369 [Applications/Tor Browser]: Fix learn more link in Onion Auth prompt

2020-06-11 Thread Tor Bug Tracker & Wiki
#34369: Fix learn more link in Onion Auth prompt
-+-
 Reporter:  antonela |  Owner:  mcs
 Type:  defect   | Status:
 |  merge_ready
 Priority:  Medium   |  Milestone:
Component:  Applications/Tor Browser |Version:
 Severity:  Normal   | Resolution:
 Keywords:   |  Actual Points:
  tbb-9.5-issues,TorBrowserTeam202006R   |
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by acat):

 * status:  needs_review => merge_ready


Comment:

 Looks good to me.

--
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] #34362 [Applications/Tor Browser]: Improve Onion Service Authentication prompt

2020-06-11 Thread Tor Bug Tracker & Wiki
#34362: Improve Onion Service Authentication prompt
-+-
 Reporter:  sysrqb   |  Owner:  mcs
 Type:  defect   | Status:
 |  merge_ready
 Priority:  Medium   |  Milestone:
Component:  Applications/Tor Browser |Version:
 Severity:  Normal   | Resolution:
 Keywords:  tbb-9.5-issues,  |  Actual Points:
  TorBrowserTeam202006R  |
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by acat):

 * status:  needs_review => merge_ready


Comment:

 Looks good to me.

--
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] #33420 [Metrics/Onionperf]: Add CBT events to Onionperf result files

2020-06-11 Thread Tor Bug Tracker & Wiki
#33420: Add CBT events to Onionperf result files
-+-
 Reporter:  acute|  Owner:
 |  metrics-team
 Type:  enhancement  | Status:
 |  assigned
 Priority:  Medium   |  Milestone:
Component:  Metrics/Onionperf|Version:
 Severity:  Normal   | Resolution:
 Keywords:  metrics-team-roadmap-2020, metrics-  |  Actual Points:  0.3
  team-roadmap-2020-june |
Parent ID:  #33321   | Points:  2.0
 Reviewer:   |Sponsor:
 |  Sponsor59-must
-+-
Changes (by karsten):

 * Attachment "onionperf.analysis.json.xz" added.

 OnionPerf analysis JSON file from running mikeperry's branch plus some
 more patches

--
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] #33420 [Metrics/Onionperf]: Add CBT events to Onionperf result files

2020-06-11 Thread Tor Bug Tracker & Wiki
#33420: Add CBT events to Onionperf result files
-+-
 Reporter:  acute|  Owner:
 |  metrics-team
 Type:  enhancement  | Status:
 |  assigned
 Priority:  Medium   |  Milestone:
Component:  Metrics/Onionperf|Version:
 Severity:  Normal   | Resolution:
 Keywords:  metrics-team-roadmap-2020, metrics-  |  Actual Points:  0.3
  team-roadmap-2020-june |
Parent ID:  #33321   | Points:  2.0
 Reviewer:   |Sponsor:
 |  Sponsor59-must
-+-
Changes (by karsten):

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


Comment:

 I briefly ran mikeperry's patch and want to share my experience here.

 I had to patch the branch by calling the relevant functions as part of
 dropping guards. The only reason was that Stem (obviously) doesn't have a
 `drop_timeouts()` function yet. Here's my patch on top of mikeperry's
 branch:

 {{{
 diff --git a/src/feature/control/control_cmd.c
 b/src/feature/control/control_cmd.c
 index 74d542ec6d..3cd586ccff 100644
 --- a/src/feature/control/control_cmd.c
 +++ b/src/feature/control/control_cmd.c
 @@ -1393,8 +1393,12 @@ handle_control_dropguards(control_connection_t
 *conn,
}

remove_all_entry_guards();
 +  circuit_build_times_reset(get_circuit_build_times_mutable());
send_control_done(conn);

 +  cbt_control_event_buildtimeout_set(get_circuit_build_times(),
 + BUILDTIMEOUT_SET_EVENT_RESET);
 +
return 0;
  }

 }}}

 I then patched OnionPerf to:
  - use entry guards (which isn't technically required for this branch, but
 I did this when working on #33399),
  - increase the `NEWNYM` interval from 5 minutes to 1 hour and drop guards
 and timeouts right after sending the `NEWNYM` command (even though this
 could have happened separately with `NEWNYM` being sent every 5 minutes
 and the two drop commands happening once per hour), and
  - distinguish `BUILDTIMEOUT_SET COMPUTED` events from other
 `BUILDTIMEOUT_SET` events.

 Here's my patch:

 {{{
 diff --git a/onionperf/analysis.py b/onionperf/analysis.py
 index 20ca354..7913adc 100644
 --- a/onionperf/analysis.py
 +++ b/onionperf/analysis.py
 @@ -12,7 +12,7 @@ from socket import gethostname
  from abc import ABCMeta, abstractmethod

  # stem imports
 -from stem import CircEvent, CircStatus, CircPurpose, StreamStatus
 +from stem import CircEvent, CircStatus, CircPurpose, StreamStatus,
 TimeoutSetType
  from stem.response.events import CircuitEvent, CircMinorEvent,
 StreamEvent, BandwidthEvent, BuildTimeoutSetEvent
  from stem.response import ControlMessage, convert

 @@ -630,8 +630,12 @@ class TorCtlParser(Parser):
  self.bandwidth_summary['bytes_written'][int(arrival_dt)] =
 event.written

  def __handle_buildtimeout(self, event, arrival_dt):
 -self.build_timeout_last = event.timeout
 -self.build_quantile_last = event.quantile
 +if event.set_type == TimeoutSetType.COMPUTED:
 +self.build_timeout_last = event.timeout
 +self.build_quantile_last = event.quantile
 +else:
 +self.build_timeout_last = None
 +self.build_quantile_last = None

  def __handle_event(self, event, arrival_dt):
  if isinstance(event, (CircuitEvent, CircMinorEvent)):
 diff --git a/onionperf/measurement.py b/onionperf/measurement.py
 index 4a58bc4..c8fc9f8 100644
 --- a/onionperf/measurement.py
 +++ b/onionperf/measurement.py
 @@ -388,8 +388,8 @@ WarnUnsafeSocks 0\nSafeLogging 0\nMaxCircuitDirtiness
 60 seconds\nDataDirectory
  tor_config = tor_config + f.read()
  if name == "client" and self.additional_client_conf:
  tor_config += self.additional_client_conf
 -if not 'UseEntryGuards' in tor_config and not 'UseBridges' in
 tor_config:
 -tor_config += "UseEntryGuards 0\n"
 +#if not 'UseEntryGuards' in tor_config and not 'UseBridges' in
 tor_config:
 +#tor_config += "UseEntryGuards 0\n"
  if name == "server" and self.single_onion:
  tor_config += "HiddenServiceSingleHopMode
 1\nHiddenServiceNonAnonymousMode 1\n"
  return tor_config
 @@ -466,7 +466,7 @@ WarnUnsafeSocks 0\nSafeLogging 0\nMaxCircuitDirtiness
 60 seconds\nDataDirectory
  time.sleep(3)

  torctl_events = [e for e in monitor.get_supported_torctl_events()
 if e not in ['DEBUG', 'INFO', 'NOTICE', 'WARN', 'ERR']]
 -newnym_interval_seconds = 300
 +

Re: [tor-bugs] #34433 [Core Tor/Tor]: Replace clang-format.sh with a faster, better version

2020-06-11 Thread Tor Bug Tracker & Wiki
#34433: Replace clang-format.sh with a faster, better version
--+
 Reporter:  nickm |  Owner:  nickm
 Type:  enhancement   | Status:  assigned
 Priority:  Medium|  Milestone:  Tor: 0.4.4.x-final
Component:  Core Tor/Tor  |Version:
 Severity:  Normal| Resolution:
 Keywords:  c-style   |  Actual Points:  .2
Parent ID:| Points:
 Reviewer:|Sponsor:
--+
Changes (by nickm):

 * actualpoints:   => .2


Comment:

 See branch `clang_format_tooling` with PR at
 https://github.com/torproject/tor/pull/1929

--
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] #34433 [Core Tor/Tor]: Replace clang-format.sh with a faster, better version

2020-06-11 Thread Tor Bug Tracker & Wiki
#34433: Replace clang-format.sh with a faster, better version
--+
 Reporter:  nickm |  Owner:  nickm
 Type:  enhancement   | Status:  assigned
 Priority:  Medium|  Milestone:  Tor: 0.4.4.x-final
Component:  Core Tor/Tor  |Version:
 Severity:  Normal|   Keywords:  c-style
Actual Points:|  Parent ID:
   Points:|   Reviewer:
  Sponsor:|
--+
 We need to replace clang-format.sh with a version that meets our use-
 cases.

 Notably:

  * we need to be able to check whether anything is misformatted without
 actually reformatting it.
  * we need to be able to look at only those files that are staged to be
 committed, so that our git hooks can work.
  * we need a mode to reformat everything that has changed in git, so that
 we can run a quick "reformat everything" command without scanning the
 entire repostiory (which takes around 60 seconds for me).

--
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] #32088 [Core Tor/Tor]: Proposal 310 - choose guards in sampled order

2020-06-11 Thread Tor Bug Tracker & Wiki
#32088: Proposal 310 - choose guards in sampled order
-+-
 Reporter:  Jaym |  Owner:  (none)
 Type:  enhancement  | Status:  closed
 Priority:  High |  Milestone:  Tor:
 |  0.4.4.x-final
Component:  Core Tor/Tor |Version:
 Severity:  Normal   | Resolution:  fixed
 Keywords:  tor-spec prop271 prop310 044-should  |  Actual Points:
Parent ID:   | Points:
 Reviewer:  nickm, asn   |Sponsor:
-+-
Changes (by asn):

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


Comment:

 Merged!!! Thanks a lot

--
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] #34379 [Applications/Tor Browser]: Fix learn more for Onion-Location

2020-06-11 Thread Tor Bug Tracker & Wiki
#34379: Fix learn more for Onion-Location
-+-
 Reporter:  acat |  Owner:  mcs
 Type:  defect   | Status:
 |  merge_ready
 Priority:  Medium   |  Milestone:
Component:  Applications/Tor Browser |Version:
 Severity:  Normal   | Resolution:
 Keywords:   |  Actual Points:
  tbb-9.5-issues,TorBrowserTeam202006R   |
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by acat):

 * status:  needs_review => merge_ready


Comment:

 Thanks, looks good to me.

--
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] #33399 [Metrics/Onionperf]: Measure static guard nodes with OnionPerf

2020-06-11 Thread Tor Bug Tracker & Wiki
#33399: Measure static guard nodes with OnionPerf
-+-
 Reporter:  acute|  Owner:  karsten
 Type:  enhancement  | Status:
 |  accepted
 Priority:  Medium   |  Milestone:
Component:  Metrics/Onionperf|Version:
 Severity:  Normal   | Resolution:
 Keywords:  metrics-team-roadmap-2020, metrics-  |  Actual Points:  0.1
  team-roadmap-2020-june |
Parent ID:  #33325   | Points:  4
 Reviewer:   |Sponsor:
 |  Sponsor59-must
-+-

Comment (by karsten):

 I just moved the discussion of `DROPTIMEOUTS` to #33420. Let's focus on
 static guards in this ticket and leave everything related to circuit build
 timeouts for #33420. It might be that we'll want to use both features
 together once they exist, but development can happen in parallel in these
 two tickets.

--
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] #32088 [Core Tor/Tor]: Proposal 310 - choose guards in sampled order

2020-06-11 Thread Tor Bug Tracker & Wiki
#32088: Proposal 310 - choose guards in sampled order
-+-
 Reporter:  Jaym |  Owner:  (none)
 Type:  enhancement  | Status:
 |  merge_ready
 Priority:  High |  Milestone:  Tor:
 |  0.4.4.x-final
Component:  Core Tor/Tor |Version:
 Severity:  Normal   | Resolution:
 Keywords:  tor-spec prop271 prop310 044-should  |  Actual Points:
Parent ID:   | Points:
 Reviewer:  nickm, asn   |Sponsor:
-+-
Changes (by asn):

 * status:  needs_review => merge_ready


Comment:

 Great. I squashed and made a PR here:
 https://github.com/torproject/tor/pull/1928

 Waiting to finish and will merge.

--
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] #33420 [Metrics/Onionperf]: Add CBT events to Onionperf result files

2020-06-11 Thread Tor Bug Tracker & Wiki
#33420: Add CBT events to Onionperf result files
-+-
 Reporter:  acute|  Owner:  karsten
 Type:  enhancement  | Status:
 |  needs_information
 Priority:  Medium   |  Milestone:
Component:  Metrics/Onionperf|Version:
 Severity:  Normal   | Resolution:
 Keywords:  metrics-team-roadmap-2020, metrics-  |  Actual Points:  0.3
  team-roadmap-2020-june |
Parent ID:  #33321   | Points:  2.0
 Reviewer:   |Sponsor:
 |  Sponsor59-must
-+-

Comment (by karsten):

 I'm moving mikeperry's `DROPTIMEOUTS` feature branch from #33399 here,
 because this ticket is about circuit build timeouts whereas #33399 is
 about static guards.

 It's possible that we'll want to do both (use static guards ''and'' drop
 build timeouts when dropping guards), but the development effort can
 happen in separate tickets.

 mikeperry wrote:

 > ​https://github.com/mikeperry-tor/tor/commits/droptimeouts provides this
 functionality.
 >
 > ​https://github.com/mikeperry-tor/torspec/commits/droptimeouts provides
 the spec.
 >
 > LMK if this looks good and I'll open a sub-ticket for network-team to
 merge.

 mikeperry added a bit later:

 > I just noticed that DROPGUARDS has a call to or_state_mark_dirty()
 buried deep in its callpath. I did not do this for DROPTIMEOUTS, but it is
 easy enough to throw a call in there.
 >
 > This should only matter if there is a risk of restarting or SIGHUPing
 the tor process right after DROPTIMEOUTS. The CBT code will mark the state
 file dirty again as soon as it records 10 circuit build times.

 I'll also add that we'll need a Stem patch in order to send the
 `DROPTIMEOUTS` command. We can add that later after adding the Tor patch
 and after being sure that it does what we need.

--
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] #33421 [Metrics/Onionperf]: Track which Guard is used for experimental measurements

2020-06-11 Thread Tor Bug Tracker & Wiki
#33421: Track which Guard is used for experimental measurements
-+-
 Reporter:  acute|  Owner:  karsten
 Type:  enhancement  | Status:
 |  accepted
 Priority:  Medium   |  Milestone:
Component:  Metrics/Onionperf|Version:
 Severity:  Normal   | Resolution:
 Keywords:  metrics-team-roadmap-2020, metrics-  |  Actual Points:
  team-roadmap-2020-june |
Parent ID:  #33321   | Points:  5.0
 Reviewer:   |Sponsor:
 |  Sponsor59-must
-+-
Changes (by karsten):

 * points:  3 => 5.0


Comment:

 Adding the 2.0 points from #33419 to this ticket before closing that
 ticket as near duplicate of 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] #33419 [Metrics/Onionperf]: Add analysis to support static guard measurements

2020-06-11 Thread Tor Bug Tracker & Wiki
#33419: Add analysis to support static guard measurements
---+
 Reporter:  acute  |  Owner:  metrics-team
 Type:  enhancement| Status:  closed
 Priority:  Medium |  Milestone:
Component:  Metrics/Onionperf  |Version:
 Severity:  Normal | Resolution:  duplicate
 Keywords:  metrics-team-roadmap-2020  |  Actual Points:
Parent ID:  #33325 | Points:
 Reviewer: |Sponsor:  Sponsor59-must
---+
Changes (by karsten):

 * status:  new => closed
 * points:  2 =>
 * resolution:   => duplicate


Comment:

 I don't see how this ticket is any different from #33421. If we want to
 track which guard is used in a measurement, we'll have to include this
 information in the analysis step. Moving points over and closing as near
 duplicate.

--
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   >