Re: [tor-bugs] #22992 [Core Tor/Tor]: master pubkey of the hidden service quantum computer resistance

2017-07-20 Thread Tor Bug Tracker & Wiki
#22992: master pubkey of the hidden service quantum computer resistance
---+-
 Reporter:  Dbryrtfbcbhgf  |  Owner:
 Type:  defect | Status:  new
 Priority:  Medium |  Milestone:  Tor: very long term
Component:  Core Tor/Tor   |Version:
 Severity:  Normal | Resolution:
 Keywords: |  Actual Points:
Parent ID: | Points:
 Reviewer: |Sponsor:
---+-
Changes (by yawning):

 * priority:  High => Medium
 * milestone:  Tor: 0.3.2.x-final => Tor: very long term


Comment:

 > what will be done if quantum computers can compute the private key of
 the ed25519 master pubkey "of the hidden services"

 Migrate to an entirely different HS architecture.

 There is (to my knowledge) no PQ signature algorithm currently that has
 public keys that are suitable for use as addresses.  Regardless, all the
 other crypto would need to use PQ crypto before this even matters in the
 slightest.

--
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] #22992 [Core Tor/Tor]: master pubkey of the hidden service quantum computer resistance

2017-07-20 Thread Tor Bug Tracker & Wiki
#22992: master pubkey of the hidden service quantum computer resistance
---+
 Reporter:  Dbryrtfbcbhgf  |  Owner:
 Type:  defect | Status:  new
 Priority:  High   |  Milestone:  Tor: 0.3.2.x-final
Component:  Core Tor/Tor   |Version:
 Severity:  Normal |   Keywords:
Actual Points: |  Parent ID:
   Points: |   Reviewer:
  Sponsor: |
---+
 what will be done if quantum computers can compute the private key of the
 ed25519 master pubkey "of the hidden services". Large-scale/medium scale
 quantum computers would possibly be able to compute the private key of the
 master pubkey of the hidden service then they would be able to impersonate
 the hidden service.
 https://gitweb.torproject.org/torspec.git/tree/proposals/224-rend-spec-
 ng.txt#n1901

--
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] #22988 [Internal Services/Service - trac]: Make all trac child tickets have the same headers and inherit fields

2017-07-20 Thread Tor Bug Tracker & Wiki
#22988: Make all trac child tickets have the same headers and inherit fields
--+-
 Reporter:  teor  |  Owner:  qbi
 Type:  enhancement   | Status:  new
 Priority:  Medium|  Milestone:
Component:  Internal Services/Service - trac  |Version:
 Severity:  Normal| Resolution:
 Keywords:|  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+-

Comment (by teor):

 I assume that's how it works. If not, we can revert that part of the
 change.

--
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] #21830 [Applications/Tor Browser]: Copying large text from web console leaks to /tmp

2017-07-20 Thread Tor Bug Tracker & Wiki
#21830: Copying large text from web console leaks to /tmp
-+-
 Reporter:  gk   |  Owner:  neillm
 Type:  defect   | Status:
 |  needs_review
 Priority:  Medium   |  Milestone:
Component:  Applications/Tor Browser |Version:
 Severity:  Normal   | Resolution:
 Keywords:  tbb-disk-leak,   |  Actual Points:
  TorBrowserTeam201707R  |
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-

Comment (by neillm):

 Replying to [comment:12 arthuredelstein]:
 > Replying to [comment:8 neillm]:
 >
 > > This patch has been applied to tor-browser-52.2.0esr-7.0-1-build1 and
 tested on Ubuntu 16.04.2 LTS.
 >
 > Thanks -- I built with the patch and it worked as described. But the
 `aContext` argument of `nsTransferable::Init()` appears to have only one
 purpose, which is to check for PBM state. So I wonder if you think it
 would make sense to change the signature to `nsTransferable::Init(bool
 isPrivateBrowsingMode)`? Then perhaps the callers could be modified to
 provide PBM state, assuming they have that information:
 >
 > https://dxr.mozilla.org/mozilla-
 
central/search?q=%2Bcallers%3A%22nsTransferable%3A%3AInit%28nsILoadContext+%2A%29%22
 >
 > (I'm not sure if this is a practical idea or not, so feel free to
 disagree.)

 It's a good idea, but I think practically speaking, it would be much more
 complicated.  The reason I say that is because all of those times where
 the nsTransferable is initialized without a context, it's because we
 (likely) don't actually know at that point if it's a private browsing mode
 or not.  After all, if we did, we could have loaded it with the context to
 begin with (although perhaps there are some lazy cases where it could be
 used and isn't).

 So for those remaining cases (without the context), while we may be able
 to load the preference default as this patch does, we would have to do it
 in a lot more places before we know what boolean to pass in to the Init
 (if modified).  Does that make sense?

 Other than that, you're right, it appears that it's only used for that
 reason at this point.  Assuming there are no other future uses of that
 context by the transferable, refactoring could work.

--
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] #21830 [Applications/Tor Browser]: Copying large text from web console leaks to /tmp

2017-07-20 Thread Tor Bug Tracker & Wiki
#21830: Copying large text from web console leaks to /tmp
-+-
 Reporter:  gk   |  Owner:  neillm
 Type:  defect   | Status:
 |  needs_review
 Priority:  Medium   |  Milestone:
Component:  Applications/Tor Browser |Version:
 Severity:  Normal   | Resolution:
 Keywords:  tbb-disk-leak,   |  Actual Points:
  TorBrowserTeam201707R  |
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-

Comment (by arthuredelstein):

 Replying to [comment:8 neillm]:

 > This patch has been applied to tor-browser-52.2.0esr-7.0-1-build1 and
 tested on Ubuntu 16.04.2 LTS.

 Thanks -- I built with the patch and it worked as described. But the
 `aContext` argument of `nsTransferable::Init()` appears to have only one
 purpose, which is to check for PBM state. So I wonder if you think it
 would make sense to change the signature to `nsTransferable::Init(bool
 isPrivateBrowsingMode)`? Then perhaps the callers could be modified to
 provide PBM state, assuming they have that information:

 https://dxr.mozilla.org/mozilla-
 
central/search?q=%2Bcallers%3A%22nsTransferable%3A%3AInit%28nsILoadContext+%2A%29%22

 (I'm not sure if this is a practical idea or not, so feel free to
 disagree.)

--
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] #22991 [Core Tor/Tor]: Ubuntu/AppArmor 0.3.0.9 and 0.3.1.4-alpha - onion service setup fails

2017-07-20 Thread Tor Bug Tracker & Wiki
#22991: Ubuntu/AppArmor 0.3.0.9 and 0.3.1.4-alpha - onion service setup fails
--+-
 Reporter:  yawnbox   |  Owner:
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  Core Tor/Tor  |Version:
 Severity:  Normal| Resolution:
 Keywords:  apparmor  |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+-
Changes (by cypherpunks):

 * keywords:   => apparmor
 * component:  - Select a component => Core Tor/Tor


--
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] #13605 [Core Tor/Tor]: Create a client/relay-side ReducedExitPolicy

2017-07-20 Thread Tor Bug Tracker & Wiki
#13605: Create a client/relay-side ReducedExitPolicy
--+
 Reporter:  mikeperry |  Owner:
 Type:  enhancement   | Status:
  |  needs_revision
 Priority:  Medium|  Milestone:  Tor:
  |  0.3.2.x-final
Component:  Core Tor/Tor  |Version:
 Severity:  Normal| Resolution:
 Keywords:  tor-relay, easy, review-group-18  |  Actual Points:
Parent ID:| Points:  medium
 Reviewer:|Sponsor:
--+

Comment (by neel):

 Sorry for the delay, but I have created a new patch with the filename tor-
 patch-ReducedExitPolicy-001.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

[tor-bugs] #22991 [- Select a component]: Ubuntu/AppArmor 0.3.0.9 and 0.3.1.4-alpha - onion service setup fails

2017-07-20 Thread Tor Bug Tracker & Wiki
#22991: Ubuntu/AppArmor 0.3.0.9 and 0.3.1.4-alpha - onion service setup fails
--+-
 Reporter:  yawnbox   |  Owner:
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  - Select a component  |Version:
 Severity:  Normal|   Keywords:
Actual Points:|  Parent ID:
   Points:|   Reviewer:
  Sponsor:|
--+-
 After setting up new Ubuntu server hosts and adding the Tor Project repo,
 setting up an onion service fails due to apparmor.

 Hosts tested:

 Xenial server
 Zesty server

 Tor versions tested:

 0.3.0.9
 0.3.1.4-alpha

 Errors:

 /var/log/kern.log |grep tor

 Jul 20 19:25:58 zesty kernel: [   50.173406] audit: type=1400
 audit(1500578758.127:16): apparmor="DENIED" operation="capable"
 profile="system_tor" pid=2148 comm="tor" capability=2
 capname="dac_read_search"

 /var/log/syslog |grep tor

 Jul 20 19:26:00 zesty tor[2190]: Jul 20 19:26:00.111 [notice] Tor
 0.3.1.4-alpha (git-c3fe257c709bb814) running on Linux with Libevent
 2.0.21-stable, OpenSSL 1.0.2g, Zlib 1.2.11, Liblzma N/A, and Libzstd N/A.
 Jul 20 19:26:00 zesty tor[2190]: Jul 20 19:26:00.112 [notice] Tor can't
 help you if you use it wrong! Learn how to be safe at
 https://www.torproject.org/download/download#warning
 Jul 20 19:26:00 zesty tor[2190]: Jul 20 19:26:00.113 [notice] This version
 is not a stable Tor release. Expect more bugs than usual.
 Jul 20 19:26:00 zesty tor[2190]: Jul 20 19:26:00.114 [notice] Read
 configuration file "/usr/share/tor/tor-service-defaults-torrc".
 Jul 20 19:26:00 zesty tor[2190]: Jul 20 19:26:00.114 [notice] Read
 configuration file "/etc/tor/torrc".
 Jul 20 19:26:00 zesty tor[2190]: Configuration was valid
 Jul 20 19:26:00 zesty tor[2193]: Jul 20 19:26:00.223 [notice] Tor
 0.3.1.4-alpha (git-c3fe257c709bb814) running on Linux with Libevent
 2.0.21-stable, OpenSSL 1.0.2g, Zlib 1.2.11, Liblzma N/A, and Libzstd N/A.
 Jul 20 19:26:00 zesty tor[2193]: Jul 20 19:26:00.224 [notice] Tor can't
 help you if you use it wrong! Learn how to be safe at
 https://www.torproject.org/download/download#warning
 Jul 20 19:26:00 zesty tor[2193]: Jul 20 19:26:00.225 [notice] This version
 is not a stable Tor release. Expect more bugs than usual.
 Jul 20 19:26:00 zesty tor[2193]: Jul 20 19:26:00.225 [notice] Read
 configuration file "/usr/share/tor/tor-service-defaults-torrc".
 Jul 20 19:26:00 zesty tor[2193]: Jul 20 19:26:00.226 [notice] Read
 configuration file "/etc/tor/torrc".
 Jul 20 19:26:00 zesty tor[2193]: Jul 20 19:26:00.233 [warn] Directory
 /var/lib/tor/hidden_service/ cannot be read: Permission denied
 Jul 20 19:26:00 zesty tor[2193]: Jul 20 19:26:00.234 [warn] Failed to
 parse/validate config: Failed to configure rendezvous options. See logs
 for details.
 Jul 20 19:26:00 zesty tor[2193]: Jul 20 19:26:00.235 [err] Reading config
 failed--see warnings above.
 Jul 20 19:26:00 zesty systemd[1]: tor@default.service: Main process
 exited, code=exited, status=1/FAILURE
 Jul 20 19:26:00 zesty systemd[1]: tor@default.service: Unit entered failed
 state.
 Jul 20 19:26:00 zesty systemd[1]: tor@default.service: Failed with result
 'exit-code'.
 Jul 20 19:26:00 zesty systemd[1]: tor@default.service: Service hold-off
 time over, scheduling restart.
 Jul 20 19:26:00 zesty systemd[1]: tor@default.service: Start request
 repeated too quickly.
 Jul 20 19:26:00 zesty systemd[1]: tor@default.service: Unit entered failed
 state.
 Jul 20 19:26:00 zesty systemd[1]: tor@default.service: Failed with result
 'exit-code'.

 Identified solution:

 sudo vim /etc/apparmor.d/abstractions/tor

 add this line to capabilities:

 capability dac_read_search,

 reload:

 sudo /etc/init.d/apparmor reload

 sudo service tor restart

--
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] #22990 [Metrics/metrics-lib]: Add a heartbeat log message indicating progress and estimated time left

2017-07-20 Thread Tor Bug Tracker & Wiki
#22990: Add a heartbeat log message indicating progress and estimated time left
-+--
 Reporter:  karsten  |  Owner:  metrics-team
 Type:  enhancement  | Status:  new
 Priority:  Medium   |  Milestone:
Component:  Metrics/metrics-lib  |Version:
 Severity:  Normal   |   Keywords:
Actual Points:   |  Parent ID:
   Points:   |   Reviewer:
  Sponsor:   |
-+--
 It would be really useful to know how long it still takes to read a bunch
 of descriptors, as this can range from minutes to hours or even days. In
 some cases this information would help to decide whether to continue or
 abort and try something different.

 How about we start reading descriptors by walking files in the given
 directories, summing up their bytes, and using that total sum to
 periodically write a log message with progress and estimated time left?

 Once per minute on debug level would be sufficient. And it's okay if it's
 not super precise and gets confused by compression or other factors. Just
 a rough number that gets more precise over time.

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

Re: [tor-bugs] #22983 [Metrics/metrics-lib]: add a descriptor interface and implementation for web-logs

2017-07-20 Thread Tor Bug Tracker & Wiki
#22983: add a descriptor interface and implementation for web-logs
-+--
 Reporter:  iwakeh   |  Owner:  metrics-team
 Type:  enhancement  | Status:  new
 Priority:  Medium   |  Milestone:
Component:  Metrics/metrics-lib  |Version:
 Severity:  Normal   | Resolution:
 Keywords:   |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+--

Comment (by karsten):

 Regarding the name, let's try to find something more descriptive. How
 about `WebServerLog` or even `ApacheHttpServerAccessLog`? Otherwise
 there's the risk of confusion with descriptor types added in the future,
 like a log file written by BridgeDB containing client requests for bridge
 addresses.

 Regarding the suggested interface, I think there's a short term and a long
 term part here.

 In the long term I think that it would be at least twice as useful if we
 read the log contents and added methods to read these parsed contents.
 It's true that this causes some development hassle. But that's why we do
 it once in the library rather than rely on possibly more than one
 application to get it right. And we can still include the raw descriptor
 bytes by storing the compressed bytes and inflate them upon request.

 Some comments on the interface:
  - Let's include a subtype `Request` or similar for each line contained in
 the log file, and let's include a method `getRequests()` that returns
 `Iterable`.
  - Due to the fact that we cannot include a `@type` annotation with a
 version number, `Request` should ideally include getters for all fields
 contained in Apache's Combined Log Format.
  - Ideally, `getLogDate()` would return the date in milliseconds since the
 epoch to be conformant to the rest of metrics-lib, in which case it would
 probably be called `getLogMillis()`.
  - I'm unclear what `getCompressionType()` returns. I think I'd expect a
 `String` that is either `"gz"` or `"gz"`, but not a `byte[]`. Was that
 intended?
  - If we read and parse logs, we'll have to change
 `getUnrecognizedLines()` to return any unrecognized lines.

 In the short term I can see how we might want to put the `Request` part on
 hold and only return metadata and uncompressed raw descriptor contents in
 this new descriptor type.

--
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] #22989 [Applications/Tor Browser]: TBB Size 1000x610 Mac

2017-07-20 Thread Tor Bug Tracker & Wiki
#22989: TBB Size 1000x610 Mac
---+---
 Reporter:  Dbryrtfbcbhgf  |  Owner:  tbb-team
 Type:  defect | Status:
   |  needs_information
 Priority:  Medium |  Milestone:
Component:  Applications/Tor Browser   |Version:
 Severity:  Normal | Resolution:
 Keywords:  tbb-fingerprinting-resolution  |  Actual Points:
Parent ID: | Points:
 Reviewer: |Sponsor:
---+---

Comment (by Dbryrtfbcbhgf):

 HTTPS Everywhere disabled.
 Browser window width:   1000
 Browser window height:  610
 Noscript disabled
 Browser window width:   1000
 Browser window height:  610
 both disabled
 Browser window width:   1000
 Browser window height:  610
 Tested on TBB 7.0.2

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

Re: [tor-bugs] #6851 [Webpages/Website]: Resume allowing website translations

2017-07-20 Thread Tor Bug Tracker & Wiki
#6851: Resume allowing website translations
-+-
 Reporter:  arma |  Owner:
 Type:  project  | Status:
 |  assigned
 Priority:  Medium   |  Milestone:
 |  WebsiteV3
Component:  Webpages/Website |Version:
 Severity:  Normal   | Resolution:
 Keywords:  wants-volunteer, www-team,   |  Actual Points:
  sebastian-0115-triaged, defer-new-website  |
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by hiro):

 * keywords:  wants-volunteer www-team sebastian-0115-triaged defer-new-
 website => wants-volunteer, www-team, sebastian-0115-triaged, defer-
 new-website


--
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] #17669 [Webpages/Website]: Old links to outdated versions of Tor Browser should redirect to a page with the latest version of Tor Browser

2017-07-20 Thread Tor Bug Tracker & Wiki
#17669: Old links to outdated versions of Tor Browser should redirect to a page
with the latest version of Tor Browser
--+---
 Reporter:  cypherpunks   |  Owner:  hiro
 Type:  enhancement   | Status:  needs_information
 Priority:  High  |  Milestone:  WebsiteV3
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:
 Keywords:  website-bug   |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+---
Changes (by hiro):

 * keywords:   => website-bug
 * milestone:   => WebsiteV3


--
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] #14686 [Webpages/Website]: Consolidate or de-emphasize our many download pages

2017-07-20 Thread Tor Bug Tracker & Wiki
#14686: Consolidate or de-emphasize our many download pages
-+-
 Reporter:  mikeperry|  Owner:
 |  cypherpunks
 Type:  defect   | Status:
 |  assigned
 Priority:  High |  Milestone:
 |  WebsiteV3
Component:  Webpages/Website |Version:
 Severity:  Normal   | Resolution:
 Keywords:  tbb-usability-stoppoint-website, |  Actual Points:
  uxsprint2015, bridgedb-ui, defer-new-website,  |
  ux-team|
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by hiro):

 * keywords:
 tbb-usability-stoppoint-website, uxsprint2015, bridgedb-ui defer-new-
 website
 =>
 tbb-usability-stoppoint-website, uxsprint2015, bridgedb-ui, defer-new-
 website, ux-team
 * milestone:   => WebsiteV3


--
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] #11289 [Webpages/Website]: FAQ entry for where Tor's data directory is

2017-07-20 Thread Tor Bug Tracker & Wiki
#11289: FAQ entry for where Tor's data directory is
--+---
 Reporter:  atagar|  Owner:  mttp
 Type:  enhancement   | Status:  needs_information
 Priority:  Very Low  |  Milestone:  WebsiteV3
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:
 Keywords:  website-content   |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+---
Changes (by hiro):

 * keywords:   => website-content
 * severity:   => Normal
 * milestone:   => WebsiteV3


--
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] #17805 [Webpages/Website]: The website should support "stable" and "oldstable" tor releases

2017-07-20 Thread Tor Bug Tracker & Wiki
#17805: The website should support "stable" and "oldstable" tor releases
-+-
 Reporter:  nickm|  Owner:
 |  cypherpunks
 Type:  defect   | Status:
 |  assigned
 Priority:  Low  |  Milestone:
 |  WebsiteV3
Component:  Webpages/Website |Version:
 Severity:  Minor| Resolution:
 Keywords:  defer-new-website, website-content,  |  Actual Points:
  ux-team|
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by hiro):

 * keywords:  defer-new-website => defer-new-website, website-content, ux-
   team
 * milestone:   => WebsiteV3


--
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] #15762 [Webpages/Website]: Add tor installation instructions using Homebrew for OS X

2017-07-20 Thread Tor Bug Tracker & Wiki
#15762: Add tor installation instructions using Homebrew for OS X
+--
 Reporter:  sambuddhabasu   |  Owner:  hiro
 Type:  enhancement | Status:  assigned
 Priority:  Low |  Milestone:
Component:  Webpages/Website|Version:
 Severity:  Normal  | Resolution:
 Keywords:  defer-new-website, website-content  |  Actual Points:
Parent ID:  | Points:
 Reviewer:  |Sponsor:
+--
Changes (by hiro):

 * keywords:  defer-new-website => defer-new-website, website-content
 * owner:  cypherpunks => hiro


--
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] #9843 [Webpages/Website]: Document how to verify Tor Browser archives after download

2017-07-20 Thread Tor Bug Tracker & Wiki
#9843: Document how to verify Tor Browser archives after download
-+-
 Reporter:  Sherief  |  Owner:  Sherief
 Type:  task | Status:
 |  assigned
 Priority:  Low  |  Milestone:
Component:  Webpages/Website |Version:
 Severity:  Normal   | Resolution:
 Keywords:  SponsorO, sebastian-0115-triaged,|  Actual Points:
  ux-team|
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by hiro):

 * keywords:  SponsorO, sebastian-0115-triaged => SponsorO,
 sebastian-0115-triaged, ux-team


--
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] #22958 [Webpages/Website]: Update website FAQ about padding defenses

2017-07-20 Thread Tor Bug Tracker & Wiki
#22958: Update website FAQ about padding defenses
--+-
 Reporter:  asn   |  Owner:
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:
 Keywords:  website, website-content  |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+-
Changes (by hiro):

 * keywords:  website => website, website-content


--
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] #22842 [Webpages/Website]: Create a knowledge base that's more in-depth than FAQs

2017-07-20 Thread Tor Bug Tracker & Wiki
#22842: Create a knowledge base that's more in-depth than FAQs
--+---
 Reporter:  catalyst  |  Owner:  hiro
 Type:  project   | Status:  accepted
 Priority:  Medium|  Milestone:  WebsiteV3
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:
 Keywords:  ux-team   |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+---
Changes (by hiro):

 * keywords:   => ux-team
 * milestone:   => WebsiteV3


Comment:

 This issue was discussed separately and will be addressed in the new
 version of the website.

--
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] #22766 [Webpages/Website]: Add Ubuntu Zesty Zapus and Yakkety Yak

2017-07-20 Thread Tor Bug Tracker & Wiki
#22766: Add Ubuntu Zesty Zapus and Yakkety Yak
--+-
 Reporter:  cypherpunks   |  Owner:
 Type:  defect| Status:  closed
 Priority:  Medium|  Milestone:
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:  wontfix
 Keywords:|  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+-
Changes (by hiro):

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


Comment:

 On  Ubuntu, we suggest not to use the default packages, but use
 [https://www.torproject.org/docs/debian.html.en#ubuntu our deb repository]
 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] #22765 [Webpages/Website]: Only use codenames for the Debian instructions

2017-07-20 Thread Tor Bug Tracker & Wiki
#22765: Only use codenames for the Debian instructions
--+-
 Reporter:  cypherpunks   |  Owner:
 Type:  defect| Status:  closed
 Priority:  Medium|  Milestone:
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:  wontfix
 Keywords:|  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+-
Changes (by hiro):

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


--
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] #22763 [Webpages/Website]: Debian Distros

2017-07-20 Thread Tor Bug Tracker & Wiki
#22763: Debian Distros
--+
 Reporter:  goose |  Owner:
 Type:  defect| Status:  closed
 Priority:  Medium|  Milestone:
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:  fixed
 Keywords:|  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+
Changes (by hiro):

 * 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] #22637 [Webpages/Website]: Find a more maintainable approach for the signing-keys page

2017-07-20 Thread Tor Bug Tracker & Wiki
#22637: Find a more maintainable approach for the signing-keys page
--+--
 Reporter:  arma  |  Owner:  hiro
 Type:  defect| Status:  accepted
 Priority:  Medium|  Milestone:
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:
 Keywords:  website-content, website-bug  |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+--
Changes (by hiro):

 * keywords:   => website-content, website-bug
 * status:  new => accepted
 * owner:   => hiro


--
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] #22611 [Webpages/Website]: Make TB uninstall instructions more detailed in FAQ

2017-07-20 Thread Tor Bug Tracker & Wiki
#22611: Make TB uninstall instructions more detailed in FAQ
--+--
 Reporter:  pastly|  Owner:  linda
 Type:  defect| Status:  needs_review
 Priority:  Medium|  Milestone:
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:
 Keywords:  website-content   |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+--
Changes (by hiro):

 * keywords:   => website-content


--
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] #22609 [Webpages/Website]: Fix 3 links in FAQ "What would The Tor Project do with more funding?"

2017-07-20 Thread Tor Bug Tracker & Wiki
#22609: Fix 3 links in FAQ "What would The Tor Project do with more funding?"
--+--
 Reporter:  pastly|  Owner:  linda
 Type:  defect| Status:  needs_review
 Priority:  Medium|  Milestone:
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:
 Keywords:  website-content   |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+--
Changes (by hiro):

 * keywords:   => website-content


--
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] #22606 [Webpages/Website]: update the meta data information for the website

2017-07-20 Thread Tor Bug Tracker & Wiki
#22606: update the meta data information for the website
--+
 Reporter:  isabela   |  Owner:  hiro
 Type:  defect| Status:  closed
 Priority:  Medium|  Milestone:
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:  fixed
 Keywords:|  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+
Changes (by hiro):

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


Comment:

 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] #22522 [Webpages/Website]: Fix broken links

2017-07-20 Thread Tor Bug Tracker & Wiki
#22522: Fix broken links
--+---
 Reporter:  Fleming   |  Owner:  linda
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:
 Keywords:  website-content   |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+---
Changes (by hiro):

 * keywords:   => website-content


--
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] #22487 [Webpages/Website]: Add https version of `deb.torproject.org` repository install instructions

2017-07-20 Thread Tor Bug Tracker & Wiki
#22487: Add https version of `deb.torproject.org` repository install 
instructions
--+---
 Reporter:  anadahz   |  Owner:  linda
 Type:  enhancement   | Status:  new
 Priority:  Medium|  Milestone:
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:
 Keywords:  website-content   |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+---
Changes (by hiro):

 * keywords:   => website-content


--
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] #22427 [Webpages/Website]: Link to Linus's nightly builds from somewhere?

2017-07-20 Thread Tor Bug Tracker & Wiki
#22427: Link to Linus's nightly builds from somewhere?
--+---
 Reporter:  arma  |  Owner:  linda
 Type:  enhancement   | Status:  new
 Priority:  Medium|  Milestone:
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:
 Keywords:  website-content, ux-team  |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+---
Changes (by hiro):

 * keywords:   => website-content, ux-team


Comment:

 Is this something we could implement already or we want some ux-team love
 on how to do it properly?

--
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] #22412 [Webpages/Website]: Add "How report bad tor relays" info to www.torproject.org

2017-07-20 Thread Tor Bug Tracker & Wiki
#22412: Add "How report bad tor relays" info to www.torproject.org
--+--
 Reporter:  cypherpunks   |  Owner:  linda
 Type:  enhancement   | Status:  reopened
 Priority:  Medium|  Milestone:
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:
 Keywords:  website-content, ux-team  |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+--
Changes (by hiro):

 * keywords:   => website-content, ux-team


--
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] #22405 [Webpages/Website]: Fix onion links for downloading Tor Browser

2017-07-20 Thread Tor Bug Tracker & Wiki
#22405: Fix onion links for downloading Tor Browser
--+--
 Reporter:  cypherpunks   |  Owner:  hiro
 Type:  defect| Status:  assigned
 Priority:  Medium|  Milestone:
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:
 Keywords:  website-bug   |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+--
Changes (by hiro):

 * keywords:   => website-bug
 * owner:  linda => hiro
 * status:  new => assigned


Comment:

 I do not think this is a UX issue. I think this should be taken care by
 the sysadmin team and website maintainer.

--
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] #22241 [Webpages/Website]: Implement a proper wiki (just as Mozilla does)

2017-07-20 Thread Tor Bug Tracker & Wiki
#22241: Implement a proper wiki (just as Mozilla does)
--+-
 Reporter:  blockflare|  Owner:  hiro
 Type:  enhancement   | Status:  closed
 Priority:  Medium|  Milestone:
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:  wontfix
 Keywords:  ux-team   |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+-
Changes (by hiro):

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


Comment:

 This is something that is being considered as part of the new website re-
 design but won't fix at the moment.

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

Re: [tor-bugs] #22201 [Webpages/Website]: Wireframes for community.torproject.org subpages

2017-07-20 Thread Tor Bug Tracker & Wiki
#22201: Wireframes for community.torproject.org subpages
--+---
 Reporter:  linda |  Owner:  antonela
 Type:  task  | Status:  new
 Priority:  Medium|  Milestone:  WebsiteV3
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:
 Keywords:  ux-team   |  Actual Points:
Parent ID:  #22121| Points:
 Reviewer:|Sponsor:
--+---
Changes (by hiro):

 * milestone:   => WebsiteV3


--
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] #22200 [Webpages/Website]: Wireframes for support.torproject.org subpages

2017-07-20 Thread Tor Bug Tracker & Wiki
#22200: Wireframes for support.torproject.org subpages
--+---
 Reporter:  linda |  Owner:  linda,
 Type:  task  | Status:  new
 Priority:  Medium|  Milestone:  WebsiteV3
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:
 Keywords:  ux-team   |  Actual Points:
Parent ID:  #22121| Points:
 Reviewer:|Sponsor:
--+---
Changes (by hiro):

 * milestone:   => WebsiteV3


--
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] #22199 [Webpages/Website]: Wireframes for dev.torproject.org subpages

2017-07-20 Thread Tor Bug Tracker & Wiki
#22199: Wireframes for dev.torproject.org subpages
--+---
 Reporter:  linda |  Owner:  antonela
 Type:  task  | Status:  new
 Priority:  Medium|  Milestone:  WebsiteV3
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:
 Keywords:  ux-team   |  Actual Points:
Parent ID:  #22121| Points:
 Reviewer:|Sponsor:
--+---
Changes (by hiro):

 * milestone:   => WebsiteV3


--
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] #22198 [Webpages/Website]: Wireframes for torproject.org subpages

2017-07-20 Thread Tor Bug Tracker & Wiki
#22198: Wireframes for torproject.org subpages
--+---
 Reporter:  linda |  Owner:  linda
 Type:  task  | Status:  new
 Priority:  Medium|  Milestone:  WebsiteV3
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:
 Keywords:  ux-team   |  Actual Points:
Parent ID:  #22121| Points:
 Reviewer:|Sponsor:
--+---
Changes (by hiro):

 * milestone:   => WebsiteV3


--
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] #22178 [Webpages/Website]: Website redesign: Mirror list site

2017-07-20 Thread Tor Bug Tracker & Wiki
#22178: Website redesign: Mirror list site
--+---
 Reporter:  Samdney   |  Owner:  linda
 Type:  task  | Status:  new
 Priority:  Medium|  Milestone:  WebsiteV3
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:
 Keywords:|  Actual Points:
Parent ID:  #22150| Points:
 Reviewer:|Sponsor:
--+---
Changes (by hiro):

 * milestone:   => WebsiteV3


--
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] #22943 [Core Tor/Stem]: Add Travis CI configuration so that Github forks receive CI coverage

2017-07-20 Thread Tor Bug Tracker & Wiki
#22943: Add Travis CI configuration so that Github forks receive CI coverage
-+-
 Reporter:  patrickod|  Owner:  atagar
 Type:  enhancement  | Status:  new
 Priority:  Medium   |  Milestone:
Component:  Core Tor/Stem|Version:
 Severity:  Normal   | Resolution:
 Keywords:  continuous-integration ci unit-  |  Actual Points:
  testing testing new-developers travis best-|
  practice   |
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-

Comment (by atagar):

 Thanks Isis, sounds good. We already have a tox stuff I don't use so if
 this has folks and isn't very invasive I'd be happy to take a 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] #22163 [Webpages/Website]: Make it more obvious how to report security related bugs

2017-07-20 Thread Tor Bug Tracker & Wiki
#22163: Make it more obvious how to report security related bugs
--+--
 Reporter:  gk|  Owner:  hiro
 Type:  enhancement   | Status:  new
 Priority:  Medium|  Milestone:
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:
 Keywords:  website-content, ux-team  |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+--
Changes (by hiro):

 * keywords:   => website-content, ux-team


Comment:

 Is this something we should take into account in the re-design? It seems a
 small issue we could tackle right away, but not sure how that maps to ux-
 team roadmap.

--
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] #22121 [Webpages/Website]: Design tasks (tor project website redesign)

2017-07-20 Thread Tor Bug Tracker & Wiki
#22121: Design tasks (tor project website redesign)
--+---
 Reporter:  linda |  Owner:  linda
 Type:  project   | Status:  new
 Priority:  Medium|  Milestone:  WebsiteV3
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:
 Keywords:  ux-team   |  Actual Points:
Parent ID:  #21222| Points:
 Reviewer:|Sponsor:
--+---
Changes (by hiro):

 * milestone:   => WebsiteV3


--
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] #22119 [Webpages/Website]: Community portal tasks (tor project website redesign)

2017-07-20 Thread Tor Bug Tracker & Wiki
#22119: Community portal tasks (tor project website redesign)
--+---
 Reporter:  linda |  Owner:  linda
 Type:  project   | Status:  new
 Priority:  Medium|  Milestone:  WebsiteV3
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:
 Keywords:  ux-team,  |  Actual Points:
Parent ID:  #21222| Points:
 Reviewer:|Sponsor:
--+---
Changes (by hiro):

 * milestone:   => WebsiteV3


--
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] #22118 [Webpages/Website]: Support portal tasks (tor project website redesign)

2017-07-20 Thread Tor Bug Tracker & Wiki
#22118: Support portal tasks (tor project website redesign)
--+---
 Reporter:  linda |  Owner:  linda
 Type:  project   | Status:  assigned
 Priority:  Medium|  Milestone:  WebsiteV3
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:
 Keywords:  ux-team   |  Actual Points:
Parent ID:  #21222| Points:
 Reviewer:|Sponsor:
--+---
Changes (by hiro):

 * milestone:   => WebsiteV3


--
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] #22117 [Webpages/Website]: Dev portal tasks (tor project website redesign)

2017-07-20 Thread Tor Bug Tracker & Wiki
#22117: Dev portal tasks (tor project website redesign)
--+---
 Reporter:  linda |  Owner:  linda
 Type:  project   | Status:  new
 Priority:  Medium|  Milestone:  WebsiteV3
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:
 Keywords:  ux-team   |  Actual Points:
Parent ID:  #21222| Points:
 Reviewer:|Sponsor:
--+---
Changes (by hiro):

 * milestone:   => WebsiteV3


--
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] #22116 [Webpages/Website]: Home portal tasks (tor project website redesign)

2017-07-20 Thread Tor Bug Tracker & Wiki
#22116: Home portal tasks (tor project website redesign)
--+---
 Reporter:  linda |  Owner:  linda
 Type:  project   | Status:  new
 Priority:  Medium|  Milestone:  WebsiteV3
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:
 Keywords:  ux-team   |  Actual Points:
Parent ID:  #21222| Points:
 Reviewer:|Sponsor:
--+---
Changes (by hiro):

 * milestone:   => WebsiteV3


--
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] #22983 [Metrics/metrics-lib]: add a descriptor interface and implementation for web-logs

2017-07-20 Thread Tor Bug Tracker & Wiki
#22983: add a descriptor interface and implementation for web-logs
-+--
 Reporter:  iwakeh   |  Owner:  metrics-team
 Type:  enhancement  | Status:  new
 Priority:  Medium   |  Milestone:
Component:  Metrics/metrics-lib  |Version:
 Severity:  Normal   | Resolution:
 Keywords:   |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+--

Comment (by iwakeh):

 To visualize comment:2, please see the following interface:

 {{{
 #!java
 /* Copyright 2017 The Tor Project
  * See LICENSE for licensing information */

 package org.torproject.descriptor;

 import java.util.List;

 /**
  * Interface for log-file descriptors.
  *
  * @since 2.1.0
  */
 public interface LogDescriptor extends Descriptor {

   /**
* Returns the hostname of the machine on which the logs were gathered.
*
* @since 2.1.0
*/
   public String getMeasuringHost();

   /**
* Returns the name of the host served and for which the logs were
 gathered.
*
* @since 2.1.0
*/
   public String getServedHost();

   /**
* Returns the date of the log in yyymmdd format.
*
* @since 2.1.0
*/
   public String getLogDate();

   /**
* Return the raw descriptor bytes of the compressed sanitized logs.
*
* The compression type is returned by {@link #getCompressionType()}
* and is one of 'gz' or 'xz'.  Additional types might be added in
* future.
*
* @since 2.1.0
*/
   @Override
   public byte[] getRawDescriptorBytes();

   /**
* Returns the compression type as one of 'gz' or 'xz'.
*
* Additional types might be added in future.
*
* @since 2.1.0
*/
   public byte[] getCompressionType();

   /**
* Will always return an empty List as logs don't have any descriptors.
*
* @since 2.1.0
*/
   @Override
   public List getAnnotations();

   /**
* Will always return an empty List as logs don't have any descriptors.
*
* @since 2.1.0
*/
   @Override
   public List getUnrecognizedLines();
 }

 }}}

--
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] #22076 [Webpages/Website]: adjust text shown on screen based on size of text

2017-07-20 Thread Tor Bug Tracker & Wiki
#22076: adjust text shown on screen based on size of text
--+--
 Reporter:  efittery  |  Owner:  hiro
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:
 Keywords:  website-bug   |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+--
Changes (by hiro):

 * keywords:   => website-bug


--
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] #21808 [Webpages/Website]: show Windows `gpg --verify` command on one line

2017-07-20 Thread Tor Bug Tracker & Wiki
#21808: show Windows `gpg --verify` command on one line
--+--
 Reporter:  pege  |  Owner:  hiro
 Type:  defect| Status:  assigned
 Priority:  Medium|  Milestone:
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:
 Keywords:  website-content   |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+--
Changes (by hiro):

 * keywords:   => website-content
 * 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] #20688 [Webpages/Website]: OpenBSD missing from systems that 'work best' with relays

2017-07-20 Thread Tor Bug Tracker & Wiki
#20688: OpenBSD missing from systems that 'work best' with relays
--+-
 Reporter:  mulander  |  Owner:  cypherpunks
 Type:  defect| Status:  assigned
 Priority:  Medium|  Milestone:  WebsiteV3
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:
 Keywords:  website-content   |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+-
Changes (by hiro):

 * keywords:   => website-content
 * milestone:   => WebsiteV3


--
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] #20125 [Webpages/Website]: Tor Mirror Update as of 9/9/2016

2017-07-20 Thread Tor Bug Tracker & Wiki
#20125: Tor Mirror Update as of 9/9/2016
--+---
 Reporter:  aquintex  |  Owner:  cypherpunks
 Type:  task  | Status:  needs_information
 Priority:  Medium|  Milestone:
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:
 Keywords:  tor mirror|  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+---
Changes (by hiro):

 * status:  assigned => 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] #19930 [Webpages/Website]: web site menu needlessly jumps around

2017-07-20 Thread Tor Bug Tracker & Wiki
#19930: web site menu needlessly jumps around
+-
 Reporter:  chadmiller  |  Owner:  cypherpunks
 Type:  defect  | Status:  assigned
 Priority:  Medium  |  Milestone:  WebsiteV3
Component:  Webpages/Website|Version:
 Severity:  Minor   | Resolution:
 Keywords:  defer-new-website, ux-team  |  Actual Points:
Parent ID:  | Points:
 Reviewer:  |Sponsor:
+-
Changes (by hiro):

 * milestone:   => WebsiteV3


--
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] #19841 [Webpages/Website]: BridgeDB website: surprising choices and no language switcher

2017-07-20 Thread Tor Bug Tracker & Wiki
#19841: BridgeDB website: surprising choices and no language switcher
-+--
 Reporter:  sebalis  |  Owner:  isis
 Type:  defect   | Status:  new
 Priority:  Medium   |  Milestone:
Component:  Webpages/Website |Version:
 Severity:  Normal   | Resolution:
 Keywords:  bridgedb-reportbug, website-content  |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+--
Changes (by hiro):

 * keywords:  bridgedb-reportbug => bridgedb-reportbug, website-content


--
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] #19801 [Webpages/Website]: Add sdscoq7snqtznauu.onion to torproject.org/docs/debian.html

2017-07-20 Thread Tor Bug Tracker & Wiki
#19801: Add sdscoq7snqtznauu.onion to torproject.org/docs/debian.html
--+--
 Reporter:  ilf   |  Owner:  hiro
 Type:  enhancement   | Status:  assigned
 Priority:  Medium|  Milestone:
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:
 Keywords:  website-bug   |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+--
Changes (by hiro):

 * keywords:   => website-bug
 * owner:  cypherpunks => hiro


--
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] #19756 [Webpages/Website]: research.tp.o suggests mailing tor-assistants

2017-07-20 Thread Tor Bug Tracker & Wiki
#19756: research.tp.o suggests mailing tor-assistants
--+---
 Reporter:  arma  |  Owner:  karsten
 Type:  defect| Status:  needs_information
 Priority:  Medium|  Milestone:
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:
 Keywords:|  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+---
Changes (by hiro):

 * status:  new => 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] #19696 [Webpages/Website]: Adding meta tag description with gettor information for users who can't open our site

2017-07-20 Thread Tor Bug Tracker & Wiki
#19696: Adding meta tag description with gettor information for users who can't
open our site
--+-
 Reporter:  isabela   |  Owner:  cypherpunks
 Type:  enhancement   | Status:  closed
 Priority:  Medium|  Milestone:
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:  fixed
 Keywords:|  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+-
Changes (by hiro):

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


Comment:

 This was fixed with a different meta-tag.

--
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] #18925 [Webpages/Website]: Add instructions for removing the code signing parts of OS X bundles and MAR files

2017-07-20 Thread Tor Bug Tracker & Wiki
#18925: Add instructions for removing the code signing parts of OS X bundles and
MAR files
-+-
 Reporter:  gk   |  Owner:  tbb-
 |  team
 Type:  enhancement  | Status:  new
 Priority:  Medium   |  Milestone:
Component:  Webpages/Website |Version:
 Severity:  Normal   | Resolution:
 Keywords:  GeorgKoppen201707,   |  Actual Points:
  TorBrowserTeam201707, website-content  |
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by hiro):

 * keywords:  GeorgKoppen201707, TorBrowserTeam201707 => GeorgKoppen201707,
 TorBrowserTeam201707, website-content


--
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] #19683 [Webpages/Website]: Add flag to allow building website without tor docs

2017-07-20 Thread Tor Bug Tracker & Wiki
#19683: Add flag to allow building website without tor docs
--+--
 Reporter:  arthuredelstein   |  Owner:  hiro
 Type:  defect| Status:  assigned
 Priority:  Medium|  Milestone:
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:
 Keywords:  website-bug   |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+--
Changes (by hiro):

 * status:  new => assigned
 * keywords:   => website-bug
 * owner:  arthuredelstein => hiro


--
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] #18870 [Webpages/Website]: add the tor animation video to the top of the overview page?

2017-07-20 Thread Tor Bug Tracker & Wiki
#18870: add the tor animation video to the top of the overview page?
--+--
 Reporter:  arma  |  Owner:  hiro
 Type:  enhancement   | Status:  assigned
 Priority:  Medium|  Milestone:
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:
 Keywords:  website-content, ux-team  |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+--
Changes (by hiro):

 * keywords:   => website-content, ux-team
 * owner:  cypherpunks => hiro


Comment:

 Is this something we still want? I'll be happy to make this happen.

--
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] #18695 [Webpages/Website]: We should have a repository list that includes important external repositories

2017-07-20 Thread Tor Bug Tracker & Wiki
#18695: We should have a repository list that includes important external
repositories
--+-
 Reporter:  nickm |  Owner:  cypherpunks
 Type:  project   | Status:  assigned
 Priority:  Medium|  Milestone:  WebsiteV3
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:
 Keywords:  ux-team, website-content  |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+-
Changes (by hiro):

 * keywords:   => ux-team, website-content
 * milestone:   => WebsiteV3


Comment:

 This is something we could consider in the next website or people page?

--
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] #22923 [Internal Services/Tor Sysadmin Team]: Create a Virtual Machine for Tor Browser Crash Dumps

2017-07-20 Thread Tor Bug Tracker & Wiki
#22923: Create a Virtual Machine for Tor Browser Crash Dumps
-+-
 Reporter:  tom  |  Owner:  tpa
 Type:  defect   | Status:  new
 Priority:  Medium   |  Milestone:
Component:  Internal Services/Tor Sysadmin Team  |Version:
 Severity:  Normal   | Resolution:
 Keywords:   |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-

Comment (by nmago):

 #NodeJS install
 curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
 sudo apt-get install -y nodejs
 sudo apt-get install -y build-essential

 #Grunt install:
 sudo npm --global install grunt

 #Clone repository
 git clone https://github.com/nmago/mini-breakpad-server

 #MBS-View Service
 cd mbs-view/
 npm install .
 grunt
 cd ../
 #test start (on 1127 port by default)
 sudo node mbs-view/lib/app.js

 #MBS-Submit Service
 cd mbs-submit/
 npm install .
 cd ../
 #test start (on 1127 port by default)
 sudo node mbs-submit/lib/app.js

--
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] #18586 [Webpages/Website]: Bug tracker not easy to find

2017-07-20 Thread Tor Bug Tracker & Wiki
#18586: Bug tracker not easy to find
+-
 Reporter:  cypherpunks |  Owner:  cypherpunks
 Type:  defect  | Status:  assigned
 Priority:  Medium  |  Milestone:
Component:  Webpages/Website|Version:
 Severity:  Normal  | Resolution:
 Keywords:  tbb-usability, ux-team  |  Actual Points:
Parent ID:  | Points:
 Reviewer:  |Sponsor:
+-
Changes (by hiro):

 * keywords:  tbb-usability => tbb-usability, ux-team


--
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] #18561 [Webpages/Website]: Prepare press clips to be uploaded to Tor website

2017-07-20 Thread Tor Bug Tracker & Wiki
#18561: Prepare press clips to be uploaded to Tor website
+-
 Reporter:  ailanthus   |  Owner:  cypherpunks
 Type:  enhancement | Status:  closed
 Priority:  Medium  |  Milestone:
Component:  Webpages/Website|Version:
 Severity:  Normal  | Resolution:  fixed
 Keywords:  press room, press clips, media  |  Actual Points:
Parent ID:  | Points:
 Reviewer:  |Sponsor:  None
+-
Changes (by hiro):

 * 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] #18041 [Webpages/Website]: www.torproject.org serves outdated content

2017-07-20 Thread Tor Bug Tracker & Wiki
#18041: www.torproject.org serves outdated content
--+-
 Reporter:  cypherpunks   |  Owner:  cypherpunks
 Type:  defect| Status:  closed
 Priority:  Medium|  Milestone:
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:  wontfix
 Keywords:|  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+-
Changes (by hiro):

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


Comment:

 This list is updated once per day. Closing.

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

Re: [tor-bugs] #22989 [Applications/Tor Browser]: TBB Size 1000x610 Mac

2017-07-20 Thread Tor Bug Tracker & Wiki
#22989: TBB Size 1000x610 Mac
---+---
 Reporter:  Dbryrtfbcbhgf  |  Owner:  tbb-team
 Type:  defect | Status:
   |  needs_information
 Priority:  Medium |  Milestone:
Component:  Applications/Tor Browser   |Version:
 Severity:  Normal | Resolution:
 Keywords:  tbb-fingerprinting-resolution  |  Actual Points:
Parent ID: | Points:
 Reviewer: |Sponsor:
---+---

Comment (by gk):

 Thanks. Could you test Tor Browser with NoScript and/or HTTPS Everywhere
 being disabled? Maybe having their toolbar buttons injected into the
 toolbar is causing this.

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

Re: [tor-bugs] #17413 [Webpages/Website]: Usability of MacOS installation process

2017-07-20 Thread Tor Bug Tracker & Wiki
#17413: Usability of MacOS installation process
-+-
 Reporter:  cypherpunks  |  Owner:
 |  cypherpunks
 Type:  enhancement  | Status:
 |  assigned
 Priority:  Medium   |  Milestone:
 |  WebsiteV3
Component:  Webpages/Website |Version:
 Severity:  Normal   | Resolution:
 Keywords:  ux, usability, documentation,|  Actual Points:
  install, defer-new-website, website-content|
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by hiro):

 * keywords:  ux, usability, documentation, install defer-new-website =>
 ux, usability, documentation, install, defer-new-website, website-
 content
 * milestone:   => WebsiteV3


--
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] #17393 [Webpages/Website]: Make the various javascript on Tor sites be LibreJS-compatible?

2017-07-20 Thread Tor Bug Tracker & Wiki
#17393: Make the various javascript on Tor sites be LibreJS-compatible?
+-
 Reporter:  arma|  Owner:  cypherpunks
 Type:  enhancement | Status:  assigned
 Priority:  Medium  |  Milestone:  WebsiteV3
Component:  Webpages/Website|Version:
 Severity:  Minor   | Resolution:
 Keywords:  defer-new-website, website-bug  |  Actual Points:
Parent ID:  | Points:
 Reviewer:  |Sponsor:
+-
Changes (by hiro):

 * keywords:  defer-new-website => defer-new-website, website-bug


--
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] #17393 [Webpages/Website]: Make the various javascript on Tor sites be LibreJS-compatible?

2017-07-20 Thread Tor Bug Tracker & Wiki
#17393: Make the various javascript on Tor sites be LibreJS-compatible?
---+-
 Reporter:  arma   |  Owner:  cypherpunks
 Type:  enhancement| Status:  assigned
 Priority:  Medium |  Milestone:  WebsiteV3
Component:  Webpages/Website   |Version:
 Severity:  Minor  | Resolution:
 Keywords:  defer-new-website  |  Actual Points:
Parent ID: | Points:
 Reviewer: |Sponsor:
---+-
Changes (by hiro):

 * milestone:   => WebsiteV3


--
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] #17342 [Webpages/Website]: Update hidden service website page with Unix socket info

2017-07-20 Thread Tor Bug Tracker & Wiki
#17342: Update hidden service website page with Unix socket info
--+--
 Reporter:  dgoulet   |  Owner:  hiro
 Type:  enhancement   | Status:  accepted
 Priority:  Medium|  Milestone:
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:
 Keywords:  website-content   |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+--
Changes (by hiro):

 * keywords:   => website-content


--
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] #16576 [Webpages/Website]: Add a 'community projects' list (separate page?) to the website

2017-07-20 Thread Tor Bug Tracker & Wiki
#16576: Add a 'community projects' list (separate page?) to the website
+---
 Reporter:  arma|  Owner:  mrphs
 Type:  task| Status:  new
 Priority:  Medium  |  Milestone:  WebsiteV3
Component:  Webpages/Website|Version:
 Severity:  Normal  | Resolution:
 Keywords:  defer-new-website, ux-team  |  Actual Points:
Parent ID:  | Points:
 Reviewer:  |Sponsor:
+---
Changes (by hiro):

 * milestone:   => WebsiteV3


--
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] #16548 [Webpages/Website]: Change the HS nomenclature from hidden to onion

2017-07-20 Thread Tor Bug Tracker & Wiki
#16548: Change the HS nomenclature from hidden to onion
+--
 Reporter:  saint   |  Owner:
|  cypherpunks
 Type:  task| Status:  assigned
 Priority:  Medium  |  Milestone:
|  WebsiteV3
Component:  Webpages/Website|Version:
 Severity:  Normal  | Resolution:
 Keywords:  defer-new-website, website-content  |  Actual Points:
Parent ID:  | Points:
 Reviewer:  |Sponsor:
+--
Changes (by hiro):

 * keywords:  defer-new-website => defer-new-website, website-content
 * milestone:   => WebsiteV3


--
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] #16546 [Webpages/Website]: Should we move anonbib to the Tor website?

2017-07-20 Thread Tor Bug Tracker & Wiki
#16546: Should we move anonbib to the Tor website?
+-
 Reporter:  nickm   |  Owner:  cypherpunks
 Type:  defect  | Status:  assigned
 Priority:  Medium  |  Milestone:  WebsiteV3
Component:  Webpages/Website|Version:
 Severity:  Normal  | Resolution:
 Keywords:  defer-new-website, ux-team  |  Actual Points:
Parent ID:  | Points:
 Reviewer:  |Sponsor:
+-
Changes (by hiro):

 * milestone:   => WebsiteV3


--
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] #16406 [Webpages/Website]: "Tor" is not listed as a project on torproject.org

2017-07-20 Thread Tor Bug Tracker & Wiki
#16406: "Tor" is not listed as a project on torproject.org
+--
 Reporter:  arthuredelstein |  Owner:
|  cypherpunks
 Type:  enhancement | Status:  assigned
 Priority:  Medium  |  Milestone:
|  WebsiteV3
Component:  Webpages/Website|Version:
 Severity:  Normal  | Resolution:
 Keywords:  defer-new-website, website-content  |  Actual Points:
Parent ID:  | Points:
 Reviewer:  |Sponsor:
+--
Changes (by hiro):

 * keywords:  defer-new-website => defer-new-website, website-content
 * milestone:   => WebsiteV3


--
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] #16261 [Webpages/Website]: Update the "Running a Bridge" section of the website

2017-07-20 Thread Tor Bug Tracker & Wiki
#16261: Update the "Running a Bridge" section of the website
-+-
 Reporter:  isis |  Owner:  isis
 Type:  defect   | Status:  new
 Priority:  Medium   |  Milestone:
Component:  Webpages/Website |Version:
 Severity:  Normal   | Resolution:
 Keywords:  tor-bridges, docs, pts, website- |  Actual Points:
  content|
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by hiro):

 * keywords:  tor-bridges, docs, pts => tor-bridges, docs, pts, website-
 content
 * severity:   => Normal


--
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] #15332 [Webpages/Website]: Redirect /download to /download/download-easy.html

2017-07-20 Thread Tor Bug Tracker & Wiki
#15332: Redirect /download to /download/download-easy.html
--+--
 Reporter:  dcf   |  Owner:  Sebastian
 Type:  enhancement   | Status:  needs_review
 Priority:  Medium|  Milestone:
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:
 Keywords:  website-bug   |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+--
Changes (by hiro):

 * keywords:   => website-bug
 * severity:   => Normal


--
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] #13843 [Webpages/Website]: Add a faq entry for "You should change path selection to avoid entering and exiting from the same country."

2017-07-20 Thread Tor Bug Tracker & Wiki
#13843: Add a faq entry for "You should change path selection to avoid entering 
and
exiting from the same country."
--+-
 Reporter:  arma  |  Owner:  cypherpunks
 Type:  enhancement   | Status:  assigned
 Priority:  Medium|  Milestone:
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:
 Keywords:  website-content   |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+-
Changes (by hiro):

 * keywords:   => website-content
 * severity:   => Normal


--
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] #13665 [Webpages/Website]: Update the obfsbridge setup instructions on the website

2017-07-20 Thread Tor Bug Tracker & Wiki
#13665: Update the obfsbridge setup instructions on the website
--+-
 Reporter:  asn   |  Owner:  cypherpunks
 Type:  task  | Status:  assigned
 Priority:  Medium|  Milestone:
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:
 Keywords:  website-content   |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+-
Changes (by hiro):

 * keywords:  #website-content => website-content


--
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] #13591 [Webpages/Website]: Need update to bridge deploy doc

2017-07-20 Thread Tor Bug Tracker & Wiki
#13591: Need update to bridge deploy doc
--+-
 Reporter:  tmpname0901   |  Owner:  cypherpunks
 Type:  enhancement   | Status:  assigned
 Priority:  Medium|  Milestone:
Component:  Webpages/Website  |Version:
 Severity:  Normal| Resolution:
 Keywords:  website-content   |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+-
Changes (by hiro):

 * keywords:  #website-content => website-content


--
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] #10990 [Webpages/Website]: Shrink the FAQ

2017-07-20 Thread Tor Bug Tracker & Wiki
#10990: Shrink the FAQ
---+--
 Reporter:  mttp   |  Owner:  mttp
 Type:  defect | Status:  new
 Priority:  Medium |  Milestone:
Component:  Webpages/Website   |Version:
 Severity:  Normal | Resolution:
 Keywords:  SponsorO, website-content  |  Actual Points:
Parent ID: | Points:
 Reviewer: |Sponsor:
---+--
Changes (by hiro):

 * keywords:  SponsorO, #website-content => SponsorO, website-content


--
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] #21814 [Core Tor/Tor]: Reduce binary size for client-only tor

2017-07-20 Thread Tor Bug Tracker & Wiki
#21814: Reduce binary size for client-only tor
-+
 Reporter:  arthuredelstein  |  Owner:
 Type:  task | Status:  new
 Priority:  Medium   |  Milestone:  Tor: 0.3.2.x-final
Component:  Core Tor/Tor |Version:
 Severity:  Normal   | Resolution:
 Keywords:   |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:  Sponsor8-can
-+
Changes (by nickm):

 * sponsor:   => Sponsor8-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] #22989 [Applications/Tor Browser]: TBB Size 1000x610 Mac

2017-07-20 Thread Tor Bug Tracker & Wiki
#22989: TBB Size 1000x610 Mac
---+---
 Reporter:  Dbryrtfbcbhgf  |  Owner:  tbb-team
 Type:  defect | Status:
   |  needs_information
 Priority:  Medium |  Milestone:
Component:  Applications/Tor Browser   |Version:
 Severity:  Normal | Resolution:
 Keywords:  tbb-fingerprinting-resolution  |  Actual Points:
Parent ID: | Points:
 Reviewer: |Sponsor:
---+---

Comment (by Dbryrtfbcbhgf):

 After I deleted all the Firefox preference files I got these results.
 Browser window width:   1000
 Browser window height:  600
 I retested Tor browser bundle 7.0.2 and still got the same results.
 Browser window width:   1000
 Browser window height:  610

--
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] #22989 [Applications/Tor Browser]: TBB Size 1000x610 Mac

2017-07-20 Thread Tor Bug Tracker & Wiki
#22989: TBB Size 1000x610 Mac
---+---
 Reporter:  Dbryrtfbcbhgf  |  Owner:  tbb-team
 Type:  defect | Status:
   |  needs_information
 Priority:  Medium |  Milestone:
Component:  Applications/Tor Browser   |Version:
 Severity:  Normal | Resolution:
 Keywords:  tbb-fingerprinting-resolution  |  Actual Points:
Parent ID: | Points:
 Reviewer: |Sponsor:
---+---

Comment (by gk):

 Replying to [comment:8 Dbryrtfbcbhgf]:
 >  I had the stable version of Firefox installed before a test at the
 Beta,  I can retry to test by first deleting all of Firefox  preference
 files,

 That might help. Or just creating a new profile via `about:profiles` and
 using that one for the test. 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] #22989 [Applications/Tor Browser]: TBB Size 1000x610 Mac

2017-07-20 Thread Tor Bug Tracker & Wiki
#22989: TBB Size 1000x610 Mac
---+---
 Reporter:  Dbryrtfbcbhgf  |  Owner:  tbb-team
 Type:  defect | Status:
   |  needs_information
 Priority:  Medium |  Milestone:
Component:  Applications/Tor Browser   |Version:
 Severity:  Normal | Resolution:
 Keywords:  tbb-fingerprinting-resolution  |  Actual Points:
Parent ID: | Points:
 Reviewer: |Sponsor:
---+---

Comment (by Dbryrtfbcbhgf):

 I had the stable version of Firefox installed before a test at the Beta,
 I can retry to test by first deleting all of Firefox  preference files,

--
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] #22985 [Applications/Tor Browser]: Can we simplify and clarify click-to-play of audio/video?

2017-07-20 Thread Tor Bug Tracker & Wiki
#22985: Can we simplify and clarify click-to-play of audio/video?
-+-
 Reporter:  arthuredelstein  |  Owner:  tbb-
 |  team
 Type:  defect   | Status:  new
 Priority:  Medium   |  Milestone:
Component:  Applications/Tor Browser |Version:
 Severity:  Normal   | Resolution:
 Keywords:  tbb-usability, tbb-security, ux- |  Actual Points:
  team   |
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-

Comment (by cypherpunks):

 Thanks Arthur for bringing this important usability issue to note!

 For me, I always use the NoScript icon >> "Blocked Objects" >>
 "Temporarily allow *@https://www.youtube.com;. This requires only 1 click
 and enables both audio+video (whereas with click-to-play one has to
 individually allow video and audio).

 However for non-technical persons this isn't obvious at first sight.
 Fixing this will involve having to change NoScript's UX so that a
 "Temporarily allow videos and audio from www.youtube.com" shows up that
 the user can easily understand and toggle to meet his needs.

--
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] #22923 [Internal Services/Tor Sysadmin Team]: Create a Virtual Machine for Tor Browser Crash Dumps

2017-07-20 Thread Tor Bug Tracker & Wiki
#22923: Create a Virtual Machine for Tor Browser Crash Dumps
-+-
 Reporter:  tom  |  Owner:  tpa
 Type:  defect   | Status:  new
 Priority:  Medium   |  Milestone:
Component:  Internal Services/Tor Sysadmin Team  |Version:
 Severity:  Normal   | Resolution:
 Keywords:   |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-

Comment (by weasel):

 This would be easier with a bit more extra HW.  I asked execdir if we can
 order some.

--
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] #22983 [Metrics/metrics-lib]: add a descriptor interface and implementation for web-logs

2017-07-20 Thread Tor Bug Tracker & Wiki
#22983: add a descriptor interface and implementation for web-logs
-+--
 Reporter:  iwakeh   |  Owner:  metrics-team
 Type:  enhancement  | Status:  new
 Priority:  Medium   |  Milestone:
Component:  Metrics/metrics-lib  |Version:
 Severity:  Normal   | Resolution:
 Keywords:   |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+--

Comment (by iwakeh):

 Well, metrics-lib doesn't need to 'read' the contents of the logs.  Thus,
 the 'raw bytes' could be from the compressed content for now.  Using the
 compressed content might be the most efficient in terms of runtime memory
 and development hassle.

 A list of interface methods without the methods from `Descriptor`:

 * getMeasuringHost (taken from path, i.e. the immediate parent folder
 name)
 * getServedHost (first part up to a dash of the filename)
 * getLogDate  (filename's last part before extension)
 * getCompressionType (the compression type of the raw bytes, taken from
 the file extension)

 Maybe also for convenience
 * getUncompressedData (with a comment warning about the possibly huge
 deflate size)

 What is missing?

--
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] #22988 [Internal Services/Service - trac]: Make all trac child tickets have the same headers and inherit fields

2017-07-20 Thread Tor Bug Tracker & Wiki
#22988: Make all trac child tickets have the same headers and inherit fields
--+-
 Reporter:  teor  |  Owner:  qbi
 Type:  enhancement   | Status:  new
 Priority:  Medium|  Milestone:
Component:  Internal Services/Service - trac  |Version:
 Severity:  Normal| Resolution:
 Keywords:|  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+-

Comment (by dgoulet):

 For the `milestone` field, as long as we can change it the child after. I
 did have tickets that had was a parent and was set to 032 but one of the
 child in 031. It would really be annoying if the child inherited fields
 can't be changed and are stuck with the value of the parent.

--
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] #22963 [Core Tor/Tor]: Make relay integrity digests harder to guess by padding cells with random bytes

2017-07-20 Thread Tor Bug Tracker & Wiki
#22963: Make relay integrity digests harder to guess by padding cells with 
random
bytes
--+
 Reporter:  teor  |  Owner:
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:  Tor: 0.3.2.x-final
Component:  Core Tor/Tor  |Version:
 Severity:  Normal| Resolution:
 Keywords:  security  |  Actual Points:
Parent ID:  #22948| Points:
 Reviewer:|Sponsor:
--+

Comment (by cypherpunks):

 Replying to [comment:4 teor]:
 > Replying to [comment:3 cypherpunks]:
 > > Replying to [comment:2 teor]:
 > > > we want that space to add future fields in
 > > No, that's not a concern. It's easy to transmit whatever future stuff
 may be wanted by using structure in the 'randomness', i.e. the way relays
 currently recognize cells that are for them.
 >
 > This makes it hard to do what we did when we added IPv6 Exits, which was
 to add a field with bits:
 > 0: Use IPv4
 > 0: Don't use IPv6
 > 0: Prefer IPv6
 >
 > This worked because the field was zero in the old version of the cell.
 >
 > If it were random, then old clients would get a random selection of
 these options.
 > And at least one option combination is non-functional on most sites
 (110) and several are either nonsensical or non-functional (1x0, x01,
 00x).
 Random data can be replaced with encrypted authenticated data, which can
 be recognized as non-random by implementations that support it, keeping
 compatibility with implementations that do use actual random data. Relays
 currently recognize cells that are for them in this way.
 > > And remember that the spec says it should be random, so other
 implementations will have made it random.
 >
 > The spec says that padding cells should be filled with random bytes (but
 tor doesn't do this, see #22948). But it says fixed-length non-padding
 cells should be filled with zeroes after their payload. This ticket is
 about changing the non-padding cell case.
 Cells may be full, in which case user data will be there.

--
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] #22055 [- Select a component]: Tor is going to be banned in Russia

2017-07-20 Thread Tor Bug Tracker & Wiki
#22055: Tor is going to be banned in Russia
--+---
 Reporter:  cypherpunks   |  Owner:
 Type:  defect| Status:  closed
 Priority:  Medium|  Milestone:
Component:  - Select a component  |Version:
 Severity:  Normal| Resolution:  not a bug
 Keywords:|  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+---

Comment (by cypherpunks):

 «Борец за свободу далеко не всегда свободный человек. Точнее, никогда.
 Особенно если он борется за свободу людей, которым она не нужна. В нашей
 стране, в наше время, при наших обстоятельствах путь к свободе очень
 прост. Надо понять и осознать: нет ни малейшего смысла гадать, что еще
 учудят тоталитарная власть и тоталитарный социум. И еще меньше смысла в
 том, чтобы оценивать их по совершенно чуждым им критериям. Власть и социум
 на всех уровнях будут с кем угодно делать то, что захотят. Ни правовых, ни
 моральных ограничений у них нет, повлиять на них невозможно. Договориться
 с ними немыслимо. Предсказать их действия не так уж сложно, но эти
 прогнозы никак не будут способствовать выживанию.

 Самое пустое и бессмысленное – возмущение и обличение, которые заменяют
 анализ действий власти и социума. Власть умна, хитра, изобретательна и
 манипулирует обличителями, обращая их действия в свою пользу. Так она
 формирует саморегулирующийся социум. Еще глупее – пытаться понравиться
 власти и приспособиться к общественным условиям: это только вызовет
 подозрения. Равно гибельны противостояние и коллаборационизм,
 нонконформизм и адаптация.

 Осознание всего этого дарует человеку свободу. Он более не должен ни
 обличать, ни приспосабливаться. Каждую минуту он может быть раздавлен,
 унижен, лишиться близких и имущества, как бы он себя ни вел, что бы ни
 делал. Правил, договоров, обязательств нет. Это и есть настоящая свобода –
 за минуту до неотвратимой гибели, физической или социальной – и минута эта
 может длиться всю жизнь.

 Вот только все это – ни о ком и ни о чем. Абсолютное большинство людей не
 замечает ни власти, ни социума, пребывая с ними в единстве и гармонии. А
 те, кто чувствует себя иначе, не существуют ни для власти, ни для
 окружающих. Власть и социум выбирают жертв и назначают героев
 сопротивления сами, исходя из собственных нужд и интересов.

 Быть свободным в подобных условиях – тяжкий и неблагодарный труд, не
 имеющий никакой общественной миссии. Но невозможно отнять свободу выбора
 такой участи.»

--
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] #22963 [Core Tor/Tor]: Make relay integrity digests harder to guess by padding cells with random bytes

2017-07-20 Thread Tor Bug Tracker & Wiki
#22963: Make relay integrity digests harder to guess by padding cells with 
random
bytes
--+
 Reporter:  teor  |  Owner:
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:  Tor: 0.3.2.x-final
Component:  Core Tor/Tor  |Version:
 Severity:  Normal| Resolution:
 Keywords:  security  |  Actual Points:
Parent ID:  #22948| Points:
 Reviewer:|Sponsor:
--+

Comment (by teor):

 Replying to [comment:3 cypherpunks]:
 > Replying to [comment:2 teor]:
 > > we want that space to add future fields in
 > No, that's not a concern. It's easy to transmit whatever future stuff
 may be wanted by using structure in the 'randomness', i.e. the way relays
 currently recognize cells that are for them.

 This makes it hard to do what we did when we added IPv6 Exits, which was
 to add a field with bits:
 0: Use IPv4
 0: Don't use IPv6
 0: Prefer IPv6

 This worked because the field was zero in the old version of the cell.

 If it were random, then old clients would get a random selection of these
 options.
 And at least one option combination is non-functional on most sites (110)
 and several are either nonsensical or non-functional (1x0, x01, 00x).

 > And remember that the spec says it should be random, so other
 implementations will have made it random.

 The spec says that padding cells should be filled with random bytes (but
 tor doesn't do this, see #22948). But it says fixed-length non-padding
 cells should be filled with zeroes after their payload. This ticket is
 about changing the non-padding cell case.

--
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] #21830 [Applications/Tor Browser]: Copying large text from web console leaks to /tmp

2017-07-20 Thread Tor Bug Tracker & Wiki
#21830: Copying large text from web console leaks to /tmp
-+-
 Reporter:  gk   |  Owner:  neillm
 Type:  defect   | Status:
 |  needs_review
 Priority:  Medium   |  Milestone:
Component:  Applications/Tor Browser |Version:
 Severity:  Normal   | Resolution:
 Keywords:  tbb-disk-leak,   |  Actual Points:
  TorBrowserTeam201707R  |
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by gk):

 * keywords:  tbb-disk-leak => tbb-disk-leak, TorBrowserTeam201707R
 * status:  needs_information => 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] #21830 [Applications/Tor Browser]: Copying large text from web console leaks to /tmp

2017-07-20 Thread Tor Bug Tracker & Wiki
#21830: Copying large text from web console leaks to /tmp
--+---
 Reporter:  gk|  Owner:  neillm
 Type:  defect| Status:  needs_information
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal| Resolution:
 Keywords:  tbb-disk-leak |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+---

Comment (by neillm):

 Replying to [comment:9 gk]:
 > Thanks. Did you build a complete new Tor Browser bundle for that (if so,
 could you make it available for us to test your patch) or just the browser
 part copying the result over in an already existing Tor Browser? Or did
 you something else?

 In the interest of time, I built the gitian-builder/inputs/tor-browser
 source tree alone for testing and configured the SOCKS5 proxy to
 localhost:9050, as I ran into unrelated issues doing the tor-browser-
 bundle/gitian 'make' route.

--
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] #22895 [Core Tor/Tor]: Unused variables in donna's SSE2 header

2017-07-20 Thread Tor Bug Tracker & Wiki
#22895: Unused variables in donna's SSE2 header
-+-
 Reporter:  cypherpunks  |  Owner:
 Type:  defect   | Status:
 |  needs_review
 Priority:  Medium   |  Milestone:  Tor:
 |  0.3.2.x-final
Component:  Core Tor/Tor |Version:  Tor:
 |  0.2.7.2-alpha
 Severity:  Normal   | Resolution:
 Keywords:  027-backport, 028-backport,  |  Actual Points:
  029-backport, 030-backport, 031-backport,  |
  compile, warning, 32bit, ed25519, review-  |
  group-21   |
Parent ID:   | Points:
 Reviewer:  asn  |Sponsor:
-+-

Comment (by asn):

 Branch looks good to me. The variables removed are indeed unused.

 However, I wanted to compile the patch to check that it indeed fixes the
 gcc warnings. Can anyone help me compile tor in 32-bit mode? IIUC I should
 be doing `./configure --host=i686-linux-gnu "CFLAGS=-m32" && make`, but
 when I did that the configure script was complaining that it can't find my
 libevent. Is that the correct way to do it, and I just need to get a
 32-bit libevent or something? If someone helps me do this, I promise I'm
 gonna transcribe the process to `doc/HACKING/` for future generations to
 be able to do it 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] #22963 [Core Tor/Tor]: Make relay integrity digests harder to guess by padding cells with random bytes

2017-07-20 Thread Tor Bug Tracker & Wiki
#22963: Make relay integrity digests harder to guess by padding cells with 
random
bytes
--+
 Reporter:  teor  |  Owner:
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:  Tor: 0.3.2.x-final
Component:  Core Tor/Tor  |Version:
 Severity:  Normal| Resolution:
 Keywords:  security  |  Actual Points:
Parent ID:  #22948| Points:
 Reviewer:|Sponsor:
--+

Comment (by cypherpunks):

 Replying to [comment:2 teor]:
 > we want that space to add future fields in
 No, that's not a concern. It's easy to transmit whatever future stuff may
 be wanted by using structure in the 'randomness', i.e. the way relays
 currently recognize cells that are for them. And remember that the spec
 says it should be random, so other implementations will have made it
 random.

--
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] #22989 [Applications/Tor Browser]: TBB Size 1000x610 Mac

2017-07-20 Thread Tor Bug Tracker & Wiki
#22989: TBB Size 1000x610 Mac
---+---
 Reporter:  Dbryrtfbcbhgf  |  Owner:  tbb-team
 Type:  defect | Status:
   |  needs_information
 Priority:  Medium |  Milestone:
Component:  Applications/Tor Browser   |Version:
 Severity:  Normal | Resolution:
 Keywords:  tbb-fingerprinting-resolution  |  Actual Points:
Parent ID: | Points:
 Reviewer: |Sponsor:
---+---

Comment (by gk):

 Hm. Where does that "startpages" item come from? Is that a toolbar that is
 on by default? I wonder whether an older Firefox you had on your computer
 could cause this and thus interfere with the test.

--
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] #22831 [Applications/Tor Browser]: Merge Snowflake for mac

2017-07-20 Thread Tor Bug Tracker & Wiki
#22831: Merge Snowflake for mac
-+--
 Reporter:  dcf  |  Owner:  tbb-team
 Type:  task | Status:  closed
 Priority:  Medium   |  Milestone:
Component:  Applications/Tor Browser |Version:
 Severity:  Normal   | Resolution:  fixed
 Keywords:  snowflake TorBrowserTeam201707R  |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+--

Comment (by gk):

 Thanks for catching that, boklm. I made a follow-up commit to `tor-
 browser-bundle` omitting that line (commit
 135c3c89fcc2d2a523d0473a2ac5107bb47bd904).

--
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] #21321 [Applications/Tor Browser]: .onion HTTP is shown as non-secure in Tor Browser

2017-07-20 Thread Tor Bug Tracker & Wiki
#21321: .onion HTTP is shown as non-secure in Tor Browser
-+-
 Reporter:  cypherpunks  |  Owner:  tbb-
 |  team
 Type:  task | Status:  new
 Priority:  High |  Milestone:
Component:  Applications/Tor Browser |Version:
 Severity:  Blocker  | Resolution:
 Keywords:  ff52-esr, tbb-7.0-issues, tbb-   |  Actual Points:
  usability, ux-team, TorBrowserTeam201707,  |
  GeorgKoppen201707  |
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-

Comment (by gk):

 Okay, just as an update on where we are with this issue. I have a
 workaround for the password part which I will post for review in a child
 ticket. While working on this I thought about good ways of upstreaming
 this patch and generally of a way to get .onion URLs not treated as non-
 secure anymore.

 The tricky thing is that there is a spec behind defining what secure
 contexts are (see: https://w3c.github.io/webappsec-secure-contexts/) and,
 looking at the algorithm defining "secure context", getting .onion domains
 treated as such is not going to fly without a spec change. I'd assume a
 lot of the stakeholders would show quite some resistance to that (probably
 with some good reasons).

 But we might be able to bypass that hassle by using other means provided
 in that spec, in particular treating .onions as potentially trustworthy
 origins (https://w3c.github.io/webappsec-secure-contexts/#is-origin-
 trustworthy):
 {{{
 A potentially trustworthy origin is one which a user agent can generally
 trust as delivering data securely.

 This algorithms considers certain hosts, scheme, and origins as
 potentially trustworthy, even though they might not be authenticated and
 encrypted in the traditional sense.
 }}}
 Mozilla folks indicated they would be amenable to this idea, which is very
 exciting. The upstream bug for that is
 https://bugzilla.mozilla.org/show_bug.cgi?id=1382359. Not sure if I get to
 rewriting my patches according to that idea before the next Tor Browser
 release. But the plan is to have this upstream bug fixed for esr59 at
 least.

--
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] #22989 [Applications/Tor Browser]: TBB Size 1000x610 Mac

2017-07-20 Thread Tor Bug Tracker & Wiki
#22989: TBB Size 1000x610 Mac
---+---
 Reporter:  Dbryrtfbcbhgf  |  Owner:  tbb-team
 Type:  defect | Status:
   |  needs_information
 Priority:  Medium |  Milestone:
Component:  Applications/Tor Browser   |Version:
 Severity:  Normal | Resolution:
 Keywords:  tbb-fingerprinting-resolution  |  Actual Points:
Parent ID: | Points:
 Reviewer: |Sponsor:
---+---

Comment (by Dbryrtfbcbhgf):

 Replying to [comment:5 gk]:
 > Interesting. Do you feel like you could test a vanilla Firefox beta
 (55b10) which is containing the same patches we ship. You can find it on
 https://ftp.mozilla.org/pub/firefox/releases/55.0b10/mac/en-US/. After
 first start you need to enable fingerprinting resistance by setting
 `privacy.resistFingerprinting` to `true`. After restarting could you make
 your test again and share the results in this ticket?
 I followed all the above directions and here are my results.
  Browser window width:  1000
 Browser window height:  597

--
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] #22989 [Applications/Tor Browser]: TBB Size 1000x610 Mac

2017-07-20 Thread Tor Bug Tracker & Wiki
#22989: TBB Size 1000x610 Mac
---+---
 Reporter:  Dbryrtfbcbhgf  |  Owner:  tbb-team
 Type:  defect | Status:
   |  needs_information
 Priority:  Medium |  Milestone:
Component:  Applications/Tor Browser   |Version:
 Severity:  Normal | Resolution:
 Keywords:  tbb-fingerprinting-resolution  |  Actual Points:
Parent ID: | Points:
 Reviewer: |Sponsor:
---+---

Comment (by gk):

 Interesting. Do you feel like you could test a vanilla Firefox beta
 (55b10) which is containing the same patches we ship. You can find it on
 https://ftp.mozilla.org/pub/firefox/releases/55.0b10/mac/en-US/. After
 first start you need to enable fingerprinting resistance by setting
 `privacy.resistFingerprinting` to `true`. After restarting could you make
 your test again and share the results in this 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] #21830 [Applications/Tor Browser]: Copying large text from web console leaks to /tmp

2017-07-20 Thread Tor Bug Tracker & Wiki
#21830: Copying large text from web console leaks to /tmp
--+---
 Reporter:  gk|  Owner:  neillm
 Type:  defect| Status:  needs_information
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal| Resolution:
 Keywords:  tbb-disk-leak |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+---
Changes (by gk):

 * status:  assigned => needs_information


Comment:

 Thanks. Did you build a complete new Tor Browser bundle for that (if so,
 could you make it available for us to test your patch) or just the browser
 part copying the result over in an already existing Tor Browser? Or did
 you something else?

--
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] #22989 [Applications/Tor Browser]: TBB Size 1000x610 Mac

2017-07-20 Thread Tor Bug Tracker & Wiki
#22989: TBB Size 1000x610 Mac
---+---
 Reporter:  Dbryrtfbcbhgf  |  Owner:  tbb-team
 Type:  defect | Status:
   |  needs_information
 Priority:  Medium |  Milestone:
Component:  Applications/Tor Browser   |Version:
 Severity:  Normal | Resolution:
 Keywords:  tbb-fingerprinting-resolution  |  Actual Points:
Parent ID: | Points:
 Reviewer: |Sponsor:
---+---

Comment (by Dbryrtfbcbhgf):

 Replying to [comment:3 gk]:
 > I wonder if that's a new problem with Tor Browser 7. Could you test with
 an older one (e.g. 6.5.2)? See: https://archive.torproject.org/tor-
 package-archive/torbrowser/6.5.2/ for bundles. Make sure your test session
 starts without the security-slider-hint-notification bar which you see on
 the very first start.
 I tested version 6.5.2 and attached a photo of the results.
 Browser window width:   1000
 Browser window height:  609

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