Re: [tor-bugs] #18361 [Applications/Tor Browser]: Issues with corporate censorship and mass surveillance

2016-06-08 Thread Tor Bug Tracker & Wiki
#18361: Issues with corporate censorship and mass surveillance
--+--
 Reporter:  ioerror   |  Owner:  tbb-team
 Type:  enhancement   | Status:  new
 Priority:  High  |  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Critical  | Resolution:
 Keywords:  security, privacy, anonymity  |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:  None
--+--

Comment (by to1):

 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] #17688 [Core Tor/Tor]: Our default Guard value is still 3 if no latest consensus or no params

2016-06-08 Thread Tor Bug Tracker & Wiki
#17688: Our default Guard value is still 3 if no latest consensus or no params
--+
 Reporter:  dgoulet   |  Owner:
 Type:  defect| Status:  merge_ready
 Priority:  High  |  Milestone:  Tor: 0.2.9.x-final
Component:  Core Tor/Tor  |Version:
 Severity:  Major | Resolution:
 Keywords:  guard, tor-guards-revamp  |  Actual Points:  0.1
Parent ID:| Points:  1
 Reviewer:|Sponsor:  SponsorU-can
--+
Changes (by andrea):

 * status:  needs_review => merge_ready


Comment:

 This is a straightforward change to the default to use when the relevant
 consensus parameter is missing.  Recommend merge.

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


[tor-bugs] #19362 [Applications/Tor Browser]: Linux-64 Tor Browser 6.0.1 performance is so terrible it is a security vulnerabality

2016-06-08 Thread Tor Bug Tracker & Wiki
#19362: Linux-64 Tor Browser 6.0.1 performance is so terrible it is a security
vulnerabality
--+--
 Reporter:  49ax56xr36|  Owner:  tbb-team
 Type:  defect| Status:  new
 Priority:  High  |  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Major |   Keywords:
Actual Points:|  Parent ID:
   Points:|   Reviewer:
  Sponsor:|
--+--
 Linux 64-bit 6.0.1 release performance is so bad it will compel users to
 stay on 5.5.5.

 Unusable on a single core 2.3GHz CPU, 1G free memory, "medium-high"
 security slider.  Just as bad with or without Javascript enabled.

 Unacceptable.

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


Re: [tor-bugs] #18320 [Core Tor/Tor]: Clear old entries from the key-pinning journal file

2016-06-08 Thread Tor Bug Tracker & Wiki
#18320: Clear old entries from the key-pinning journal file
+--
 Reporter:  teor|  Owner:  andrea
 Type:  defect  | Status:  needs_review
 Priority:  Medium  |  Milestone:  Tor:
Component:  Core Tor/Tor|  0.2.9.x-final
 Severity:  Normal  |Version:
 Keywords:  tor-dos, TorCoreTeam201606  | Resolution:
Parent ID:  #17293  |  Actual Points:
 Reviewer:  | Points:  3
|Sponsor:  SponsorU-can
+--
Changes (by andrea):

 * status:  assigned => needs_review


Comment:

 Proposed fix in my ticket18320_squashed branch, including new unit test.
 There are two relevant things worth considering whether to adjust here:

  * How often should we prune?  Right now we invoke the pruner each time a
 dirauth starts up, before loading the keypinning journal.
  * What should we do if we encounter problems while writing the pruned
 keypinning journal?  See new comment from keypin.c:

 {{{
 676 /*
 677  * Loading into the pruner succeeded; truncate the old file and
 emit
 678  *
 679  * The output should always be smaller than the original file was,
 but
 680  * under really pessimal circumstances, something else might
 gobble up
 681  * a lot of disk space before we're done emitting and we might
 fail to
 682  * emit and end up losing the journal.
 683  *
 684  * The alternative would be to emit to a temp file and then only
 delete
 685  * the old journal when we've written the new one, but then we
 might fail
 686  * to prune when disk space is tight.
 687  */
 }}}

 This has been tested using a small alternate dirauth set as well as the
 unit test for the pruner.

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


Re: [tor-bugs] #19317 [Metrics/CollecTor]: Sanitize TCP ports in bridge descriptors

2016-06-08 Thread Tor Bug Tracker & Wiki
#19317: Sanitize TCP ports in bridge descriptors
---+-
 Reporter:  karsten|  Owner:
 Type:  enhancement| Status:  new
 Priority:  Medium |  Milestone:
Component:  Metrics/CollecTor  |Version:
 Severity:  Normal | Resolution:
 Keywords: |  Actual Points:
Parent ID: | Points:
 Reviewer: |Sponsor:
---+-

Comment (by teor):

 Replying to [comment:2 karsten]:
 > Huh, good point, didn't think of that.  How about we make the following
 two changes, one related to your suggestion and one unrelated?
 >
 >  - Take out the `% 65535 + 1` part to make this calculation a little
 less complicated, at the risk of accidentally changing 1 in 2^16^ ports to
 0.

 I think that a 0 port has a special meaning (not configured) and we need
 to preserve that.
 I'm comfortable with the extra complexity. But I'm not the one who has to
 code or maintain it, so it's up to you.

 >  - Add clarifying sentence: "All calculations assume that inputs and
 outputs are in network byte order."  Does that make sense, or is there a
 better sentence to add here?  (We'll want to add a similar sentence to the
 IP address sanitizing part.)

 Hmm, network byte order is only meaningful for integers, and it's
 important only when they are hashed, or otherwise interpreted as an array
 of bytes. So it only affects the port (16 bit integer) and IPv4 address
 (32 bit integer).

 All the other hash inputs and outputs have a defined order already - the
 order in memory.

 So I'm not sure if this sentence would add more confusion - maybe it's
 just worth clarifying the integer inputs?

 > New paragraph would be:
 >
 >  - Each non-zero TCP port is replaced with `H(port | bridge identity |
 secret)[:2]` written as decimal number.  The input `port` is the 2-byte
 long binary representation of the TCP port.  The `bridge identity` is the
 20-byte long binary representation of the bridge's long-term identity
 fingerprint.  The `secret` is a 33-byte long secure random string that
 changes once per month for all descriptors and statuses published in that
 month.  `H()` is SHA-256.  The `[:2]` operator means that we pick the 2
 most significant bytes of the result.  All operations assume network byte
 order for their inputs and outputs.  TCP ports that are 0 in the original
 descriptor are left unchanged.

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


Re: [tor-bugs] #16801 [Core Tor/Tor]: Increase torgzip coverage as high as possible

2016-06-08 Thread Tor Bug Tracker & Wiki
#16801: Increase torgzip coverage as high as possible
-+-
 Reporter:  nickm|  Owner:  nickm
 Type:  defect   | Status:
 Priority:  Medium   |  needs_review
Component:  Core Tor/Tor |  Milestone:  Tor:
 Severity:  Normal   |  0.2.9.x-final
 Keywords:  testing, 028-triage, tor-tests-  |Version:
  coverage, tor-tests-unit TorCoreTeam201606 | Resolution:
Parent ID:  #17289   |  Actual Points:  .2
 Reviewer:  nick | Points:  1
 |Sponsor:
 |  SponsorS-can
-+-
Changes (by nickm):

 * keywords:  testing, 028-triage, tor-tests-coverage, tor-tests-unit =>
 testing, 028-triage, tor-tests-coverage, tor-tests-unit
 TorCoreTeam201606
 * status:  accepted => needs_review
 * milestone:   => Tor: 0.2.9.x-final
 * actualpoints:   => .2


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


Re: [tor-bugs] #16801 [Core Tor/Tor]: Increase torgzip coverage as high as possible

2016-06-08 Thread Tor Bug Tracker & Wiki
#16801: Increase torgzip coverage as high as possible
-+-
 Reporter:  nickm|  Owner:  nickm
 Type:  defect   | Status:
 Priority:  Medium   |  accepted
Component:  Core Tor/Tor |  Milestone:
 Severity:  Normal   |Version:
 Keywords:  testing, 028-triage, tor-tests-  | Resolution:
  coverage, tor-tests-unit   |  Actual Points:
Parent ID:  #17289   | Points:  1
 Reviewer:  nick |Sponsor:
 |  SponsorS-can
-+-
Changes (by nickm):

 * owner:   => nickm
 * status:  new => accepted
 * severity:   => Normal
 * reviewer:   => nick


Comment:

 I've made a start here with my branch `zlib_coverage`.  It focuses on
 stuff that's not covered by unit or integration tests.  It gets coverage
 from "make check" on torgzip.c up over 80%

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


Re: [tor-bugs] #19361 [Core Tor/Tor]: Improve coverage on compat_*threads and workqueue

2016-06-08 Thread Tor Bug Tracker & Wiki
#19361: Improve coverage on compat_*threads and workqueue
--+
 Reporter:  nickm |  Owner:  nickm
 Type:  enhancement   | Status:
 Priority:  Medium|  needs_review
Component:  Core Tor/Tor  |  Milestone:  Tor:
 Severity:  Normal|  0.2.9.x-final
 Keywords:  tor-unit-tests TorCoreTeam201606  |Version:
Parent ID:  #16798| Resolution:
 Reviewer:|  Actual Points:  .1
  | Points:  .1
  |Sponsor:  SponsorS-
  |  can
--+
Changes (by nickm):

 * keywords:  tor-unit-tests => tor-unit-tests TorCoreTeam201606


--
Ticket URL: 
Tor Bug Tracker & Wiki 
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] #19361 [Core Tor/Tor]: Improve coverage on compat_*threads and workqueue

2016-06-08 Thread Tor Bug Tracker & Wiki
#19361: Improve coverage on compat_*threads and workqueue
--+
 Reporter:  nickm |  Owner:  nickm
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:  Tor: 0.2.9.x-final
Component:  Core Tor/Tor  |Version:
 Severity:  Normal|   Keywords:  tor-unit-tests
Actual Points:  .1|  Parent ID:  #16798
   Points:  .1|   Reviewer:
  Sponsor:  SponsorS-can  |
--+
 See my branch `thread_coverage`. It solves some but not all of #16798

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


Re: [tor-bugs] #19361 [Core Tor/Tor]: Improve coverage on compat_*threads and workqueue

2016-06-08 Thread Tor Bug Tracker & Wiki
#19361: Improve coverage on compat_*threads and workqueue
+
 Reporter:  nickm   |  Owner:  nickm
 Type:  enhancement | Status:  needs_review
 Priority:  Medium  |  Milestone:  Tor: 0.2.9.x-final
Component:  Core Tor/Tor|Version:
 Severity:  Normal  | Resolution:
 Keywords:  tor-unit-tests  |  Actual Points:  .1
Parent ID:  #16798  | Points:  .1
 Reviewer:  |Sponsor:  SponsorS-can
+
Changes (by nickm):

 * status:  new => needs_review
 * type:  defect => enhancement


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


Re: [tor-bugs] #19335 [Applications/Tor Browser]: Tor circuit not displayed

2016-06-08 Thread Tor Bug Tracker & Wiki
#19335: Tor circuit not displayed
-+-
 Reporter:  axdoomer |  Owner:  tbb-
 Type:  defect   |  team
 Priority:  Medium   | Status:
Component:  Applications/Tor Browser |  needs_information
 Severity:  Normal   |  Milestone:
 Keywords:  tbb-circuit-display, tbb-6.0-issues  |Version:
Parent ID:   | Resolution:
 Reviewer:   |  Actual Points:
 | Points:
 |Sponsor:
-+-

Comment (by arthuredelstein):

 This probably indicates an error in torbutton. Could you open the browser
 console (Tools > Web Developer > Browser console) and paste any errors you
 see after starting Tor Browser and opening a single website? 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] #19354 [User Experience/Website]: Remove Tor Weather reference from T-Shirt page

2016-06-08 Thread Tor Bug Tracker & Wiki
#19354: Remove Tor Weather reference from T-Shirt page
-+---
 Reporter:  mo   |  Owner:  Sebastian
 Type:  defect   | Status:  new
 Priority:  Low  |  Milestone:
Component:  User Experience/Website  |Version:
 Severity:  Normal   | Resolution:
 Keywords:   |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+---

Comment (by tscpd):

 irc oftc tor-project 2016 Jun, 8th:
 {{{
 (18:40:40) gamambel: someone should probably reply to the "tor weather has
 been discontinued" thread on tor-relays
 (18:41:48) gamambel: i am tired of suggesting an auto-reply for tshirts@,
 and i don't want to make that decision.
 (18:43:55) ahf: gamambel: t-shirts are no longer being send out for
 hosting relays?
 (18:44:01) gamambel: ahf: not true
 (18:44:13) ahf: it was a question - not a statement :-)
 (18:45:39) gamambel: tshirt requests are processed on a volunteer capacity
 by one volunteer
 (18:46:12) gamambel: the website needs to get fixed to not reference tor
 weather
 (18:46:43) gamambel: since there is no alternative, one simply needs to
 email thirts@. and then wait foridon'tknowhowlongmaybemonths.
 (19:10:24) juris: gamambel: I'll go through the t-shirt backlog this
 weekend
 }}}

 I've been sending a request many month ago myself; Even transmitted
 personal data. And i've seen many people asking about Tor Weather-shirts
 lately. Something should be done in this 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


[tor-bugs] #19360 [User Experience/Website]: FlashProxy is archived in the Trac, but we still seek volunteers

2016-06-08 Thread Tor Bug Tracker & Wiki
#19360: FlashProxy is archived in the Trac, but we still seek volunteers
-+---
 Reporter:  irl  |  Owner:  Sebastian
 Type:  defect   | Status:  new
 Priority:  Medium   |  Milestone:
Component:  User Experience/Website  |Version:
 Severity:  Normal   |   Keywords:
Actual Points:   |  Parent ID:
   Points:   |   Reviewer:
  Sponsor:   |
-+---
 While going through /getinvolved/volunteer.html.en for broken links, I
 noticed that FlashProxy is listed as archived in trac. Do we still want to
 list that in the projects we'd like volunteers for?

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


Re: [tor-bugs] #18320 [Core Tor/Tor]: Clear old entries from the key-pinning journal file

2016-06-08 Thread Tor Bug Tracker & Wiki
#18320: Clear old entries from the key-pinning journal file
+--
 Reporter:  teor|  Owner:  andrea
 Type:  defect  | Status:  assigned
 Priority:  Medium  |  Milestone:  Tor:
Component:  Core Tor/Tor|  0.2.9.x-final
 Severity:  Normal  |Version:
 Keywords:  tor-dos, TorCoreTeam201606  | Resolution:
Parent ID:  #17293  |  Actual Points:
 Reviewer:  | Points:  3
|Sponsor:  SponsorU-can
+--

Comment (by andrea):

 Okay; the version I'm implementing preserves all the comments and reserved
 lines by building a linked list of lines indexed by hash tables for the
 ones which actually parse to anything, so we get order preservation for
 free.

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


Re: [tor-bugs] #19359 [User Experience/Website]: Links on the volunteering page related to Tor sub-projects are outdated/broken/suboptimal

2016-06-08 Thread Tor Bug Tracker & Wiki
#19359: Links on the volunteering page related to Tor sub-projects are
outdated/broken/suboptimal
-+--
 Reporter:  irl  |  Owner:  Sebastian
 Type:  defect   | Status:  needs_review
 Priority:  Medium   |  Milestone:
Component:  User Experience/Website  |Version:
 Severity:  Normal   | Resolution:
 Keywords:   |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+--
Changes (by irl):

 * status:  new => needs_review


Comment:

 GitHub commit linked in ticket description.

 Let me know if I've not done this right, not done patches for the website
 before. (:

--
Ticket URL: 
Tor Bug Tracker & Wiki 
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] #19359 [User Experience/Website]: Links on the volunteering page related to Tor sub-projects are outdated/broken/suboptimal

2016-06-08 Thread Tor Bug Tracker & Wiki
#19359: Links on the volunteering page related to Tor sub-projects are
outdated/broken/suboptimal
-+---
 Reporter:  irl  |  Owner:  Sebastian
 Type:  defect   | Status:  new
 Priority:  Medium   |  Milestone:
Component:  User Experience/Website  |Version:
 Severity:  Normal   |   Keywords:
Actual Points:   |  Parent ID:
   Points:   |   Reviewer:
  Sponsor:   |
-+---
 * Some URLs had (or were missing) trailing slashes which resulted in
redirects.
  * All of the "bug tracker" links to the Tor trac were using old
component names and have been updated.
  * The domain previously hosting the Incognito project website appears
to have been taken over by a domain squatter, the link has been
replaced with an archive.org link.
  * The homepage for Shadow is now hosted on GitHub, the umn.edu site has
a redirect in place currently.
  * The ExperimenTor website is now available using HTTPS.
  * The txtorcon documentation is hosted on readthedocs which now uses a
.io domain for the hosted documentation instead of the .org.
  * OONI now uses GitHub for code hosting and issue tracking.
  * The panopticlick PDF file on the EFF website has changed URL (the old
URL producing a 404).

 https://github.com/irl/tor-
 website/commit/fa7078adb1643c4540de0291d3ef754f0539c592

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


Re: [tor-bugs] #18320 [Core Tor/Tor]: Clear old entries from the key-pinning journal file

2016-06-08 Thread Tor Bug Tracker & Wiki
#18320: Clear old entries from the key-pinning journal file
+--
 Reporter:  teor|  Owner:  andrea
 Type:  defect  | Status:  assigned
 Priority:  Medium  |  Milestone:  Tor:
Component:  Core Tor/Tor|  0.2.9.x-final
 Severity:  Normal  |Version:
 Keywords:  tor-dos, TorCoreTeam201606  | Resolution:
Parent ID:  #17293  |  Actual Points:
 Reviewer:  | Points:  3
|Sponsor:  SponsorU-can
+--

Comment (by nickm):

 Replying to [comment:13 andrea]:
 > To prune the journal, we should remove duplicates and lines that
 introduce mappings
 > that will subsequently be removed as conflicts.  The easiest approach
 will be to
 > parse the journal, then re-generate it from scratch based on the in-
 memory structure,
 > but this will fail to preserve the comment/reserved lines and the
 ordering of non-
 > conflicting entries.  Do we care?

 I don't care about the ordering of the nonconflicting entries, but the
 comments and reserved lines probably should get preserved; especially
 since we're storing info in the comment.

 > If we do, then the next-easiest approach is probably an in-memory list
 of
 > lines, and hash tables indexing it to query all lines matching
 particular
 > keys, so when we spot a conflicting line during pruning we can find the
 > conflicting previous lines and remove them, then re-emit the file from
 > the list of remaining lines.
 >
 > Since there are no more than a few thousand active routers, a fully
 pruned
 > list cannot become unreasonably large, but this ticket is concerned with
 > running out of disk space due to excessive size.  I think if we remove
 > earlier conflicting lines immediately while parsing to prune we'll keep
 it
 > down to a reasonable size though.
 >
 > Has using tor_mmap_file() in keypin_load_journal() become a problem for
 > space reasons too?

 I don't _think_ so -- on every place where we'd consider running an
 authority, we have mmap. So we'd only need to worry if we were at risk of
 exhausting our address space. I think that if we have any authorities that
 are running on a 32-bit system (where address space exhaustion can
 happen), limiting the keypin file to 1G is probably safe.

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


Re: [tor-bugs] #18320 [Core Tor/Tor]: Clear old entries from the key-pinning journal file

2016-06-08 Thread Tor Bug Tracker & Wiki
#18320: Clear old entries from the key-pinning journal file
+--
 Reporter:  teor|  Owner:  andrea
 Type:  defect  | Status:  assigned
 Priority:  Medium  |  Milestone:  Tor:
Component:  Core Tor/Tor|  0.2.9.x-final
 Severity:  Normal  |Version:
 Keywords:  tor-dos, TorCoreTeam201606  | Resolution:
Parent ID:  #17293  |  Actual Points:
 Reviewer:  | Points:  3
|Sponsor:  SponsorU-can
+--

Comment (by andrea):

 Observed in passing: the existing code here counts conflicts incorrectly;
 it only counts one conflicting line when a line conflicts with two
 previously seen keypin journal entries, even though it correctly removes
 two hash table entries in that case.  Will fix.

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


Re: [tor-bugs] #18320 [Core Tor/Tor]: Clear old entries from the key-pinning journal file

2016-06-08 Thread Tor Bug Tracker & Wiki
#18320: Clear old entries from the key-pinning journal file
+--
 Reporter:  teor|  Owner:  andrea
 Type:  defect  | Status:  assigned
 Priority:  Medium  |  Milestone:  Tor:
Component:  Core Tor/Tor|  0.2.9.x-final
 Severity:  Normal  |Version:
 Keywords:  tor-dos, TorCoreTeam201606  | Resolution:
Parent ID:  #17293  |  Actual Points:
 Reviewer:  | Points:  3
|Sponsor:  SponsorU-can
+--

Comment (by nickm):

 Replying to [comment:12 andrea]:
 > Just why are relays switching back between multiple ed25519 keys with
 the same RSA key?  I'm going to go ahead and implement periodic pruning of
 duplicates from the journal file, but I think nickm's "maybe we should
 remember the conflict" comment hinges on whether this is a sign of a bug
 somewhere else we should fix, or something we should accommodate here.

 I think we should investigate whether it's happening for just a few nodes
 or a bunch.

 If just a few, we can try to investigate that more, or just forbid it
 entirely.

 If a lot, we need to investigate.

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


Re: [tor-bugs] #19211 [Applications/Tor Browser]: Ctrl+Shift+U shortcut on GTK systems does not work with focus on textboxes

2016-06-08 Thread Tor Bug Tracker & Wiki
#19211: Ctrl+Shift+U shortcut on GTK systems does not work with focus on 
textboxes
--+--
 Reporter:  gk|  Owner:  tbb-team
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal| Resolution:
 Keywords:  tbb-usability |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+--

Comment (by bugzilla):

 Seems that Firefox knows something about universal usability:
 {{{
 Key event not available on GTK2: key="u" modifiers="accel shift"
 browser.xul
 }}}

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


Re: [tor-bugs] #19210 [Applications/Tor Browser]: NoScript places WebM videos too late behind click-to-play in higher security levels

2016-06-08 Thread Tor Bug Tracker & Wiki
#19210: NoScript places WebM videos too late behind click-to-play in higher
security levels
-+-
 Reporter:  gk   |  Owner:  tbb-
 Type:  defect   |  team
 Priority:  High | Status:  new
Component:  Applications/Tor Browser |  Milestone:
 Severity:  Major|Version:
 Keywords:  tbb-regression, tbb-security-| Resolution:
  slider, tbb-6.0-issues |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-

Comment (by rena):

 #19200 disable MSE close it.

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


Re: [tor-bugs] #19352 [- Select a component]: A way for switch youtube control by tbb native controls, and still show just it.

2016-06-08 Thread Tor Bug Tracker & Wiki
#19352: A way for switch youtube control by tbb native controls, and still show
just it.
--+-
 Reporter:  rena  |  Owner:
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  - Select a component  |Version:
 Severity:  Normal| Resolution:
 Keywords:|  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+-

Comment (by rena):

 #19200 disable MSE allows open in another tab, this is already enough.

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


Re: [tor-bugs] #19200 [Applications/Tor Browser]: HTML5 video not blocked with placeholder, plays automatically

2016-06-08 Thread Tor Bug Tracker & Wiki
#19200: HTML5 video not blocked with placeholder, plays automatically
-+-
 Reporter:  potato   |  Owner:  tbb-
 Type:  defect   |  team
 Priority:  High | Status:  new
Component:  Applications/Tor Browser |  Milestone:
 Severity:  Major|Version:
 Keywords:  tbb-security-slider, tbb-6.0-issues  | Resolution:
Parent ID:   |  Actual Points:
 Reviewer:   | Points:
 |Sponsor:
-+-

Comment (by rena):

 Replying to [comment:6 cypherpunks]:
 > `media.mediasource.enabled` is set to `true` by default. setting it to
 `false` reverts this to the previous click-to-play functionality.

 Yeah, it work appropriately for me.

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


Re: [tor-bugs] #19280 [Applications/Tor Browser]: Replace or fork NoScript in the Tor Browser

2016-06-08 Thread Tor Bug Tracker & Wiki
#19280: Replace or fork NoScript in the Tor Browser
--+--
 Reporter:  herbst|  Owner:  tbb-team
 Type:  project   | Status:  new
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal| Resolution:
 Keywords:  tbb-security  |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+--

Comment (by rena):

 sounds nice! :)

 I think is a hard work

 How about fork implementing its key features in torbutton?

 It will also serve to remove some redundancy and anecdotes from tbb ...

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


Re: [tor-bugs] #19248 [Internal Services/Service - lists]: Redirect email aliases

2016-06-08 Thread Tor Bug Tracker & Wiki
#19248: Redirect email aliases
---+
 Reporter:  atagar |  Owner:  weasel
 Type:  defect | Status:  new
 Priority:  Medium |  Milestone:
Component:  Internal Services/Service - lists  |Version:
 Severity:  Normal | Resolution:
 Keywords: |  Actual Points:
Parent ID: | Points:
 Reviewer: |Sponsor:
---+
Changes (by mcs):

 * cc: mcs (added)


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


[tor-bugs] #19358 [Applications/Tor Browser]: TBB can stop working on exit on Windows 7

2016-06-08 Thread Tor Bug Tracker & Wiki
#19358: TBB can stop working on exit on Windows 7
--+---
 Reporter:  bugzilla  |  Owner:  tbb-team
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal|   Keywords:  tbb-crash
Actual Points:|  Parent ID:
   Points:|   Reviewer:
  Sponsor:|
--+---
 Crash is triggered by #18778 (hang & 100% CPU) if TBB is exiting by
 clicking Exit button in hamburger menu. Just wait a minute.
 {{{
 Faulting application name: firefox.exe, version: 45.2.0.0, time stamp:
 0x
 Faulting module name: xul.dll, version: 45.2.0.0, time stamp: 0x
 Exception code: 0xc005
 Fault offset: 0x01ef989c
 }}}

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


Re: [tor-bugs] #19200 [Applications/Tor Browser]: HTML5 video not blocked with placeholder, plays automatically

2016-06-08 Thread Tor Bug Tracker & Wiki
#19200: HTML5 video not blocked with placeholder, plays automatically
-+-
 Reporter:  potato   |  Owner:  tbb-
 Type:  defect   |  team
 Priority:  High | Status:  new
Component:  Applications/Tor Browser |  Milestone:
 Severity:  Major|Version:
 Keywords:  tbb-security-slider, tbb-6.0-issues  | Resolution:
Parent ID:   |  Actual Points:
 Reviewer:   | Points:
 |Sponsor:
-+-

Comment (by bugzilla):

 Replying to [comment:6 cypherpunks]:
 > the change happened in firefox 42.0
 It just shows how long ago NoScript stopped to do what it should. So,
 another +1 to #19280.

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


Re: [tor-bugs] #19200 [Applications/Tor Browser]: HTML5 video not blocked with placeholder, plays automatically

2016-06-08 Thread Tor Bug Tracker & Wiki
#19200: HTML5 video not blocked with placeholder, plays automatically
-+-
 Reporter:  potato   |  Owner:  tbb-
 Type:  defect   |  team
 Priority:  High | Status:  new
Component:  Applications/Tor Browser |  Milestone:
 Severity:  Major|Version:
 Keywords:  tbb-security-slider, tbb-6.0-issues  | Resolution:
Parent ID:   |  Actual Points:
 Reviewer:   | Points:
 |Sponsor:
-+-

Comment (by cypherpunks):

 according to https://developer.mozilla.org/en-US/docs/Web/API/MediaSource
 the change happened in firefox 42.0 where `media.mediasource.enabled` is
 set to `true` by default. setting it to `false` reverts this to the
 previous click-to-play functionality.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
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] #19357 [Core Tor/Tor]: keypin_load_journal_impl() might break if journal file contains NUL

2016-06-08 Thread Tor Bug Tracker & Wiki
#19357: keypin_load_journal_impl() might break if journal file contains NUL
--+
 Reporter:  andrea|  Owner:
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:  Tor: 0.2.9.x-final
Component:  Core Tor/Tor  |Version:  Tor: unspecified
 Severity:  Normal|   Keywords:
Actual Points:|  Parent ID:
   Points:|   Reviewer:
  Sponsor:|
--+
 The journal file reader loop in src/or/keypin.c only uses end of file or
 '\n' to find the end of a line, so if a line contains a NUL we may end up
 passing a string with one in the middle to other things:

 {{{
 367 STATIC int
 368 keypin_load_journal_impl(const char *data, size_t size,
 369  keypin_journal_pruner_t *pruner)
 370 {
 371   const char *start = data, *end = data + size, *next;
 372
 373   int n_corrupt_lines = 0;
 374   int n_entries = 0;
 375   int n_duplicates = 0;
 376   int n_conflicts = 0;
 377
 378   for (const char *cp = start; cp < end; cp = next) {
 379 const char *eol = memchr(cp, '\n', end-cp);
 380 const char *eos = eol ? eol : end;
 381 const size_t len = eos - cp;
 }}}

 We should think about this more and make sure this is safe.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
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] #19356 [Applications/Tor Browser]: TBB installer creates a folder with files in %temp% on Windows

2016-06-08 Thread Tor Bug Tracker & Wiki
#19356: TBB installer creates a folder with files in %temp% on Windows
--+---
 Reporter:  bugzilla  |  Owner:  tbb-team
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal|   Keywords:  tbb-disk-leak
Actual Points:|  Parent ID:
   Points:|   Reviewer:
  Sponsor:|
--+---
 Installer prefers to unpack its temporary files (e.g. LangDLL.dll) to
 user's %temp% instead of its folder.

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


Re: [tor-bugs] #18778 [Applications/Tor Browser]: TBB hangs with 100% CPU when cancelling ftp download or http channel Listener OnDataAvailable contract violation (was: http channel Listener OnDataAva

2016-06-08 Thread Tor Bug Tracker & Wiki
#18778: TBB hangs with 100% CPU when cancelling ftp download or http channel
Listener OnDataAvailable contract violation
--+--
 Reporter:  bugzilla  |  Owner:  tbb-team
 Type:  defect| Status:  assigned
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal| Resolution:
 Keywords:  tbb-crash |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+--
Changes (by bugzilla):

 * keywords:   => tbb-crash


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


Re: [tor-bugs] #18937 [Applications/Tor Browser]: What's new (bugs) in Tor Browser 6.0a5 -- April 28 2016

2016-06-08 Thread Tor Bug Tracker & Wiki
#18937: What's new (bugs) in Tor Browser 6.0a5 -- April 28 2016
--+--
 Reporter:  bugzilla  |  Owner:  tbb-team
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal| Resolution:
 Keywords:|  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+--

Comment (by bugzilla):

 STR: uncheck "Disable browser plugins" in torbutton and press OK.
 {{{
 06:23:36.042 ReferenceError: commonDialogOnUnload is not defined
 onunload() commonDialog.xul:1
 openModalWindow() nsPrompter.js:360
 ModalPrompter.prototype.openPrompt() nsPrompter.js:550
 ModalPrompter.prototype.confirmEx() nsPrompter.js:694
 Prompter.prototype.confirmEx() nsPrompter.js:79
 torbutton_confirm_plugins() torbutton.js:696
 torbutton_unique_pref_observer.observe() torbutton.js:177
 1 commonDialog.xul:1:1
 }}}

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


[tor-bugs] #19355 [Applications/Tor Browser]: Moving a mouse pointer over the TBB windows is CPU intensive on Windows XP

2016-06-08 Thread Tor Bug Tracker & Wiki
#19355: Moving a mouse pointer over the TBB windows is CPU intensive on Windows 
XP
-+-
 Reporter:  bugzilla |  Owner:  tbb-team
 Type:  defect   | Status:  new
 Priority:  Medium   |  Milestone:
Component:  Applications/Tor |Version:
  Browser|   Keywords:  tbb-6.0-issues, tbb-
 Severity:  Normal   |  usability, tbb-performance
Actual Points:   |  Parent ID:
   Points:   |   Reviewer:
  Sponsor:   |
-+-
 Moving a mouse pointer over the TBB windows is CPU intensive (100%) on
 Windows XP. So be happy that FF can't use all cores.

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


Re: [tor-bugs] #18320 [Core Tor/Tor]: Clear old entries from the key-pinning journal file

2016-06-08 Thread Tor Bug Tracker & Wiki
#18320: Clear old entries from the key-pinning journal file
+--
 Reporter:  teor|  Owner:  andrea
 Type:  defect  | Status:  assigned
 Priority:  Medium  |  Milestone:  Tor:
Component:  Core Tor/Tor|  0.2.9.x-final
 Severity:  Normal  |Version:
 Keywords:  tor-dos, TorCoreTeam201606  | Resolution:
Parent ID:  #17293  |  Actual Points:
 Reviewer:  | Points:  3
|Sponsor:  SponsorU-can
+--

Comment (by andrea):

 To prune the journal, we should remove duplicates and lines that introduce
 mappings
 that will subsequently be removed as conflicts.  The easiest approach will
 be to
 parse the journal, then re-generate it from scratch based on the in-memory
 structure,
 but this will fail to preserve the comment/reserved lines and the ordering
 of non-
 conflicting entries.  Do we care?

 If we do, then the next-easiest approach is probably an in-memory list of
 lines, and hash tables indexing it to query all lines matching particular
 keys, so when we spot a conflicting line during pruning we can find the
 conflicting previous lines and remove them, then re-emit the file from
 the list of remaining lines.

 Since there are no more than a few thousand active routers, a fully pruned
 list cannot become unreasonably large, but this ticket is concerned with
 running out of disk space due to excessive size.  I think if we remove
 earlier conflicting lines immediately while parsing to prune we'll keep it
 down to a reasonable size though.

 Has using tor_mmap_file() in keypin_load_journal() become a problem for
 space reasons too?

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


Re: [tor-bugs] #18937 [Applications/Tor Browser]: What's new (bugs) in Tor Browser 6.0a5 -- April 28 2016

2016-06-08 Thread Tor Bug Tracker & Wiki
#18937: What's new (bugs) in Tor Browser 6.0a5 -- April 28 2016
--+--
 Reporter:  bugzilla  |  Owner:  tbb-team
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal| Resolution:
 Keywords:|  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+--

Comment (by bugzilla):

 As almost all bugs successfully landed into TBB 6.0, should we add
 {{{tbb-6.0-issues}}}?

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


Re: [tor-bugs] #19276 [Applications/Tor Browser]: Scrolling is slow and CPU intensive

2016-06-08 Thread Tor Bug Tracker & Wiki
#19276: Scrolling is slow and CPU intensive
-+-
 Reporter:  cypherpunks  |  Owner:  tbb-
 Type:  defect   |  team
 Priority:  Medium   | Status:
Component:  Applications/Tor Browser |  needs_information
 Severity:  Normal   |  Milestone:
 Keywords:  tbb-6.0-issues, tbb-usability, tbb-  |Version:
  performance| Resolution:
Parent ID:   |  Actual Points:
 Reviewer:   | Points:
 |Sponsor:
-+-
Changes (by bugzilla):

 * keywords:  tbb-6.0-issues, tbb-usability => tbb-6.0-issues, tbb-
 usability, tbb-performance


Comment:

 FWIW, this is a long-standing problem of Firefox on Windows, and it's just
 getting worse with updates. The reason is that Mozilla doesn't test its
 products on different systems, thinking that testing on their configs is
 enough.

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


Re: [tor-bugs] #18320 [Core Tor/Tor]: Clear old entries from the key-pinning journal file

2016-06-08 Thread Tor Bug Tracker & Wiki
#18320: Clear old entries from the key-pinning journal file
+--
 Reporter:  teor|  Owner:  andrea
 Type:  defect  | Status:  assigned
 Priority:  Medium  |  Milestone:  Tor:
Component:  Core Tor/Tor|  0.2.9.x-final
 Severity:  Normal  |Version:
 Keywords:  tor-dos, TorCoreTeam201606  | Resolution:
Parent ID:  #17293  |  Actual Points:
 Reviewer:  | Points:  3
|Sponsor:  SponsorU-can
+--

Comment (by andrea):

 Just why are relays switching back between multiple ed25519 keys with the
 same RSA key?  I'm going to go ahead and implement periodic pruning of
 duplicates from the journal file, but I think nickm's "maybe we should
 remember the conflict" comment hinges on whether this is a sign of a bug
 somewhere else we should fix, or something we should accommodate here.

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


Re: [tor-bugs] #19348 [Applications/Tor Browser]: Windows %BUILD_TARGET% changed in Tor Browser 6.0

2016-06-08 Thread Tor Bug Tracker & Wiki
#19348: Windows %BUILD_TARGET% changed in Tor Browser 6.0
--+---
 Reporter:  boklm |  Owner:  boklm
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal| Resolution:
 Keywords:  tbb-6.0-issues|  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+---

Comment (by bugzilla):

 > Mozilla added the -64 to allow them to update people from 32-bit Firefox
 to 64-bit Firefox (although as far as I know they have not done that yet).
 Because they are so feature-different as separate products ;)
 > I think someone with an old CPU might generate requests that include
 WINNT_x86-gcc3-x86, so we should allow for that too.
 All our machines with 32-bit Windows of all versions had been updated
 through WINNT_x86-gcc3-x86 before this ticket was created :) And no, most
 of them have x64 not old CPUs ;)
 > Do we already leak the processor architecture?
 So this is only the Edition of Windows (x86 or x64), despite of how
 Mozilla calls it.
 But according to #19316, they are going to detect and report far more info
 than just CPU arch...

--
Ticket URL: 
Tor Bug Tracker & Wiki 
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] #19354 [User Experience/Website]: Remove Tor Weather reference from T-Shirt page

2016-06-08 Thread Tor Bug Tracker & Wiki
#19354: Remove Tor Weather reference from T-Shirt page
-+---
 Reporter:  mo   |  Owner:  Sebastian
 Type:  defect   | Status:  new
 Priority:  Low  |  Milestone:
Component:  User Experience/Website  |Version:
 Severity:  Normal   |   Keywords:
Actual Points:   |  Parent ID:
   Points:   |   Reviewer:
  Sponsor:   |
-+---
 Tor Weather for a long time didn't work reliably, and is completely
 offline now. [[https://www.torproject.org/getinvolved/tshirt.html]] still
 tells relay operators to wait for its mail before requesting a shirt.

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


Re: [tor-bugs] #19200 [Applications/Tor Browser]: HTML5 video not blocked with placeholder, plays automatically

2016-06-08 Thread Tor Bug Tracker & Wiki
#19200: HTML5 video not blocked with placeholder, plays automatically
-+-
 Reporter:  potato   |  Owner:  tbb-
 Type:  defect   |  team
 Priority:  High | Status:  new
Component:  Applications/Tor Browser |  Milestone:
 Severity:  Major|Version:
 Keywords:  tbb-security-slider, tbb-6.0-issues  | Resolution:
Parent ID:   |  Actual Points:
 Reviewer:   | Points:
 |Sponsor:
-+-

Comment (by rena):

 it's possible just disable media source extensions?

--
Ticket URL: 
Tor Bug Tracker & Wiki 
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] #19353 [- Select a component]: Add tracking protection check box to privacy in "Privacy and Security Settings" at torbutton.

2016-06-08 Thread Tor Bug Tracker & Wiki
#19353: Add tracking protection check box to privacy in "Privacy and Security
Settings" at torbutton.
--+-
 Reporter:  rena  |  Owner:
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  - Select a component  |Version:
 Severity:  Normal|   Keywords:
Actual Points:|  Parent ID:
   Points:|   Reviewer:
  Sponsor:|
--+-
 Add tracking protection check box to privacy in "Privacy and Security
 Settings" at torbutton.

 I think is a good idea, because is about privacy, and some user maybe like
 this.

 And also block some undesirable Ads.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
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] #19352 [- Select a component]: A way for switch youtube control by tbb native controls, and still show just it.

2016-06-08 Thread Tor Bug Tracker & Wiki
#19352: A way for switch youtube control by tbb native controls, and still show
just it.
--+-
 Reporter:  rena  |  Owner:
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  - Select a component  |Version:
 Severity:  Normal|   Keywords:
Actual Points:|  Parent ID:
   Points:|   Reviewer:
  Sponsor:|
--+-
 A way for switch youtube control by tbb native controls, and still show
 just it.

 (using high setting)

 In tbb 6.5a1 the first video that you see work like this, but the other
 you can't, they "show" yt controls and you can't click in native controls.

 If you click in native controls, after you make a action, it  hide, I want
 a way or a option that force to show it.

 maybe show native controls over yt controls work, or some like 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] #19280 [Applications/Tor Browser]: Replace or fork NoScript in the Tor Browser (was: Replace No-Script in the Browser Bundle)

2016-06-08 Thread Tor Bug Tracker & Wiki
#19280: Replace or fork NoScript in the Tor Browser
--+--
 Reporter:  herbst|  Owner:  tbb-team
 Type:  project   | Status:  new
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal| Resolution:
 Keywords:  tbb-security  |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+--
Changes (by bugzilla):

 * component:  User Experience => Applications/Tor Browser
 * keywords:  noscript => tbb-security
 * milestone:  TorBrowserBundle 2.3.x-stable =>
 * owner:   => tbb-team
 * type:  enhancement => project


Comment:

 Voting? Really? Interesting...
 +1
 Changing Component to the proper value, so that TBB team will see us. (So
 start counting when they close this as invalid ;)

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


Re: [tor-bugs] #19115 [Applications/Tor Browser]: Make sure Tor Browser 6.0 is not falling back to Bing as its search engine

2016-06-08 Thread Tor Bug Tracker & Wiki
#19115: Make sure Tor Browser 6.0 is not falling back to Bing as its search 
engine
--+--
 Reporter:  gk|  Owner:  tbb-team
 Type:  enhancement   | Status:  closed
 Priority:  High  |  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Major | Resolution:  fixed
 Keywords:  tbb-6.0-must  |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+--

Comment (by rena):

 I think so, is more desirable switch direct to duckduckgo, because:
 1. Disconnect.me redirect you to https://duckduckgo.com/, not to
 http://3g2upl4pq6kufc4m.onion/.

 2. If you are using tor in medium-high or high setting you are not using
 javascript for DDG by default.
 Well, the disconnect redirect you to a version of site that requite JS,
 and you need to click to swith to non-JS version of DDG, but if you are
 using DDG it automatic detecte non-js contest.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
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] #19351 [- Select a component]: When you click on sync, in preferences, tbb show sync botton in menu.

2016-06-08 Thread Tor Bug Tracker & Wiki
#19351: When you click on sync, in preferences, tbb show sync botton in menu.
--+-
 Reporter:  rena  |  Owner:
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  - Select a component  |Version:
 Severity:  Normal|   Keywords:
Actual Points:|  Parent ID:
   Points:|   Reviewer:
  Sponsor:|
--+-
 When you click on sync, in preferences, tbb show sync botton in menu.

 I think is a nice idea remove completely the sync in preferences a all
 rest.

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


Re: [tor-bugs] #19317 [Metrics/CollecTor]: Sanitize TCP ports in bridge descriptors

2016-06-08 Thread Tor Bug Tracker & Wiki
#19317: Sanitize TCP ports in bridge descriptors
---+-
 Reporter:  karsten|  Owner:
 Type:  enhancement| Status:  new
 Priority:  Medium |  Milestone:
Component:  Metrics/CollecTor  |Version:
 Severity:  Normal | Resolution:
 Keywords: |  Actual Points:
Parent ID: | Points:
 Reviewer: |Sponsor:
---+-

Comment (by isis):

 The 33-byte long random string is actually 32-bytes of randomness
 terminated with a null char? Or, if it's something else, out of curiosity,
 why 33 bytes?

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


Re: [tor-bugs] #19280 [User Experience]: Replace No-Script in the Browser Bundle

2016-06-08 Thread Tor Bug Tracker & Wiki
#19280: Replace No-Script in the Browser Bundle
---+---
 Reporter:  herbst |  Owner:
 Type:  enhancement| Status:  new
 Priority:  Medium |  Milestone:  TorBrowserBundle 2.3.x-stable
Component:  User   |Version:
  Experience   | Resolution:
 Severity:  Normal |  Actual Points:
 Keywords:  noscript   | Points:
Parent ID: |Sponsor:
 Reviewer: |
---+---

Comment (by cypherpunks):

 +1 for fork

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


[tor-bugs] [Tor Bug Tracker & Wiki] Batch modify: #15942, #18320, #18322, #18640

2016-06-08 Thread Tor Bug Tracker & Wiki
Batch modification to #15942, #18320, #18322, #18640 by nickm:
keywords to TorCoreTeam201606

--
Tickets URL: 

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


Re: [tor-bugs] #19348 [Applications/Tor Browser]: Windows %BUILD_TARGET% changed in Tor Browser 6.0

2016-06-08 Thread Tor Bug Tracker & Wiki
#19348: Windows %BUILD_TARGET% changed in Tor Browser 6.0
--+---
 Reporter:  boklm |  Owner:  boklm
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal| Resolution:
 Keywords:  tbb-6.0-issues|  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+---

Comment (by boklm):

 Replying to [comment:2 mcs]:
 > I think someone with an old CPU might generate requests that include
 WINNT_x86-gcc3-x86, so we should allow for that too.

 I have now updated again the .htaccess in the release and alpha channels
 after generating it with this, to allow both `-x64` and `-86`:
 {{{
 diff --git a/tools/update-responses/config.yml b/tools/update-
 responses/config.yml
 index 5e4d463f9262..1d8637a572fd 100644
 --- a/tools/update-responses/config.yml
 +++ b/tools/update-responses/config.yml
 @@ -5,7 +5,7 @@ download:
  build_targets:
  linux32: Linux_x86-gcc3
  linux64: Linux_x86_64-gcc3
 -win32: WINNT_x86-gcc3
 +win32: WINNT_x86-gcc3(-x64|-x86)?
  osx32: Darwin_x86-gcc3
  osx64: Darwin_x86_64-gcc3
  channels:
 }}

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


Re: [tor-bugs] #19323 [Core Tor/Tor]: controller: expose Download timer/timeout/retry information

2016-06-08 Thread Tor Bug Tracker & Wiki
#19323: controller: expose Download timer/timeout/retry information
-+-
 Reporter:  nickm|  Owner:  andrea
 Type:  enhancement  | Status:
 Priority:  Medium   |  assigned
Component:  Core Tor/Tor |  Milestone:  Tor:
 Severity:  Normal   |  0.2.9.x-final
 Keywords:  tor-controller-extension |Version:
  TorCoreTeam201606  | Resolution:
Parent ID:  #17284   |  Actual Points:
 Reviewer:   | Points:  1
 |Sponsor:
 |  SponsorS-can
-+-
Changes (by nickm):

 * status:  new => assigned
 * keywords:  tor-controller-extension => tor-controller-extension
 TorCoreTeam201606
 * owner:   => andrea


--
Ticket URL: 
Tor Bug Tracker & Wiki 
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] #19350 [User Experience/Website]: Volunteer page has old links for Globe

2016-06-08 Thread Tor Bug Tracker & Wiki
#19350: Volunteer page has old links for Globe
-+-
 Reporter:  irl  |  Owner:  Sebastian
 Type:  defect   | Status:  new
 Priority:  Medium   |  Milestone:
Component:  User |Version:
  Experience/Website |   Keywords:  complete-before-
 Severity:  Normal   |  abandoning-globe
Actual Points:   |  Parent ID:
   Points:   |   Reviewer:
  Sponsor:   |
-+-
 An IRC user reported "there's some javascript projects listed on the Tor
 website that haven't been updated in a couple years
 (https://github.com/makepanic/globe) what's the status?".

 I tracked this down to:

  https://www.torproject.org/getinvolved/volunteer.html.en#project-globe

 It may be that this is not actually a bug, if in the process of abandoning
 the correct repository is the GitHub one. If not, the repository is now
 hosted at:

  https://gitweb.torproject.org/globe.git/.

 Issues are now hosted on the Tor Trac. (Metrics/Globe component)

 It looks that also Globe is being abandoned, so it may be that this link
 should be removed entirely.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
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] #19349 [- Select a component]: SELinux Fedora 22 Crash

2016-06-08 Thread Tor Bug Tracker & Wiki
#19349: SELinux Fedora 22 Crash
--+-
 Reporter:  dansemacar|  Owner:
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  - Select a component  |Version:
 Severity:  Normal|   Keywords:
Actual Points:|  Parent ID:
   Points:|   Reviewer:
  Sponsor:|
--+-
 Hi

 I opened a new tab while browsing with Tor Browser 6.0.1, when an SELinux
 alert popped up, at which point Tor Browser crashed. I'm using 64 bit
 Fedora 22 with the Gnome shell.

 The "details" of the SELinux error are here:

 SELinux is preventing /usr/libexec/abrt-hook-ccpp from getattr access on
 the file file.

 *  Plugin catchall (100. confidence) suggests
 **

 If you believe that abrt-hook-ccpp should be allowed getattr access on the
 file file by default.
 Then you should report this as a bug.
 You can generate a local policy module to allow this access.
 Do
 allow this access for now by executing:
 # grep abrt-hook-ccpp /var/log/audit/audit.log | audit2allow -M mypol
 # semodule -i mypol.pp

 Additional Information:
 Source Contextsystem_u:system_r:abrt_dump_oops_t:s0
 Target Contextsystem_u:object_r:nsfs_t:s0
 Target Objectsfile [ file ]
 Sourceabrt-hook-ccpp
 Source Path   /usr/libexec/abrt-hook-ccpp
 Port  
 Host  localhost.localdomain
 Source RPM Packages   abrt-addon-coredump-
 helper-2.6.1-10.fc22.x86_64
 Target RPM Packages
 Policy RPMselinux-policy-3.13.1-128.28.fc22.noarch
 Selinux Enabled   True
 Policy Type   targeted
 Enforcing ModeEnforcing
 Host Name localhost.localdomain
 Platform  Linux localhost.localdomain
 4.4.11-200.fc22.x86_64
   #1 SMP Tue May 24 00:20:46 UTC 2016 x86_64
 x86_64
 Alert Count   3
 First Seen2016-05-28 11:33:42 CEST
 Last Seen 2016-06-08 17:07:31 CEST
 Local ID  46073432-d621-479e-b8ca-53db3389570a

 Raw Audit Messages
 type=AVC msg=audit(1465398451.178:624): avc:  denied  { getattr } for
 pid=4513 comm="abrt-hook-ccpp" path="ipc:[4026531839]" dev="nsfs"
 ino=4026531839 scontext=system_u:system_r:abrt_dump_oops_t:s0
 tcontext=system_u:object_r:nsfs_t:s0 tclass=file permissive=0


 type=SYSCALL msg=audit(1465398451.178:624): arch=x86_64 syscall=newfstatat
 success=no exit=EACCES a0=5 a1=7fb00f614c2a a2=7fff496a2ea0 a3=0 items=0
 ppid=2 pid=4513 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0
 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm=abrt-hook-ccpp
 exe=/usr/libexec/abrt-hook-ccpp subj=system_u:system_r:abrt_dump_oops_t:s0
 key=(null)

 Hash: abrt-hook-ccpp,abrt_dump_oops_t,nsfs_t,file,getattr

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


Re: [tor-bugs] #19276 [Applications/Tor Browser]: Scrolling is slow and CPU intensive

2016-06-08 Thread Tor Bug Tracker & Wiki
#19276: Scrolling is slow and CPU intensive
---+---
 Reporter:  cypherpunks|  Owner:  tbb-team
 Type:  defect | Status:
 Priority:  Medium |  needs_information
Component:  Applications/Tor Browser   |  Milestone:
 Severity:  Normal |Version:
 Keywords:  tbb-6.0-issues, tbb-usability  | Resolution:
Parent ID: |  Actual Points:
 Reviewer: | Points:
   |Sponsor:
---+---

Comment (by cypherpunks):

 http://www.hackermusings.com/2012/05/firefoxs-graphics-performance-on-x11/

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


Re: [tor-bugs] #8725 [Applications/Tor Browser]: resource:// URIs leak information

2016-06-08 Thread Tor Bug Tracker & Wiki
#8725: resource:// URIs leak information
-+-
 Reporter:  holizz   |  Owner:  tbb-
 Type:  defect   |  team
 Priority:  Very High| Status:
Component:  Applications/Tor Browser |  needs_review
 Severity:  Major|  Milestone:
 Keywords:  tbb-fingerprinting, tbb-rebase-  |Version:
  regression, tbb-testcase, tbb-firefox-patch,   | Resolution:
  TorBrowserTeam201606R  |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-

Comment (by cypherpunks):

 Now that #18914 is fixed, this is an important remaining hole that needs
 an immediate fix. With this fixed, there will be no known locale leak as
 far as I know. -- Thanks!

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


[tor-bugs] [Tor Bug Tracker & Wiki] Batch modify: #17282, #17287, #17291

2016-06-08 Thread Tor Bug Tracker & Wiki
Batch modification to #17282, #17287, #17291 by nickm:
sponsor to SponsorS-can

--
Tickets URL: 

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


Re: [tor-bugs] #17289 [Core Tor/Tor]: Overall Tor test coverage very high... over 75%? (was: Overall Tor test coverage over 75%)

2016-06-08 Thread Tor Bug Tracker & Wiki
#17289: Overall Tor test coverage very high... over 75%?
+
 Reporter:  nickm   |  Owner:
 Type:  enhancement | Status:  new
 Priority:  High|  Milestone:  Tor: 0.2.9.x-final
Component:  Core Tor/Tor|Version:
 Severity:  Normal  | Resolution:
 Keywords:  tor-tests-coverage  |  Actual Points:
Parent ID:  | Points:  parent
 Reviewer:  |Sponsor:  SponsorS-must
+
Description changed by nickm:

Old description:

> Right now the overall test coverage (stem, network, unit) is something
> like 69%.  We have committed to raise it over 75%.  Or higher.
>
> This is a deliverable for October 2016.

New description:

 Right now the overall test coverage (stem, network, unit) is something
 like 69%.  We have committed to raise it as high as possible ... over 75%?

 This is a deliverable for October 2016.

--

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


[tor-bugs] [Tor Bug Tracker & Wiki] Batch modify: #17288

2016-06-08 Thread Tor Bug Tracker & Wiki
Batch modification to #17288 by nickm:
sponsor to SponsorS-can

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


[tor-bugs] [Tor Bug Tracker & Wiki] Batch modify: #19307, #19308, #19309, #19310, #19311, #19312

2016-06-08 Thread Tor Bug Tracker & Wiki
Batch modification to #19307, #19308, #19309, #19310, #19311, #19312 by nickm:
sponsor to SponsorS-can

--
Tickets URL: 

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


[tor-bugs] [Tor Bug Tracker & Wiki] Batch modify: #19301, #19302, #19303

2016-06-08 Thread Tor Bug Tracker & Wiki
Batch modification to #19301, #19302, #19303 by nickm:
sponsor to SponsorU-must

--
Tickets URL: 

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


Re: [tor-bugs] #19348 [Applications/Tor Browser]: Windows %BUILD_TARGET% changed in Tor Browser 6.0

2016-06-08 Thread Tor Bug Tracker & Wiki
#19348: Windows %BUILD_TARGET% changed in Tor Browser 6.0
--+---
 Reporter:  boklm |  Owner:  boklm
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal| Resolution:
 Keywords:  tbb-6.0-issues|  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+---

Comment (by mcs):

 Kathy and I should have noticed this when we tested the 6.x updater, but
 the .htaccess file on our test server uses patterns like `^WINNT_x86
 -.*/[^/]+/en-US`, so we just got lucky that our tests worked (and unlucky
 that we did not notice the -x64 part).

 After some detective work we found the culprit:
  https://hg.mozilla.org/mozilla-central/rev/2a1163cd7736
 Mozilla added the -64 to allow them to update people from 32-bit Firefox
 to 64-bit Firefox (although as far as I know they have not done that yet).

 I think someone with an old CPU might generate requests that include
 WINNT_x86-gcc3-x86, so we should allow for that too.

 Do we already leak the processor architecture? If the answer is "yes" we
 may want to just keep this as-is. If not, we should patch the ABI getter
 inside toolkit/modules/UpdateUtils.jsm (where the code now lives) to omit
 the gWinCPUArch part.

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


Re: [tor-bugs] #19259 [Metrics/Onionoo]: uncaught NFE

2016-06-08 Thread Tor Bug Tracker & Wiki
#19259: uncaught NFE
-+---
 Reporter:  iwakeh   |  Owner:  iwakeh
 Type:  defect   | Status:  needs_information
 Priority:  High |  Milestone:
Component:  Metrics/Onionoo  |Version:
 Severity:  Major| Resolution:
 Keywords:   |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+---

Comment (by karsten):

 Fine questions!  Let's see:

  - The first timestamp should not precede the second, though that might
 not be checked in the current code.  This is independent of whether
 timestamps are on the same day or not, so should contain your lines 1 and
 3.  I could imagine that these lines don't work well with the
 `compressHistory()` method, but I didn't try that out.  We could add a
 check to make sure these lines are rejected.
  - Negative values are fine and simply indicate that a value is missing.
 Normally, we'd put in -1.0, but any other negative value should do just
 fine.  No need to break in such cases.

 Note that I took a quick look at the code to answer these questions, but
 that doesn't guarantee that I'm right.

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


Re: [tor-bugs] #19347 [Metrics/Metrics website]: axis labels are hard to parse

2016-06-08 Thread Tor Bug Tracker & Wiki
#19347: axis labels are hard to parse
-+
 Reporter:  weasel   |  Owner:
 Type:  defect   | Status:  closed
 Priority:  Medium   |  Milestone:
Component:  Metrics/Metrics website  |Version:
 Severity:  Normal   | Resolution:  fixed
 Keywords:   |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+
Changes (by karsten):

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


Comment:

 Good idea, let's make that easier to read.  Pushed a change to master and
 deployed on the server.  Closing.  Thanks for the report!

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


Re: [tor-bugs] #19348 [Applications/Tor Browser]: Windows %BUILD_TARGET% changed in Tor Browser 6.0

2016-06-08 Thread Tor Bug Tracker & Wiki
#19348: Windows %BUILD_TARGET% changed in Tor Browser 6.0
--+---
 Reporter:  boklm |  Owner:  boklm
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal| Resolution:
 Keywords:  tbb-6.0-issues|  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+---
Changes (by gk):

 * keywords:   => tbb-6.0-issues


--
Ticket URL: 
Tor Bug Tracker & Wiki 
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] #19348 [Applications/Tor Browser]: Windows %BUILD_TARGET% changed in Tor Browser 6.0

2016-06-08 Thread Tor Bug Tracker & Wiki
#19348: Windows %BUILD_TARGET% changed in Tor Browser 6.0
--+---
 Reporter:  boklm |  Owner:  boklm
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal|   Keywords:
Actual Points:|  Parent ID:
   Points:|   Reviewer:
  Sponsor:|
--+---
 In previous Tor Browser releases, the %BUILD_TARGET% used in the updater
 URL in Windows versions was `WINNT_x86-gcc3`. In Tor Browser 6.0, this
 changed to `WINNT_x86-gcc3-x64`, which broke our updater URLs.

 A quick fix was to apply this patch, and regenerate the .htacess we use to
 deliver the update manifests:
 {{{
 diff --git a/tools/update-responses/config.yml b/tools/update-
 responses/config.yml
 index 5e4d463f9262..4595544ec21e 100644
 --- a/tools/update-responses/config.yml
 +++ b/tools/update-responses/config.yml
 @@ -5,7 +5,7 @@ download:
  build_targets:
  linux32: Linux_x86-gcc3
  linux64: Linux_x86_64-gcc3
 -win32: WINNT_x86-gcc3
 +win32: WINNT_x86-gcc3(-x64)?
  osx32: Darwin_x86-gcc3
  osx64: Darwin_x86_64-gcc3
  channels:
 }}}

 However this change breaks the `check_update_responses_deployement`
 command, which uses the build_targets values in test URLs (without
 expecting them to be regexps), so other changes are required to fix that
 part.

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


Re: [tor-bugs] #18875 [Metrics/metrics-lib]: Consider replacing RelayNetworkStatusVote's getDirectorySignatures() with getDirectorySignature()

2016-06-08 Thread Tor Bug Tracker & Wiki
#18875: Consider replacing RelayNetworkStatusVote's getDirectorySignatures() 
with
getDirectorySignature()
-+-
 Reporter:  karsten  |  Owner:  karsten
 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):

 Replying to [comment:2 teor]:

 Thanks for your thoughts here!

 > I think the underlying question here is:
 > "What will happen when we stop using SHA1/RSA_PKCS1_PADDING for our
 consensus digests?"
 >
 > I would imagine we'll have to sign both SHA1/RSA_PKCS1_PADDING and
 SHA256/ED25519(?) for a while.

 Probably, yes.  I mean, we could also teach all fellow directory
 authorities how to verify the new signature scheme and then switch, but it
 seems easier to just include two signatures for a while.  It would violate
 the "Exactly Once" part in dir-spec.txt, but I guess that's easy to
 change.

 I'd say, for metrics-lib, let's assume it's at least possible that votes
 contain more than one signature, even if that has not happened so far.

 > I also have a related question:
 > What is the "String" key in the current metrics-lib
 getDirectorySignatures() map?

 From the latest Javadocs, that string is "the SHA-1 digest of the
 authority's identity key in the version 3 directory protocol, encoded as
 40 upper-case hexadecimal characters."

 Maybe the better answer is: let's get rid of that string, because it's
 confusing and is already contained in `DirectorySignature`, and turn the
 map into a list.  (See suggestion below.)

 > How does it handle signatures from legacy keys?

 Uhm, fine question.  IIUC, votes only contain signatures made by the
 authority's non-legacy key, and consensuses contain both legacy and non-
 legacy signatures.  So, for this ticket where we primarily consider votes,
 this doesn't matter.  And consensuses simply contain more signatures than
 there were authorities contributing to the consensus.

 > I'd suggest passing the algorithm / identity / signing key digest to the
 function (if they're not already implicit as part of the
 RelayNetworkStatusVote object).
 > That way, you can return the appropriate signature.
 > Perhaps it's worth having a form of the function with sensible defaults,
 like `getDirectorySignatureSHA1RSA()`, which would get the SHA1/RSA
 signature from the most recent signing key for that authority.

 I think the simpler approach is to return a list of all signatures which
 contain algorithm, identity and signing key digest, and let the
 application skip over all signatures it doesn't care about.  That would be
 `public List getSignatures()`, both in consensuses and
 in votes.

 Again, thanks for your feedback!

--
Ticket URL: 
Tor Bug Tracker & Wiki 
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] #19347 [Metrics/Metrics website]: axis labels are hard to parse

2016-06-08 Thread Tor Bug Tracker & Wiki
#19347: axis labels are hard to parse
-+-
 Reporter:  weasel   |  Owner:
 Type:  defect   | Status:  new
 Priority:  Medium   |  Milestone:
Component:  Metrics/Metrics website  |Version:
 Severity:  Normal   |   Keywords:
Actual Points:   |  Parent ID:
   Points:   |   Reviewer:
  Sponsor:   |
-+-
 During my last presentation for school students, I noticed that reading
 the y-labels on graphs such as the "Direct users by country" one at
 https://metrics.torproject.org/userstats-relay-country.html is
 unnecessarily difficult and error prone.  It always ends up being a game
 of count-the-zeroes, and people are notoriously bad at counting items in a
 list of identical things.

 Maybe instead of 1500 we could either write "1,500,000" or "1 500 000"
 (smaller spaces if available) or even 1.5e6.  All of them would be
 preferable (second one is my favorite).

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


Re: [tor-bugs] #18361 [Applications/Tor Browser]: Issues with corporate censorship and mass surveillance

2016-06-08 Thread Tor Bug Tracker & Wiki
#18361: Issues with corporate censorship and mass surveillance
--+--
 Reporter:  ioerror   |  Owner:  tbb-team
 Type:  enhancement   | Status:  new
 Priority:  High  |  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Critical  | Resolution:
 Keywords:  security, privacy, anonymity  |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:  None
--+--

Comment (by to1):

 When I attempt to post HERE on trac.torproject.org, I see the following
 error:

 = Submission rejected as potential spam
 = Content contained these blacklisted patterns: 'h t t p :', '(?i) b u s i
 n e s s'

 Below the error message, a CAPTCHA is displayed.  If I solve the CAPTCHA,
 the page simply refreshes.  I see the same error message, but now there is
 no CAPTCHA, no submit button, or anything else.  I recreated my post and
 solved the CAPTCHA correctly a dozen times, but it would not accept a
 correct solution.  I see that another user encountered the same problem
 here and assumed it was a Cloudflare issue.  They clearly did not
 understand that Tor Project does not use Cloudflare.  However, the CAPTCHA
 system is obviously broken in Trac too.  Would someone please fix this (or
 disable the CAPTCHA until it can be 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] #19346 [- Select a component]: 1 800-545-7482 for Aol tech support Number telephone number, (was: fsdf)

2016-06-08 Thread Tor Bug Tracker & Wiki
#19346: 1 800-545-7482 for Aol tech support Number telephone number,
--+
 Reporter:  killer2019|  Owner:
 Type:  defect| Status:  closed
 Priority:  Very High |  Milestone:  Tor: 0.3.0.x-final
Component:  - Select a component  |Version:
 Severity:  Critical  | Resolution:  fixed
 Keywords:|  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+
Changes (by killer2019):

 * status:  new => closed
 * severity:  Normal => Critical
 * priority:  Medium => Very High
 * milestone:   => Tor: 0.3.0.x-final
 * resolution:   => fixed


Comment:

 USA Aol Tech support Number CANADA 1800-545-7482 Aol TECH SUPPORT PHONE
 NUMBER Aol CUSTOMER SERVICE PHONE NUMBER here.1800-545-7482 Aol TECH
 SUPPORT PHONE NUMBER Aol tech support number 1 800-545-7482 Aol phone
 Number Usa USA Canada ,Aol tech support number Aol customer phone number,
 Aol cusomer service number, Aol help desk number, Aol customer care
 number, Aol support phone number, Aol password recovery phone number, Aol
 account recovery phone number, Aol toll free numbe help,JUSTs Call USA
 1-800-545-7482 Aol tech support number, Wireless /Aol customer service
 number, Aol support number,Aol phone number Aol customer phone number
 helpline number,USA CANADA>>1800800-7482 Aol TECH SUPPORT PHONE NUMBER Aol
 CUSTOMER SERVICE PHONE NUMBER here.1800-545-7482 Aol TECH SUPPORT PHONE
 NUMBER %%%Aol CUSTOMER SERVICE PHONE NUMBER Aol technical support number
 Aol helpdesk number Aol helpdesk phone number Aol Helpline number,Aol
 Phone number USA CANADA,(((1800800-7482-Aol phone number===Aol tech
 support PHONE NUMBER Helpline tollfree ===!!===1800800-7482== Aol tech
 support phone number ==!! Aol install TECH SUPPORT PHONE NUMBER FREE
 USA CANADA !!1800-545-7482 Aol TECH SUPPORT PHONE NUMBER %%%Aol CUSTOMER
 SERVICE PHONE NUMBER ===!!! *Aol customer service phone number!!! Aol
 phone number Aol telephone number!!1800-545-7482==Aol PHONE
 NUMBER!!!TECH SUPPORT phone number ++Aol TOLL FREE PHONE NUMBERPhone
 Number 1800-545-7482 USA CANADA, Aol 800 Support Phone Number, Aol
 Technical Support Phone Numbe here. Aol tech support number Aol Help Desk
 Number !!1800-545-7482 Describe toll free Aol Phone Number 1800-545-7482
 USA CANADA, Aol 800 Support Phone Number, Aol Technical Support Phone
 Number here.toll free Aol Phone Number 1800-545-7482 USA CANADA, Aol 800
 Support Phone Number, Aol Technical Support Phone Number toll free Aol
 Phone Number 1800-545-7482 USA CANADA, Aol 800 Support Phone Number, Aol
 Technical Support Phone Number, Aol Customer Support Number?? This article
 is in need of a technical review. This article is in need of an editorial
 review. Aol Phone Number 1800-545-7482 USA CANADA, Aol Support Phone
 Number, Aol Technical Support Phone Number, Aol Customer Support Number??
 Aol Support Phone Number 1800-545-7482 USA CANADA, Aol Phone Number, Aol
 Technical Support Phone Number, Aol Service Support Number Aol Support
 Phone Number 1800-545-7482 USA CANADA, Aol Phone Number, Aol Technical
 Support Phone Number, Aol Service Support Number?? Aol Phone Number
 1800-545-7482 USA CANADA, Aol 800 Support Phone Number, Aol Technical
 Support Phone Number, Aol Customer Support Number?? Aol Support Phone
 Number 1800-545-7482 USA CANADA, Aol Support Phone Number, Aol Technical
 Support Phone Number, Aol Customer Support Number?? Customer Service
 Number jacks Aol technical support number((1-800-545-7482 )) Aol Customer
 service number hi Aol technical support number Service Number
 (((1-800-545-7482 )) Customer support contact number Aol Help Desk
 Customer service phone number,US@~Supp 1-800-545-7482 Aol Technical
 Support phone Number, 1-800-545-7482 Aol Customer Support phone Number
 Caii for @@@1-800-545-7482 Aol Tech Support,Aol Customer Service
 Number,Aol tech support number,Aol customer service numrber,Aol toll free
 number,Aol support phone number,WhAt? Is @SeRvIcE 1-800-545-7482 Aol
 TeChNiCaL SuPpOrT NuMbEr? USA, Aol technical support phone
 number,1-800-545-7482 Kchintu((1-800-545-7482))Aol Customer service
 toll free number, Aol Customer Service phone Number,Contacts for Aol
 support @@((1-800-545-7482)) Aol Tech Support Customer Service
 Number,Sloves@@@(1-800-545-7482)@Aol Customer service number, Aol Customer
 Service phone Number,Contacts for Aol support @@((1-800-545-7482)) Aol
 Tech Support Customer Service Number,Helpline Number @@++sdfsdf Aol
 customer service number,1-800-545-7482 Aol Tech Support Customer Service
 Support Customer Help desk Phone Number,Aol Helpline Number
 @@++18008007482 Aol Tech Support Customer Service Support Customer Help
 desk Phone Number USA,Helpline Number @@++ sdfsdf Aol customer 

[tor-bugs] #19346 [- Select a component]: fsdf

2016-06-08 Thread Tor Bug Tracker & Wiki
#19346: fsdf
--+-
 Reporter:  killer2019|  Owner:
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  - Select a component  |Version:
 Severity:  Normal|   Keywords:
Actual Points:|  Parent ID:
   Points:|   Reviewer:
  Sponsor:|
--+-
 sdfcsfds

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


Re: [tor-bugs] #19345 [Core Tor/DocTor]: 1 800-545-7482 for Sbcglobal tech support Number telephone number, (was: asdsad)

2016-06-08 Thread Tor Bug Tracker & Wiki
#19345: 1 800-545-7482 for Sbcglobal tech support Number telephone number,
-+
 Reporter:  killer2019   |  Owner:
 Type:  defect   | Status:  closed
 Priority:  Very High|  Milestone:
Component:  Core Tor/DocTor  |Version:
 Severity:  Normal   | Resolution:  fixed
 Keywords:   |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+
Changes (by killer2019):

 * status:  new => closed
 * component:  - Select a component => Core Tor/DocTor
 * priority:  Medium => Very High
 * resolution:   => fixed


Comment:

 USA Sbcglobal Tech support Number CANADA 1800-545-7482 Sbcglobal TECH
 SUPPORT PHONE NUMBER Sbcglobal CUSTOMER SERVICE PHONE NUMBER
 here.1800-545-7482 Sbcglobal TECH SUPPORT PHONE NUMBER Sbcglobal tech
 support number 1 800-545-7482 Sbcglobal phone Number Usa USA Canada
 ,Sbcglobal tech support number Sbcglobal customer phone number, Sbcglobal
 cusomer service number, Sbcglobal help desk number, Sbcglobal customer
 care number, Sbcglobal support phone number, Sbcglobal password recovery
 phone number, Sbcglobal account recovery phone number, Sbcglobal toll free
 numbe help,JUSTs Call USA 1-800-545-7482 Sbcglobal tech support number,
 Wireless /Sbcglobal customer service number, Sbcglobal support
 number,Sbcglobal phone number Sbcglobal customer phone number helpline
 number,USA CANADA>>1800800-7482 Sbcglobal TECH SUPPORT PHONE NUMBER
 Sbcglobal CUSTOMER SERVICE PHONE NUMBER here.1800-545-7482 Sbcglobal TECH
 SUPPORT PHONE NUMBER %%%Sbcglobal CUSTOMER SERVICE PHONE NUMBER Sbcglobal
 technical support number Sbcglobal helpdesk number Sbcglobal helpdesk
 phone number Sbcglobal Helpline number,Sbcglobal Phone number USA
 CANADA,(((1800800-7482-Sbcglobal phone number===Sbcglobal tech support
 PHONE NUMBER Helpline tollfree ===!!===1800800-7482== Sbcglobal tech
 support phone number ==!! Sbcglobal install TECH SUPPORT PHONE NUMBER
 FREE USA CANADA !!1800-545-7482 Sbcglobal TECH SUPPORT PHONE NUMBER
 %%%Sbcglobal CUSTOMER SERVICE PHONE NUMBER ===!!! *Sbcglobal customer
 service phone number!!! Sbcglobal phone number Sbcglobal telephone
 number!!1800-545-7482==Sbcglobal PHONE NUMBER!!!TECH SUPPORT phone number
 ++Sbcglobal TOLL FREE PHONE NUMBERPhone Number 1800-545-7482 USA CANADA,
 Sbcglobal 800 Support Phone Number, Sbcglobal Technical Support Phone
 Numbe here. Sbcglobal tech support number Sbcglobal Help Desk Number
 !!1800-545-7482 Describe toll free Sbcglobal Phone Number 1800-545-7482
 USA CANADA, Sbcglobal 800 Support Phone Number, Sbcglobal Technical
 Support Phone Number here.toll free Sbcglobal Phone Number 1800-545-7482
 USA CANADA, Sbcglobal 800 Support Phone Number, Sbcglobal Technical
 Support Phone Number toll free Sbcglobal Phone Number 1800-545-7482 USA
 CANADA, Sbcglobal 800 Support Phone Number, Sbcglobal Technical Support
 Phone Number, Sbcglobal Customer Support Number?? This article is in need
 of a technical review. This article is in need of an editorial review.
 Sbcglobal Phone Number 1800-545-7482 USA CANADA, Sbcglobal Support Phone
 Number, Sbcglobal Technical Support Phone Number, Sbcglobal Customer
 Support Number?? Sbcglobal Support Phone Number 1800-545-7482 USA CANADA,
 Sbcglobal Phone Number, Sbcglobal Technical Support Phone Number,
 Sbcglobal Service Support Number Sbcglobal Support Phone Number
 1800-545-7482 USA CANADA, Sbcglobal Phone Number, Sbcglobal Technical
 Support Phone Number, Sbcglobal Service Support Number?? Sbcglobal Phone
 Number 1800-545-7482 USA CANADA, Sbcglobal 800 Support Phone Number,
 Sbcglobal Technical Support Phone Number, Sbcglobal Customer Support
 Number?? Sbcglobal Support Phone Number 1800-545-7482 USA CANADA,
 Sbcglobal Support Phone Number, Sbcglobal Technical Support Phone Number,
 Sbcglobal Customer Support Number?? Customer Service Number jacks
 Sbcglobal technical support number((1-800-545-7482 )) Sbcglobal Customer
 service number hi Sbcglobal technical support number Service Number
 (((1-800-545-7482 )) Customer support contact number Sbcglobal Help Desk
 Customer service phone number,US@~Supp 1-800-545-7482 Sbcglobal Technical
 Support phone Number, 1-800-545-7482 Sbcglobal Customer Support phone
 Number Caii for @@@1-800-545-7482 Sbcglobal Tech Support,Sbcglobal
 Customer Service Number,Sbcglobal tech support number,Sbcglobal customer
 service numrber,Sbcglobal toll free number,Sbcglobal support phone
 number,WhAt? Is @SeRvIcE 1-800-545-7482 Sbcglobal TeChNiCaL SuPpOrT
 NuMbEr? USA, Sbcglobal technical support phone number,1-800-545-7482
 Kchintu((1-800-545-7482))Sbcglobal Customer service toll free number,
 Sbcglobal Customer Service phone Number,Contacts for Sbcglobal support
 @@((1-800-545-7482)) Sbcglobal Tech Support Customer Service
 

[tor-bugs] #19344 [- Select a component]: sge

2016-06-08 Thread Tor Bug Tracker & Wiki
#19344: sge
--+
 Reporter:  ambermym  |  Owner:
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  - Select a component  |Version:
 Severity:  Normal|   Keywords:
Actual Points:|  Parent ID:  #19343
   Points:|   Reviewer:
  Sponsor:|
--+
 gsegh

--
Ticket URL: 
Tor Bug Tracker & Wiki 
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] #19345 [- Select a component]: asdsad

2016-06-08 Thread Tor Bug Tracker & Wiki
#19345: asdsad
--+-
 Reporter:  killer2019|  Owner:
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  - Select a component  |Version:
 Severity:  Normal|   Keywords:
Actual Points:|  Parent ID:
   Points:|   Reviewer:
  Sponsor:|
--+-
 sdfsf

--
Ticket URL: 
Tor Bug Tracker & Wiki 
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] #19343 [- Select a component]: dsbhsdrgh

2016-06-08 Thread Tor Bug Tracker & Wiki
#19343: dsbhsdrgh
--+-
 Reporter:  ambermym  |  Owner:
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  - Select a component  |Version:
 Severity:  Normal|   Keywords:
Actual Points:|  Parent ID:
   Points:|   Reviewer:
  Sponsor:|
--+-
 sedgseg

--
Ticket URL: 
Tor Bug Tracker & Wiki 
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] #19342 [- Select a component]: kafhfhh

2016-06-08 Thread Tor Bug Tracker & Wiki
#19342: kafhfhh
--+-
 Reporter:  ambermym  |  Owner:
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  - Select a component  |Version:
 Severity:  Normal|   Keywords:
Actual Points:|  Parent ID:
   Points:|   Reviewer:
  Sponsor:|
--+-
 agawgagarg

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


Re: [tor-bugs] #19276 [Applications/Tor Browser]: Scrolling is slow and CPU intensive

2016-06-08 Thread Tor Bug Tracker & Wiki
#19276: Scrolling is slow and CPU intensive
---+---
 Reporter:  cypherpunks|  Owner:  tbb-team
 Type:  defect | Status:
 Priority:  Medium |  needs_information
Component:  Applications/Tor Browser   |  Milestone:
 Severity:  Normal |Version:
 Keywords:  tbb-6.0-issues, tbb-usability  | Resolution:
Parent ID: |  Actual Points:
 Reviewer: | Points:
   |Sponsor:
---+---

Comment (by cypherpunks):

 Replying to [comment:3 gk]:
 > I guess this is on a Windows OS? Which version? Do you see error output
 or something on the browser console (Ctrl + Shift + J) while scrolling?
 Sorry for not mentioning the platform. The issue occurs on a Debian
 testing box. There was nothing in the browser console besides unrelated
 messages.

 I've done some more testing to try and find why there was a difference
 between Firefox and TB. Unfortunately the previous comparison wasn't
 accurate as the Firefox instance i used was heavily modified. Using a
 clean profile made the issue appear with Firefox too so it's not TB
 specific.

 Turns out issue is solved by setting `gfx.xrender.enabled` to `false`.
 Because I'm unfamiliar with the Firefox code base, i don't know what the
 preference does, what its impact is, and whether it's worth setting in TB.
 Hopefully someone else can figure this out.

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


[tor-bugs] #19341 [- Select a component]: agsaerg

2016-06-08 Thread Tor Bug Tracker & Wiki
#19341: agsaerg
--+-
 Reporter:  ambermym  |  Owner:
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  - Select a component  |Version:
 Severity:  Normal|   Keywords:
Actual Points:|  Parent ID:
   Points:|   Reviewer:
  Sponsor:|
--+-
 segserg

--
Ticket URL: 
Tor Bug Tracker & Wiki 
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] #19339 [- Select a component]: dff

2016-06-08 Thread Tor Bug Tracker & Wiki
#19339: dff
--+-
 Reporter:  killer2019|  Owner:
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  - Select a component  |Version:
 Severity:  Normal|   Keywords:
Actual Points:|  Parent ID:
   Points:|   Reviewer:
  Sponsor:|
--+-
 fds

--
Ticket URL: 
Tor Bug Tracker & Wiki 
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] #19340 [- Select a component]: Bitdefender A.n.t.i.v.i.r.u.s p.h.o.n.e n.u.m.b.e.r 18~00.44.52.79~0 canada Bitdefender A.n.t.i.v.i.r.u.s tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r usa

2016-06-08 Thread Tor Bug Tracker & Wiki
#19340: Bitdefender A.n.t.i.v.i.r.u.s p.h.o.n.e n.u.m.b.e.r 18~00.44.52.79~0 
canada
Bitdefender A.n.t.i.v.i.r.u.s tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r usa
--+-
 Reporter:  ambermym  |  Owner:
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  - Select a component  |Version:
 Severity:  Normal|   Keywords:
Actual Points:|  Parent ID:
   Points:|   Reviewer:
  Sponsor:|
--+-
 Bitdefender A.n.t.i.v.i.r.u.s p.h.o.n.e n.u.m.b.e.r 18~00.44.52.79~0
 canada Bitdefender A.n.t.i.v.i.r.u.s tech s.u.p.p.o.r.t p.h.o.n.e
 n.u.m.b.e.r usa
 Bitdefender A.n.t.i.v.i.r.u.s p.h.o.n.e n.u.m.b.e.r 18~00.44.52.79~0
 canada Bitdefender A.n.t.i.v.i.r.u.s tech s.u.p.p.o.r.t p.h.o.n.e
 n.u.m.b.e.r usa

 changed from trsu to Bitdefender 360 p.h.o.n.e n.u.m.b.e.r
 18~00.44.52.79~0 canada Bitdefender tech s.u.p.p.o.r.t p.h.o.n.e
 n.u.m.b.e.r usa

 Bitdefender 360 p.h.o.n.e n.u.m.b.e.r 1 800 445 2790 canada Bitdefender
 tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r usa

 Bitdefender 360 p.h.o.n.e n.u.m.b.e.r 1 800 445 2790 Bitdefender tech
 s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, Bitdefender A.n.t.i.v.i.r.u.s
 c.u.s.t.o.m.e.r service p.h.o.n.e n.u.m.b.e.r

 Bitdefender p.h.o.n.e n.u.m.b.e.r 1 800 445 2790 Bitdefender
 A.n.t.i.v.i.r.u.s tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r Bitdefender
 p.h.o.n.e n.u.m.b.e.r1 800 445 2790 Bitdefender A.n.t.i.v.i.r.u.s tech
 s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r Bitdefender p.h.o.n.e n.u.m.b.e.r1 800
 445 2790 Bitdefender A.n.t.i.v.i.r.u.s tech s.u.p.p.o.r.t p.h.o.n.e
 n.u.m.b.e.r Describe Bitdefender A.n.t.i.v.i.r.u.s UsA @ 1800 445 2790 @
 tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r Bitdefender A.n.t.i.v.i.r.u.s
 c.u.s.t.o.m.e.r service p.h.o.n.e n.u.m.b.e.r here. Bitdefender
 A.n.t.i.v.i.r.u.s UsA @ 1800 445 2790 @ tech s.u.p.p.o.r.t p.h.o.n.e
 n.u.m.b.e.r Bitdefender A.n.t.i.v.i.r.u.s s.u.p.p.o.r.t p.h.o.n.e
 n.u.m.b.e.r Describe Bitdefender A.n.t.i.v.i.r.u.s UsA @ 1800 445 2790 @
 tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r Bitdefender A.n.t.i.v.i.r.u.s
 s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r here. Describe Bitdefender
 A.n.t.i.v.i.r.u.s Usa @ 1800 445 2790 @ tech s.u.p.p.o.r.t p.h.o.n.e
 n.u.m.b.e.r Bitdefender A.n.t.i.v.i.r.u.s s.u.p.p.o.r.t p.h.o.n.e
 n.u.m.b.e.r here.Bitdefender A.n.t.i.v.i.r.u.s | 1800 445 2790 | tech
 s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r Bitdefender A.n.t.i.v.i.r.u.s
 c.u.s.t.o.m.e.r care p.h.o.n.e n.u.m.b.e.r Bitdefender A.n.t.i.v.i.r.u.s
 s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r 1-800 445 2790 (australia) Online Best
 Bitdefender A.n.t.i.v.i.r.u.s s.u.p.p.o.r.t by toll free p.h.o.n.e
 n.u.m.b.e.r 1-800 445 2790 (Australia) to fix troubleshooting issues. We
 provide Bitdefender A.n.t.i.v.i.r.u.s t.e.c.h.n.i.c.a.l c.u.s.t.o.m.e.r
 service to resolve problems when your A.n.t.i.v.i.r.u.s not printing,
 problem to download A.n.t.i.v.i.r.u.s drivers, configure network and other
 issues. Keyword: Bitdefender A.n.t.i.v.i.r.u.s s.u.p.p.o.r.t, Bitdefender
 A.n.t.i.v.i.r.u.s tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r 1800 445
 2790(USA) Bitdefender A.n.t.i.v.i.r.u.s s.u.p.p.o.r.t p.h.o.n.e
 n.u.m.b.e.r USA, UK, CANADA,AustraliaOnline? Best Bitdefender
 A.n.t.i.v.i.r.u.s s.u.p.p.o.r.t by toll free p.h.o.n.e n.u.m.b.e.r 1-800
 445 2790 (Australia) to fix troubleshooting issues. We provide Bitdefender
 A.n.t.i.v.i.r.u.s t.e.c.h.n.i.c.a.l c.u.s.t.o.m.e.r service to resolve
 problems when your A.n.t.i.v.i.r.u.s not printing, problem to download
 A.n.t.i.v.i.r.u.s drivers, configure network and other issues. (For UK
 0-800-078-6054), (For USA 1800 445 2790), (For AUSTRALIA 1-800 445 2790)
 Bitdefender A.n.t.i.v.i.r.u.s service center n.u.m.b.e.r Bitdefender
 c.u.s.t.o.m.e.r service n.u.m.b.e.r usa Bitdefender telep.h.o.n.e
 n.u.m.b.e.r Bitdefender A.n.t.i.v.i.r.u.s help n.u.m.b.e.r Bitdefender
 A.n.t.i.v.i.r.u.s c.u.s.t.o.m.e.r service n.u.m.b.e.r usa Bitdefender
 service n.u.m.b.e.r Bitdefender A.n.t.i.v.i.r.u.s c.u.s.t.o.m.e.r service
 telep.h.o.n.e n.u.m.b.e.r Bitdefender help n.u.m.b.e.r Bitdefender
 helpline n.u.m.b.e.r Bitdefender A.n.t.i.v.i.r.u.s tech s.u.p.p.o.r.t
 telep.h.o.n.e n.u.m.b.e.r Bitdefender A.n.t.i.v.i.r.u.ss service center
 n.u.m.b.e.r Bitdefender c.u.s.t.o.m.e.r care n.u.m.b.e.r Bitdefender
 s.u.p.p.o.r.t Canada p.h.o.n.e n.u.m.b.e.r Bitdefender canada
 s.u.p.p.o.r.t n.u.m.b.e.r Bitdefender p.h.o.n.e n.u.m.b.e.r canada
 Bitdefender canada p.h.o.n.e n.u.m.b.e.r Bitdefender service center
 contact n.u.m.b.e.r Bitdefender canada contact n.u.m.b.e.r Bitdefender
 contact n.u.m.b.e.r Canada Bitdefender service toll free n.u.m.b.e.r
 Bitdefender c.u.s.t.o.m.e.r care toll free n.u.m.b.e.r Bitdefender
 A.n.t.i.v.i.r.u.s c.u.s.t.o.m.e.r s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r
 Bitdefender 

[tor-bugs] #19338 [- Select a component]: Talk:To Norton 1-8OO-445-279O norton antivirus s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r Norton 360 s.u.p.p.o.r.t n.u.m.b.e.r

2016-06-08 Thread Tor Bug Tracker & Wiki
#19338: Talk:To Norton 1-8OO-445-279O norton antivirus s.u.p.p.o.r.t p.h.o.n.e
n.u.m.b.e.r Norton 360 s.u.p.p.o.r.t n.u.m.b.e.r
-+-
 Reporter:  ambermym |  Owner:
 Type:  defect   | Status:  new
 Priority:  Medium   |  Milestone:
Component:  - Select a   |Version:
  component  |   Keywords:  norton antivirus
 Severity:  Normal   |  s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r
Actual Points:  norton antivirus |  Parent ID:
  s.u.p.p.o.r.t p.h.o.n.e|   Reviewer:  norton antivirus
  n.u.m.b.e.r|  s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r
   Points:  norton antivirus |
  s.u.p.p.o.r.t p.h.o.n.e|
  n.u.m.b.e.r|
  Sponsor:   |
-+-
 1-8OO-308-5960 N.o.r.t.o.n .a.n.t.i.v.i.r.u.s c.u.s.t.o.m.e.r
 s.e.r.v.i.c.e P.h.o.n.e number n.o.r.t.o.n t.e.c.h .s.u.p.p.o.r.t number
 @@ 1-8OO-308-5960 N.o.r.t.o.n .a.n.t.i.v.i.r.u.s c.u.s.t.o.m.e.r
 s.e.r.v.i.c.e P.h.o.n.e number n.o.r.t.o.n t.e.c.h .s.u.p.p.o.r.t number
 usa n.o.r.t.o.n teleP.h.o.n.e number n.o.r.t.o.n toll free number
 n.o.r.t.o.n u.s.a n.o.r.t.o.n s.u.p.p.o.r.t services technical
 s.u.p.p.o.r.t for n.o.r.t.o.n c.u.s.t.o.m.e.r s.e.r.v.i.c.e P.h.o.n.e
 number n.o.r.t.o.n u.s.a n.o.r.t.o.n customer care number n.o.r.t.o.n
 u.s.a n.o.r.t.o.n customer care number n.o.r.t.o.n customer care center
 n.o.r.t.o.n customer s.u.p.p.o.r.t n.o.r.t.o.n customer s.u.p.p.o.r.t
 P.h.o.n.e n.o.r.t.o.n customer h.e.l.p n.o.r.t.o.n customer & technical
 s.u.p.p.o.r.t n.o.r.t.o.n customer portal n.o.r.t.o.n customer care
 P.h.o.n.e number n.o.r.t.o.n u.s.a n.o.r.t.o.n customer care email
 n.o.r.t.o.n h.e.l.p.l.i.n.e n.o.r.t.o.n tech s.u.p.p.o.r.t contact
 n.o.r.t.o.n customer care toll free n.o.r.t.o.n c.u.s.t.o.m.e.r
 s.e.r.v.i.c.e number n.o.r.t.o.n protection c.u.s.t.o.m.e.r s.e.r.v.i.c.e
 number n.o.r.t.o.n software c.u.s.t.o.m.e.r s.e.r.v.i.c.e number
 n.o.r.t.o.n hotline c.u.s.t.o.m.e.r s.e.r.v.i.c.e P.h.o.n.e number
 n.o.r.t.o.n c.u.s.t.o.m.e.r s.e.r.v.i.c.e P.h.o.n.e number n.o.r.t.o.n us
 how to contact n.o.r.t.o.n by email n.o.r.t.o.n free P.h.o.n.e
 s.u.p.p.o.r.t n.o.r.t.o.n technical s.u.p.p.o.r.t number n.o.r.t.o.n
 technical s.u.p.p.o.r.t h.e.l.p desk P.h.o.n.e number n.o.r.t.o.n
 technical s.u.p.p.o.r.t number n.o.r.t.o.n toll free number n.o.r.t.o.n
 customer s.u.p.p.o.r.t P.h.o.n.e number n.o.r.t.o.n c.u.s.t.o.m.e.r
 s.e.r.v.i.c.e P.h.o.n.e number n.o.r.t.o.n P.h.o.n.e number n.o.r.t.o.n
 for n.o.r.t.o.n c.u.s.t.o.m.e.r s.e.r.v.i.c.e contact n.o.r.t.o.n
 c.u.s.t.o.m.e.r s.e.r.v.i.c.e P.h.o.n.e number n.o.r.t.o.n security
 s.u.p.p.o.r.t P.h.o.n.e number n.o.r.t.o.n internet security s.u.p.p.o.r.t
 P.h.o.n.e number n.o.r.t.o.n P.h.o.n.e number n.o.r.t.o.n for n.o.r.t.o.n
 security n.o.r.t.o.n internet security P.h.o.n.e number n.o.r.t.o.n in
 u.s.a n.o.r.t.o.n contact P.h.o.n.e number n.o.r.t.o.n in u.s.a
 n.o.r.t.o.n security contact P.h.o.n.e number n.o.r.t.o.n h.e.l.p desk
 P.h.o.n.e number n.o.r.t.o.n in u.s.a n.o.r.t.o.n tech s.u.p.p.o.r.t
 P.h.o.n.e number n.o.r.t.o.n free in u.s.a n.o.r.t.o.n s.u.p.p.o.r.t
 P.h.o.n.e number n.o.r.t.o.n P.h.o.n.e number n.o.r.t.o.n s.u.p.p.o.r.t
 for technical issue in u.s.a P.h.o.n.e number n.o.r.t.o.n for n.o.r.t.o.n
 technical s.u.p.p.o.r.t n.o.r.t.o.n c.u.s.t.o.m.e.r s.e.r.v.i.c.e
 teleP.h.o.n.e number n.o.r.t.o.n toll free customer care
 number1-8OO-308-5960 FREE++ n.o.r.t.o.n us n.o.r.t.o.n c.u.s.t.o.m.e.r
 s.e.r.v.i.c.e P.h.o.n.e number n.o.r.t.o.n u.s.a n.o.r.t.o.n teleP.h.o.n.e
 number n.o.r.t.o.n P.h.o.n.e number n.o.r.t.o.n u.s.a n.o.r.t.o.n contact
 number n.o.r.t.o.n number n.o.r.t.o.n contact number n.o.r.t.o.n u.s.a
 n.o.r.t.o.n h.e.l.p.l.i.n.e number n.o.r.t.o.n h.e.l.p.l.i.n.e number
 n.o.r.t.o.n customer number n.o.r.t.o.n c.u.s.t.o.m.e.r s.e.r.v.i.c.e
 number n.o.r.t.o.n contact teleP.h.o.n.e number n.o.r.t.o.n contact number
 n.o.r.t.o.n for n.o.r.t.o.n software contact number n.o.r.t.o.n toll free
 number n.o.r.t.o.n teleP.h.o.n.e number n.o.r.t.o.n uk n.o.r.t.o.n
 registration number n.o.r.t.o.n toll free number n.o.r.t.o.n u.s.a
 n.o.r.t.o.n c.u.s.t.o.m.e.r s.e.r.v.i.c.e n.o.r.t.o.n software
 c.u.s.t.o.m.e.r s.e.r.v.i.c.e contact n.o.r.t.o.n c.u.s.t.o.m.e.r
 s.e.r.v.i.c.e n.o.r.t.o.n c.u.s.t.o.m.e.r s.e.r.v.i.c.e P.h.o.n.e
 n.o.r.t.o.n c.u.s.t.o.m.e.r s.e.r.v.i.c.e n.o.r.t.o.n service n.o.r.t.o.n
 technical s.u.p.p.o.r.t n.o.r.t.o.n customer s.u.p.p.o.r.t n.o.r.t.o.n
 technical s.u.p.p.o.r.t reviews teleP.h.o.n.e n.o.r.t.o.n n.o.r.t.o.n tech
 s.u.p.p.o.r.t P.h.o.n.e number n.o.r.t.o.n tech s.u.p.p.o.r.t P.h.o.n.e
 number n.o.r.t.o.n c.u.s.t.o.m.e.r s.e.r.v.i.c.e n.o.r.t.o.n technical
 s.u.p.p.o.r.t P.h.o.n.e number n.o.r.t.o.n free s.u.p.p.o.r.t n.o.r.t.o.n
 

Re: [tor-bugs] #19049 [Applications/TorBirdy]: Use the same proxy port for Enigmail

2016-06-08 Thread Tor Bug Tracker & Wiki
#19049: Use the same proxy port for Enigmail
---+-
 Reporter:  cypherpunks|  Owner:  sukhbir
 Type:  defect | Status:  closed
 Priority:  Medium |  Milestone:
Component:  Applications/TorBirdy  |Version:
 Severity:  Normal | Resolution:  fixed
 Keywords: |  Actual Points:
Parent ID: | Points:
 Reviewer: |Sponsor:
---+-
Changes (by sukhbir):

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


Comment:

 I have updated this (port is set 9150) in commit
 
[https://gitweb.torproject.org/torbirdy.git/commit/?id=2a8e7d8dfb5360fa1772796ee3f6dcc33474d0e1
 2a8e7d]. It's unlikely that #10762 will be merged in this release, so till
 then let's use the correct port. Thanks for reporting.

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


Re: [tor-bugs] #19334 [Applications/Tor Browser]: Crash at startup

2016-06-08 Thread Tor Bug Tracker & Wiki
#19334: Crash at startup
---+---
 Reporter:  Joek Naym  |  Owner:
 Type:  defect | Status:  closed
 Priority:  Very High  |  Milestone:
Component:  Applications/Tor Browser   |Version:
 Severity:  Major  | Resolution:  duplicate
 Keywords:  tbb-crash, tbb-6.0-issues  |  Actual Points:
Parent ID: | Points:
 Reviewer: |Sponsor:
---+---
Changes (by gk):

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


Comment:

 Thanks, this is a duplicate of #8337.

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


Re: [tor-bugs] #8337 [Applications/Tor Browser]: Trusteer crashes Tor Browser

2016-06-08 Thread Tor Bug Tracker & Wiki
#8337: Trusteer crashes Tor Browser
--+---
 Reporter:  mo|  Owner:  mikeperry
 Type:  defect| Status:  needs_information
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal| Resolution:
 Keywords:  tbb-crash |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+---
Changes (by gk):

 * cc: Joek, Naym (removed)


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


Re: [tor-bugs] #8337 [Applications/Tor Browser]: Trusteer crashes Tor Browser (was: Trusteer Rapport crashes Tor Browser)

2016-06-08 Thread Tor Bug Tracker & Wiki
#8337: Trusteer crashes Tor Browser
--+---
 Reporter:  mo|  Owner:  mikeperry
 Type:  defect| Status:  needs_information
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal| Resolution:
 Keywords:  tbb-crash |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+---
Changes (by gk):

 * cc: Joek, Naym (added)


Comment:

 #19334 is duplicate.

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


Re: [tor-bugs] #19334 [Applications/Tor Browser]: Crash at startup

2016-06-08 Thread Tor Bug Tracker & Wiki
#19334: Crash at startup
---+---
 Reporter:  Joek Naym  |  Owner:
 Type:  defect | Status:  needs_information
 Priority:  Very High  |  Milestone:
Component:  Applications/Tor Browser   |Version:
 Severity:  Major  | Resolution:
 Keywords:  tbb-crash, tbb-6.0-issues  |  Actual Points:
Parent ID: | Points:
 Reviewer: |Sponsor:
---+---

Comment (by Joek Naym):

 I found the problem, Tor Browser works if I disable Trusteer Endpoint
 Protection, which is up to date.

 I'm on a computer at home.

 Let me know if there is more information I can give.

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


Re: [tor-bugs] #19200 [Applications/Tor Browser]: HTML5 video not blocked with placeholder, plays automatically

2016-06-08 Thread Tor Bug Tracker & Wiki
#19200: HTML5 video not blocked with placeholder, plays automatically
-+-
 Reporter:  potato   |  Owner:  tbb-
 Type:  defect   |  team
 Priority:  High | Status:  new
Component:  Applications/Tor Browser |  Milestone:
 Severity:  Major|Version:
 Keywords:  tbb-security-slider, tbb-6.0-issues  | Resolution:
Parent ID:   |  Actual Points:
 Reviewer:   | Points:
 |Sponsor:
-+-
Changes (by gk):

 * keywords:  tbb-security-slider => tbb-security-slider, tbb-6.0-issues


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


Re: [tor-bugs] #19210 [Applications/Tor Browser]: NoScript places WebM videos too late behind click-to-play in higher security levels

2016-06-08 Thread Tor Bug Tracker & Wiki
#19210: NoScript places WebM videos too late behind click-to-play in higher
security levels
-+-
 Reporter:  gk   |  Owner:  tbb-
 Type:  defect   |  team
 Priority:  High | Status:  new
Component:  Applications/Tor Browser |  Milestone:
 Severity:  Major|Version:
 Keywords:  tbb-regression, tbb-security-| Resolution:
  slider, tbb-6.0-issues |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by gk):

 * keywords:  tbb-regression, tbb-security-slider => tbb-regression, tbb-
 security-slider, tbb-6.0-issues


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


Re: [tor-bugs] #18860 [Applications/Tor Browser]: Text on reply button in Trac is not visible on Linux

2016-06-08 Thread Tor Bug Tracker & Wiki
#18860: Text on reply button in Trac is not visible on Linux
-+-
 Reporter:  gk   |  Owner:  tbb-
 Type:  defect   |  team
 Priority:  Medium   | Status:
Component:  Applications/Tor Browser |  needs_information
 Severity:  Normal   |  Milestone:
 Keywords:  ff45-esr, tbb-usability, tbb-|Version:
  fingerprinting-fonts, tbb-regression,  | Resolution:
  TorBrowserTeam201606, tbb-6.0-issues   |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by gk):

 * keywords:
 ff45-esr, tbb-usability, tbb-fingerprinting-fonts, tbb-regression,
 TorBrowserTeam201606
 =>
 ff45-esr, tbb-usability, tbb-fingerprinting-fonts, tbb-regression,
 TorBrowserTeam201606, tbb-6.0-issues


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


Re: [tor-bugs] #19257 [Applications/Tor Browser]: Tor Browser on Windows is using msvcr120.dll and crashing

2016-06-08 Thread Tor Bug Tracker & Wiki
#19257: Tor Browser on Windows is using msvcr120.dll and crashing
---+--
 Reporter:  gk |  Owner:  tbb-team
 Type:  defect | Status:  new
 Priority:  High   |  Milestone:
Component:  Applications/Tor Browser   |Version:
 Severity:  Major  | Resolution:
 Keywords:  tbb-crash, tbb-6.0-issues  |  Actual Points:
Parent ID: | Points:
 Reviewer: |Sponsor:
---+--
Changes (by gk):

 * keywords:  tbb-crash => tbb-crash, tbb-6.0-issues


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


Re: [tor-bugs] #19214 [Applications/Tor Browser]: After updating to TB 6.0.0, displayed search plugins reset

2016-06-08 Thread Tor Bug Tracker & Wiki
#19214: After updating to TB 6.0.0, displayed search plugins reset
---+--
 Reporter:  ironical   |  Owner:  tbb-team
 Type:  defect | Status:  new
 Priority:  Medium |  Milestone:
Component:  Applications/Tor Browser   |Version:
 Severity:  Normal | Resolution:
 Keywords:  tbb-6.0-issues, tbb-usability  |  Actual Points:
Parent ID: | Points:
 Reviewer: |Sponsor:
---+--
Changes (by gk):

 * keywords:  tor browser search plugin 6.0.0 => tbb-6.0-issues, tbb-
   usability


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


Re: [tor-bugs] #18525 [Applications/Tor Browser]: Tor Browser no longer shows message when screen is maximized

2016-06-08 Thread Tor Bug Tracker & Wiki
#18525: Tor Browser no longer shows message when screen is maximized
--+
 Reporter:  cypherpunks   |  Owner:  tbb-team
 Type:  defect| Status:  closed
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal| Resolution:  worksforme
 Keywords:|  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+
Changes (by gk):

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


Comment:

 Thanks for retesting. Showing the warning on full screen and after
 pressing F11 would be separate bugs.

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


Re: [tor-bugs] #19317 [Metrics/CollecTor]: Sanitize TCP ports in bridge descriptors

2016-06-08 Thread Tor Bug Tracker & Wiki
#19317: Sanitize TCP ports in bridge descriptors
---+-
 Reporter:  karsten|  Owner:
 Type:  enhancement| Status:  new
 Priority:  Medium |  Milestone:
Component:  Metrics/CollecTor  |Version:
 Severity:  Normal | Resolution:
 Keywords: |  Actual Points:
Parent ID: | Points:
 Reviewer: |Sponsor:
---+-

Comment (by karsten):

 Huh, good point, didn't think of that.  How about we make the following
 two changes, one related to your suggestion and one unrelated?

  - Take out the `% 65535 + 1` part to make this calculation a little less
 complicated, at the risk of accidentally changing 1 in 2^16^ ports to 0.
  - Add clarifying sentence: "All calculations assume that inputs and
 outputs are in network byte order."  Does that make sense, or is there a
 better sentence to add here?  (We'll want to add a similar sentence to the
 IP address sanitizing part.)

 New paragraph would be:

  - Each non-zero TCP port is replaced with `H(port | bridge identity |
 secret)[:2]` written as decimal number.  The input `port` is the 2-byte
 long binary representation of the TCP port.  The `bridge identity` is the
 20-byte long binary representation of the bridge's long-term identity
 fingerprint.  The `secret` is a 33-byte long secure random string that
 changes once per month for all descriptors and statuses published in that
 month.  `H()` is SHA-256.  The `[:2]` operator means that we pick the 2
 most significant bytes of the result.  All operations assume network byte
 order for their inputs and outputs.  TCP ports that are 0 in the original
 descriptor are left unchanged.

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


Re: [tor-bugs] #19263 [Applications/Tor Browser]: Tor browser now fullscreens itself rather than keeping to a standard size

2016-06-08 Thread Tor Bug Tracker & Wiki
#19263: Tor browser now fullscreens itself rather than keeping to a standard 
size
+--
 Reporter:  torbrowseruser2016  |  Owner:  tbb-team
 Type:  defect  | Status:  new
 Priority:  Medium  |  Milestone:
Component:  Applications/Tor Browser|Version:
 Severity:  Normal  | Resolution:
 Keywords:  tbb-6.0-issues, tbb-fingerprinting  |  Actual Points:
Parent ID:  | Points:
 Reviewer:  |Sponsor:
+--
Changes (by gk):

 * keywords:   => tbb-6.0-issues, tbb-fingerprinting


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


Re: [tor-bugs] #19276 [Applications/Tor Browser]: Scrolling is slow and CPU intensive

2016-06-08 Thread Tor Bug Tracker & Wiki
#19276: Scrolling is slow and CPU intensive
---+---
 Reporter:  cypherpunks|  Owner:  tbb-team
 Type:  defect | Status:
 Priority:  Medium |  needs_information
Component:  Applications/Tor Browser   |  Milestone:
 Severity:  Normal |Version:
 Keywords:  tbb-6.0-issues, tbb-usability  | Resolution:
Parent ID: |  Actual Points:
 Reviewer: | Points:
   |Sponsor:
---+---
Changes (by gk):

 * keywords:   => tbb-6.0-issues, tbb-usability
 * status:  new => needs_information


Comment:

 I guess this is on a Windows OS? Which version? Do you see error output or
 something on the browser console (Ctrl + Shift + J) while scrolling?

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


Re: [tor-bugs] #19276 [Applications/Tor Browser]: Scrolling is slow and CPU intensive

2016-06-08 Thread Tor Bug Tracker & Wiki
#19276: Scrolling is slow and CPU intensive
--+--
 Reporter:  cypherpunks   |  Owner:  tbb-team
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal| Resolution:
 Keywords:|  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+--

Comment (by cypherpunks):

 TB 6.0.1 still has the issue.

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


Re: [tor-bugs] #17277 [Core Tor/Chutney]: Chutney tests should include misbehaving clients and servers

2016-06-08 Thread Tor Bug Tracker & Wiki
#17277: Chutney tests should include misbehaving clients and servers
--+--
 Reporter:  nickm |  Owner:  nickm
 Type:  task  | Status:  closed
 Priority:  Medium|  Milestone:
Component:  Core Tor/Chutney  |Version:
 Severity:  Normal| Resolution:  duplicate
 Keywords:|  Actual Points:
Parent ID:| Points:  medium
 Reviewer:|Sponsor:  SponsorS-can
--+--

Comment (by cypherpunks):

 #12790 does not exist, should be #17290.

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


Re: [tor-bugs] #19238 [Internal Services/Tor Sysadmin Team]: move colchicifolium [collector] to textile

2016-06-08 Thread Tor Bug Tracker & Wiki
#19238: move colchicifolium [collector] to textile
-+
 Reporter:  weasel   |  Owner:  tpa
 Type:  defect   | Status:  closed
 Priority:  Medium   |  Milestone:
Component:  Internal Services/Tor Sysadmin Team  |Version:
 Severity:  Normal   | Resolution:  fixed
 Keywords:   |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+
Changes (by weasel):

 * status:  new => 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] #19272 [Applications/Tor Browser]: tor won't open

2016-06-08 Thread Tor Bug Tracker & Wiki
#19272: tor won't open
--+---
 Reporter:  JDRedneck |  Owner:  tbb-team
 Type:  defect| Status:  needs_information
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal| Resolution:
 Keywords:|  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+---
Changes (by gk):

 * 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] #19335 [Applications/Tor Browser]: Tor circuit not displayed

2016-06-08 Thread Tor Bug Tracker & Wiki
#19335: Tor circuit not displayed
-+-
 Reporter:  axdoomer |  Owner:  tbb-
 Type:  defect   |  team
 Priority:  Medium   | Status:
Component:  Applications/Tor Browser |  needs_information
 Severity:  Normal   |  Milestone:
 Keywords:  tbb-circuit-display, tbb-6.0-issues  |Version:
Parent ID:   | Resolution:
 Reviewer:   |  Actual Points:
 | Points:
 |Sponsor:
-+-
Changes (by gk):

 * cc: arthuredelstein (added)
 * keywords:   => tbb-circuit-display, tbb-6.0-issues
 * status:  new => needs_information


Comment:

 Interesting. Is this reproducible? Is this on every website happening?

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


Re: [tor-bugs] #19334 [Applications/Tor Browser]: Crash at startup

2016-06-08 Thread Tor Bug Tracker & Wiki
#19334: Crash at startup
---+---
 Reporter:  Joek Naym  |  Owner:
 Type:  defect | Status:  needs_information
 Priority:  Very High  |  Milestone:
Component:  Applications/Tor Browser   |Version:
 Severity:  Major  | Resolution:
 Keywords:  tbb-crash, tbb-6.0-issues  |  Actual Points:
Parent ID: | Points:
 Reviewer: |Sponsor:
---+---
Changes (by gk):

 * keywords:  crash, startup, 6.0.1, Windows 7, 6.0.0, 6.5a1 => tbb-crash,
 tbb-6.0-issues
 * status:  new => needs_information
 * component:  - Select a component => Applications/Tor Browser
 * severity:  Normal => Major


Comment:

 Are you in an enterprise environemnt or is this a computer at home? Which
 kine of antivirus/firewall software do you have running? Which version?
 Could you help testing custom bundles we make for you to understand the
 problem better?

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


[tor-bugs] #19336 [Applications/Tor Browser]: Make text stand out in about:tbupdate

2016-06-08 Thread Tor Bug Tracker & Wiki
#19336: Make text stand out in about:tbupdate
--+--
 Reporter:  cypherpunks   |  Owner:  tbb-team
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal|   Keywords:
Actual Points:|  Parent ID:
   Points:|   Reviewer:
  Sponsor:|
--+--
 All text seems very plain and normal it doesn't stand out as an update at
 all and I can see someone simply closing it or moving to another page
 without realising an update has taken place.

 One step would be to bold the text:
 "Tor Browser has been updated."
 "Changelog:"

 Secondly may not be related, but on tor browser startup the url bar is
 empty and it doesn't say whether it is about:tor or about:tbupdate why is
 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


  1   2   >