Re: [tor-bugs] #16151 [Metrics/metrics-lib]: Add new descriptor source to fetch descriptors from CollecTor via https

2016-10-08 Thread Tor Bug Tracker & Wiki
#16151: Add new descriptor source to fetch descriptors from CollecTor via https
-+---
 Reporter:  karsten  |  Owner:  karsten
 Type:  enhancement  | Status:  needs_information
 Priority:  Medium   |  Milestone:
Component:  Metrics/metrics-lib  |Version:
 Severity:  Normal   | Resolution:
 Keywords:   |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+---
Changes (by iwakeh):

 * severity:   => Normal


Comment:

 see #20323

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

Re: [tor-bugs] #8799 [Metrics/CollecTor]: Add timeouts to collector's relay descriptor downloads

2016-10-08 Thread Tor Bug Tracker & Wiki
#8799: Add timeouts to collector's relay descriptor downloads
---+-
 Reporter:  karsten|  Owner:  iwakeh
 Type:  enhancement| Status:  assigned
 Priority:  Medium |  Milestone:  CollecTor 1.2.0
Component:  Metrics/CollecTor  |Version:
 Severity:  Normal | Resolution:
 Keywords:  ctip   |  Actual Points:
Parent ID: | Points:
 Reviewer: |Sponsor:
---+-

Comment (by iwakeh):

 see #20323

--
Ticket URL: 
Tor Bug Tracker & Wiki 
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] #20323 [Metrics/metrics-lib]: avoid httpurl connection and use more robust approach

2016-10-08 Thread Tor Bug Tracker & Wiki
#20323: avoid httpurl connection and use more robust approach
-+---
 Reporter:  iwakeh   |  Owner:  karsten
 Type:  defect   | Status:  new
 Priority:  Medium   |  Milestone:  metrics-lib 1.5.0
Component:  Metrics/metrics-lib  |Version:
 Severity:  Normal   |   Keywords:
Actual Points:   |  Parent ID:
   Points:   |   Reviewer:
  Sponsor:   |
-+---
 While testing sync the following happened:
 during the downloading of `recent` from the main collector using the old,
 i.e. DescriptorCollectorImpl, method the download just hung at some point.
 I killed it after 30min, restarted and the collection worked.

 When the hang-up happened again, I stopped the process immediately and re-
 started it using the new method, i.e. DescriptorIndexCollector.  Now,
 FileNotFound warnings were logged and the download finished without
 problems.  The files that were not available anymore had just expired,
 that is CollecTor just cleaned them out of its recent folder, which would
 explain the hang-up of the old method, too.

 === Why can one approach cope with disappearing files?
 The two ways differ in the trace below FileInputStream (marked below;
 needs a wide window to be visible)

  thread dump old method
 {{{
 "CollecTor-Scheduled-Thread-1" #9 daemon prio=5 os_prio=0
 tid=0x7f49d43c0800 nid=0x25fd runnable [0x7f49b0f06000]
java.lang.Thread.State: RUNNABLE
 at java.net.SocketInputStream.socketRead0(Native Method)
 at
 java.net.SocketInputStream.socketRead(SocketInputStream.java:116)
 at java.net.SocketInputStream.read(SocketInputStream.java:170)
 at java.net.SocketInputStream.read(SocketInputStream.java:141)
 at sun.security.ssl.InputRecord.readFully(InputRecord.java:465)
 at sun.security.ssl.InputRecord.readV3Record(InputRecord.java:593)
 at sun.security.ssl.InputRecord.read(InputRecord.java:532)
 at
 sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:973)
 - locked <0x00071dc8b160> (a java.lang.Object)
 at
 sun.security.ssl.SSLSocketImpl.readDataRecord(SSLSocketImpl.java:930)
 at sun.security.ssl.AppInputStream.read(AppInputStream.java:105)
 - locked <0x00071dcbe658> (a sun.security.ssl.AppInputStream)
 at java.io.BufferedInputStream.fill(BufferedInputStream.java:246)
 at java.io.BufferedInputStream.read1(BufferedInputStream.java:286)
 at java.io.BufferedInputStream.read(BufferedInputStream.java:345)
 <+
 - locked <0x00071dd26f98> (a java.io.BufferedInputStream)
 |
 at
 
sun.net.www.http.ChunkedInputStream.readAheadBlocking(ChunkedInputStream.java:552)
 |
 at
 sun.net.www.http.ChunkedInputStream.readAhead(ChunkedInputStream.java:609)
 |  Difference
 at
 sun.net.www.http.ChunkedInputStream.read(ChunkedInputStream.java:696)
 |
 - locked <0x00071dd2ae48> (a
 sun.net.www.http.ChunkedInputStream)  |
 at java.io.FilterInputStream.read(FilterInputStream.java:133)
 <-+
 at
 
sun.net.www.protocol.http.HttpURLConnection$HttpInputStream.read(HttpURLConnection.java:3336)
 at
 java.util.zip.InflaterInputStream.fill(InflaterInputStream.java:238)
 at
 java.util.zip.InflaterInputStream.read(InflaterInputStream.java:158)
 at java.util.zip.GZIPInputStream.read(GZIPInputStream.java:117)
 at java.io.BufferedInputStream.fill(BufferedInputStream.java:246)
 at java.io.BufferedInputStream.read1(BufferedInputStream.java:286)
 at java.io.BufferedInputStream.read(BufferedInputStream.java:345)
 - locked <0x00071dd2d138> (a java.io.BufferedInputStream)
 at
 
org.torproject.descriptor.impl.DescriptorCollectorImpl.fetchRemoteFile(DescriptorCollectorImpl.java:225)
 ...
 }}}

  thread dump new method
 {{{
 "CollecTor-Scheduled-Thread-1" #9 daemon prio=5 os_prio=0
 tid=0x7f19fc3a9800 nid=0x4060 runnable [0x7f19e4a3f000]
java.lang.Thread.State: RUNNABLE
 at java.net.SocketInputStream.socketRead0(Native Method)
 at
 java.net.SocketInputStream.socketRead(SocketInputStream.java:116)
 at java.net.SocketInputStream.read(SocketInputStream.java:170)
 at java.net.SocketInputStream.read(SocketInputStream.java:141)
 at sun.security.ssl.InputRecord.readFully(InputRecord.java:465)
 at sun.security.ssl.InputRecord.readV3Record(InputRecord.java:593)
 at sun.security.ssl.InputRecord.read(InputRecord.java:532)
 at
 sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:973)
 - locked <0x000734394300> (a 

Re: [tor-bugs] #20320 [Metrics/metrics-lib]: Avoid running into an IOException and logging a warning for it

2016-10-08 Thread Tor Bug Tracker & Wiki
#20320: Avoid running into an IOException and logging a warning for it
-+-
 Reporter:  karsten  |  Owner:  karsten
 Type:  defect   | Status:  merge_ready
 Priority:  Low  |  Milestone:
Component:  Metrics/metrics-lib  |Version:
 Severity:  Normal   | Resolution:
 Keywords:   |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by iwakeh):

 * status:  needs_review => merge_ready


Comment:

 Forgot that the sync-implementation is CollecTor.

 So, patch is merge ready for metrics-lib.
 And, it can wait for a next release.

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

Re: [tor-bugs] #20320 [Metrics/metrics-lib]: Avoid running into an IOException and logging a warning for it

2016-10-08 Thread Tor Bug Tracker & Wiki
#20320: Avoid running into an IOException and logging a warning for it
-+--
 Reporter:  karsten  |  Owner:  karsten
 Type:  defect   | Status:  needs_review
 Priority:  Low  |  Milestone:
Component:  Metrics/metrics-lib  |Version:
 Severity:  Normal   | Resolution:
 Keywords:   |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+--

Comment (by iwakeh):

 Coincidence? While testing the sync-functionality I ran into that exact
 IOE today, and solved it similarly.
 The patch is fine.
 Can it wait for the big patch?

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

Re: [tor-bugs] #12425 [Applications/Tor Browser]: Investigate setjmp/longjmp-based exception handling for Tor Browser on Windows

2016-10-08 Thread Tor Bug Tracker & Wiki
#12425: Investigate setjmp/longjmp-based exception handling for Tor Browser on
Windows
--+--
 Reporter:  gk|  Owner:  tbb-team
 Type:  task  | Status:  new
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal| Resolution:
 Keywords:  tbb-security  |  Actual Points:
Parent ID:  #16010| Points:
 Reviewer:|Sponsor:
--+--
Changes (by bugzilla):

 * severity:   => Normal
 * parent:   => #16010


Comment:

 > SJLJ was the only choice before GCC 4.8 was released, but later GCC
 versions support SEH.
 https://stackoverflow.com/questions/15670169/what-is-difference-between-
 sjlj-vs-dwarf-vs-seh

--
Ticket URL: 
Tor Bug Tracker & Wiki 
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] #20322 [Applications/Tor Browser]: SafeSEH support for mingw-w64 for Tor Browser on Windows

2016-10-08 Thread Tor Bug Tracker & Wiki
#20322: SafeSEH support for mingw-w64 for Tor Browser on Windows
--+--
 Reporter:  bugzilla  |  Owner:  tbb-team
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal|   Keywords:  tbb-security
Actual Points:|  Parent ID:  #16010
   Points:|   Reviewer:
  Sponsor:|
--+--
 Not only SEH, because of www.fuzzysecurity.com/tutorials/expDev/3.html
 Even YASM can do it https://www.tortall.net/projects/yasm/manual/html
 /objfmt-win32-safeseh.html

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

Re: [tor-bugs] #16351 [Applications/Tor Browser]: Upgrade our toolchain for Tor Browser 5.0

2016-10-08 Thread Tor Bug Tracker & Wiki
#16351: Upgrade our toolchain for Tor Browser 5.0
-+-
 Reporter:  gk   |  Owner:  tbb-
 |  team
 Type:  enhancement  | Status:  closed
 Priority:  Medium   |  Milestone:
Component:  Applications/Tor Browser |Version:
 Severity:  Normal   | Resolution:  fixed
 Keywords:  tbb-gitian, GeorgKoppen201506,   |  Actual Points:
  tbb-5.0a3-essential, TorBrowserTeam201507R |
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by bugzilla):

 * severity:   => Normal


Comment:

 Replying to [comment:6 boklm]:
 > r=boklm
 > The gitian/patches/enable-reloc-section-ld.patch file looks good to me
 (I had previously rebased it on the new binutils and got the same patch).

 Safer approaches:
 > You can also pass --dynamicbase to the linker in the same way, but sadly
 it doesn't emit the necessary relocation table. As a workaround, you can
 pass -Wl,--dynamicbase,--export-all-symbols. An explicit
 __declspec(dllexport) of a single symbol like main also works, and that is
 currently the workaround used in the Rust compiler.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
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] #20321 [Applications/Tor Browser]: Mac OS X - Quit Tor Browser Finder Menu Does Not Work from Tor Network Settings

2016-10-08 Thread Tor Bug Tracker & Wiki
#20321: Mac OS X - Quit Tor Browser Finder Menu Does Not Work from Tor Network
Settings
--+--
 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:|
--+--
 TorBrowser 6.0.5 on OS X 10.11.6.

 When the "Tor Network Settings" dialog to Connect to the Tor Network is
 the only TorBrowser window open, the "Quit Tor Browser" option from the OS
 X Finder Tor Browser menu does not quit the application.

 To reproduce:
 1. Disable network to force Tor Network Settings to open.
 2. Open TorBrowser. The Tor Network Settings page should show with an
 error saying it is not connected to the Tor Network.
 3. Now try closing the application from "Quit Tor Browser" in the Finder
 menu.

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

Re: [tor-bugs] #18787 [Applications/Tor Browser]: Initialize the SOCKS password to random offset at start

2016-10-08 Thread Tor Bug Tracker & Wiki
#18787: Initialize the SOCKS password to random offset at start
--+--
 Reporter:  cypherpunks   |  Owner:  tbb-team
 Type:  enhancement   | Status:  closed
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal| Resolution:  wontfix
 Keywords:|  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+--
Changes (by bugzilla):

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


Comment:

 Closed on behalf of #19206.

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

Re: [tor-bugs] #17207 [Applications/Tor Browser]: Testing navigator.mimeTypes for known names can reveal info and increase fingerprinting risk

2016-10-08 Thread Tor Bug Tracker & Wiki
#17207: Testing navigator.mimeTypes for known names can reveal info and increase
fingerprinting risk
-+-
 Reporter:  TemporaryNick|  Owner:
 |  arthuredelstein
 Type:  defect   | Status:  closed
 Priority:  High |  Milestone:
Component:  Applications/Tor Browser |Version:
 Severity:  Major| Resolution:  fixed
 Keywords:  tbb-fingerprinting,  |  Actual Points:
  TorBrowserTeam201510R  |
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-

Comment (by bugzilla):

 Corresponding Mozilla work: https://www.fxsitecompat.com/en-CA/docs/2016
 /navigator-plugins-and-mimetypes-will-be-unenumerable/

--
Ticket URL: 
Tor Bug Tracker & Wiki 
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] #20320 [Metrics/metrics-lib]: Avoid running into an IOException and logging a warning for it

2016-10-08 Thread Tor Bug Tracker & Wiki
#20320: Avoid running into an IOException and logging a warning for it
-+-
 Reporter:  karsten  |  Owner:  karsten
 Type:  defect   | Status:  new
 Priority:  Low  |  Milestone:
Component:  Metrics/metrics-lib  |Version:
 Severity:  Normal   |   Keywords:
Actual Points:   |  Parent ID:
   Points:   |   Reviewer:
  Sponsor:   |
-+-
 When we recently switched from System.err printing to slf4j logging, we
 started logging an `IOException` that we shouldn't be running into and
 that we simply ignored before.  This exception gets thrown when
 `DescriptorReaderImpl` attempts to read a parse history file that doesn't
 exist (yet).  We should simply check whether that files exists before
 attempting to read it.  Trivial patch:

 {{{
 diff --git
 a/src/main/java/org/torproject/descriptor/impl/DescriptorReaderImpl.java
 b/src/main/java/org/torproject/descriptor/impl/DescriptorReaderImpl.java
 index fac9475..020cdd7 100644
 ---
 a/src/main/java/org/torproject/descriptor/impl/DescriptorReaderImpl.java
 +++
 b/src/main/java/org/torproject/descriptor/impl/DescriptorReaderImpl.java
 @@ -200,7 +200,7 @@ public class DescriptorReaderImpl implements
 DescriptorReader {
  }

  private void readOldHistory() {
 -  if (this.historyFile == null) {
 +  if (this.historyFile == null || !this.historyFile.exists()) {
  return;
}
try {
 }}}

 I'd say this is a minor issue, because it prints a warning message that
 might confuse users, but only on the first run.  No need to put out a
 (point) release just for this, but it would be good to fix this in master.

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

Re: [tor-bugs] #20320 [Metrics/metrics-lib]: Avoid running into an IOException and logging a warning for it

2016-10-08 Thread Tor Bug Tracker & Wiki
#20320: Avoid running into an IOException and logging a warning for it
-+--
 Reporter:  karsten  |  Owner:  karsten
 Type:  defect   | Status:  needs_review
 Priority:  Low  |  Milestone:
Component:  Metrics/metrics-lib  |Version:
 Severity:  Normal   | Resolution:
 Keywords:   |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+--
Changes (by karsten):

 * status:  new => needs_review


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

Re: [tor-bugs] #18935 [Applications/Tor Browser]: MS bugs - Danger! Windows updates break everything on their way!

2016-10-08 Thread Tor Bug Tracker & Wiki
#18935: MS bugs - Danger! Windows updates break everything on their way!
--+---
 Reporter:  bugzilla  |  Owner:  tbb-team
 Type:  defect| Status:  closed
 Priority:  High  |  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Critical  | Resolution:  duplicate
 Keywords:  tbb-crash |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+---

Comment (by bugzilla):

 It is called by M$:
 > Notice
 > The July 2016 update rollup for Windows 7 Service Pack 1 (SP1) and
 Windows Server 2008 R2 SP1 was re-released on September 13, 2016 to
 address an issue in one of the included updates and to improve the overall
 reliability of the update rollup.
 BUT WELCOME KB3175024!
 https://support.microsoft.com/en-us/kb/3175024
 > Known issue 2
 > When you try to start an application, the application freezes very early
 in the process and does not completely start.

 > Cause
 > This issue occurs because the Export Address table Filtering (EAF)
 mitigation is active on the application.

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

Re: [tor-bugs] #9924 [Applications/Tor Browser]: Firefox bug - TBB queries the A record of the hostname of the machine it is running on. (was: Firefox queries the A record of the hostname of the machi

2016-10-08 Thread Tor Bug Tracker & Wiki
#9924: Firefox bug - TBB queries the A record of the hostname of the machine it 
is
running on.
+--
 Reporter:  cypherpunks |  Owner:  tbb-team
 Type:  defect  | Status:  new
 Priority:  Medium  |  Milestone:
Component:  Applications/Tor Browser|Version:
 Severity:  Normal  | Resolution:
 Keywords:  tbb-firefox-patch,tbb-proxy-bypass  |  Actual Points:
Parent ID:  | Points:
 Reviewer:  |Sponsor:
+--
Changes (by bugzilla):

 * keywords:  tbb-firefox-patch => tbb-firefox-patch,tbb-proxy-bypass
 * severity:   => Normal


Comment:

 HIPS detects that TBB (firefox.exe) uses RPC / DNS Client Service on
 Windows during initialization. Probably, for that.

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

Re: [tor-bugs] #15521 [Core Tor/Tor]: compiler warnings with --enable-bufferevents

2016-10-08 Thread Tor Bug Tracker & Wiki
#15521: compiler warnings with --enable-bufferevents
--+
 Reporter:  Alan  |  Owner:
 Type:  defect| Status:  closed
 Priority:  Low   |  Milestone:  Tor: 0.2.9.x-final
Component:  Core Tor/Tor  |Version:  Tor: 0.2.6.6
 Severity:  Normal| Resolution:  wontfix
 Keywords:  bufferevents  |  Actual Points:
Parent ID:| Points:  small
 Reviewer:|Sponsor:
--+
Changes (by bugzilla):

 * severity:   => Normal


Comment:

 Could you click the keyword and perform a batch modification of the rest
 13 tickets by the same reason?

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

Re: [tor-bugs] #18222 [Applications/Tor Browser]: Circuit visualizer shows different Guard for one of the tabs!

2016-10-08 Thread Tor Bug Tracker & Wiki
#18222: Circuit visualizer shows different Guard for one of the tabs!
--+--
 Reporter:  bugzilla  |  Owner:  tbb-team
 Type:  defect| Status:  new
 Priority:  Very High |  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Critical  | Resolution:
 Keywords:|  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+--

Comment (by bugzilla):

 Is this a personal american spam or what?

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

Re: [tor-bugs] #8390 [Applications/Tor Browser]: Improving the Mac Browser Bundle

2016-10-08 Thread Tor Bug Tracker & Wiki
#8390: Improving the Mac Browser Bundle
--+--
 Reporter:  Haravikk  |  Owner:  tbb-team
 Type:  enhancement   | Status:  closed
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal| Resolution:  user disappeared
 Keywords:|  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+--
Changes (by bugzilla):

 * status:  new => closed
 * keywords:  needs-triage, macosx, gatekeeper =>
 * resolution:   => user disappeared
 * severity:   => Normal


Comment:

 Improved or in separate tickets.

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

Re: [tor-bugs] #20319 [Internal Services/Tor Sysadmin Team]: set HPKP headers on onionoo

2016-10-08 Thread Tor Bug Tracker & Wiki
#20319: set HPKP headers on onionoo
-+-
 Reporter:  weasel   |  Owner:  tpa
 Type:  defect   | Status:  new
 Priority:  Medium   |  Milestone:
Component:  Internal Services/Tor Sysadmin Team  |Version:
 Severity:  Normal   | Resolution:
 Keywords:   |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by karsten):

 * cc: karsten (added)


Comment:

 Please let me know if I need to do anything 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] #11803 [Applications/Tor Browser]: Tor Browser Bundle suggests installing flash

2016-10-08 Thread Tor Bug Tracker & Wiki
#11803: Tor Browser Bundle suggests installing flash
--+--
 Reporter:  cypherpunks   |  Owner:  tbb-team
 Type:  enhancement   | Status:  new
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal| Resolution:
 Keywords:|  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+--
Changes (by bugzilla):

 * keywords:  tbb-torbutton =>
 * severity:   => Normal


Comment:

 Related Mozilla bug: https://bugzilla.mozilla.org/show_bug.cgi?id=1307445

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

Re: [tor-bugs] #8282 [Applications/Tor Browser]: integrate tbb firefox osx sandbox in build

2016-10-08 Thread Tor Bug Tracker & Wiki
#8282: integrate tbb firefox osx sandbox in build
--+--
 Reporter:  trams |  Owner:  tbb-team
 Type:  enhancement   | Status:  new
 Priority:  Medium|  Milestone:
Component:  Applications/Tor Browser  |Version:
 Severity:  Normal| Resolution:
 Keywords:  tbb-sandboxing|  Actual Points:
Parent ID:  #19750| Points:
 Reviewer:|Sponsor:
--+--
Changes (by bugzilla):

 * keywords:  needs-triage, macosx, sandbox => tbb-sandboxing
 * version:  Tor: unspecified =>
 * severity:   => Normal
 * parent:   => #19750


--
Ticket URL: 
Tor Bug Tracker & Wiki 
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] #20319 [Internal Services/Tor Sysadmin Team]: set HPKP headers on onionoo

2016-10-08 Thread Tor Bug Tracker & Wiki
#20319: set HPKP headers on onionoo
-+-
 Reporter:  weasel   |  Owner:  tpa
 Type:  defect   | Status:  new
 Priority:  Medium   |  Milestone:
Component:  Internal Services/Tor Sysadmin Team  |Version:
 Severity:  Normal   |   Keywords:
Actual Points:   |  Parent ID:
   Points:   |   Reviewer:
  Sponsor:   |
-+-


--
Ticket URL: 
Tor Bug Tracker & Wiki 
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: #20079, #19317, #19016, #19924, ...

2016-10-08 Thread Tor Bug Tracker & Wiki
Batch modification to #20079, #19317, #19016, #19924, #19895, #19894 by iwakeh:
milestone to CollecTor 1.0.2

Comment:
Added to appropriate milestone.

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