<?xml version="1.0"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
  <channel>
    <title>Transition Technology: Ticket #409: HTTPS Security Issues</title>
    <link>http://localhost:8080/trac/ticket/409</link>
    <description>&lt;p&gt;
There are some issues that are highlighted here:
&lt;/p&gt;
&lt;blockquote class="citation"&gt;
&lt;p&gt;
Overall Rating: F Zero
&lt;/p&gt;
&lt;p&gt;
Chain issues         Incorrect order
&lt;/p&gt;
&lt;p&gt;
This server is vulnerable to the BEAST attack (more info &lt;a class="ext-link" href="https://community.qualys.com/blogs/securitylabs/2011/10/17/mitigating-the-beast-attack-on-tls"&gt;&lt;span class="icon"&gt;​&lt;/span&gt;https://community.qualys.com/blogs/securitylabs/2011/10/17/mitigating-the-beast-attack-on-tls&lt;/a&gt; )
&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;a class="ext-link" href="https://www.ssllabs.com/ssltest/analyze.html?d=transitionnetwork.org"&gt;&lt;span class="icon"&gt;​&lt;/span&gt;https://www.ssllabs.com/ssltest/analyze.html?d=transitionnetwork.org&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
That should be fixed on both servers and the documentation should be updated to match:
&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;&lt;a class="ext-link" href="https://tech.transitionnetwork.org/trac/wiki/NewLiveServer#HTTPS"&gt;&lt;span class="icon"&gt;​&lt;/span&gt;https://tech.transitionnetwork.org/trac/wiki/NewLiveServer#HTTPS&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a class="ext-link" href="https://tech.transitionnetwork.org/trac/wiki/SecurityInfo"&gt;&lt;span class="icon"&gt;​&lt;/span&gt;https://tech.transitionnetwork.org/trac/wiki/SecurityInfo&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a class="ext-link" href="https://wiki.transitionnetwork.org/Security"&gt;&lt;span class="icon"&gt;​&lt;/span&gt;https://wiki.transitionnetwork.org/Security&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;</description>
    <language>en-us</language>
    <image>
      <title>Transition Technology</title>
      <url>/trac/chrome/site/TransitionNetwork-Logo-Web-Small.jpg</url>
      <link>http://localhost:8080/trac/ticket/409</link>
    </image>
    <generator>Trac 0.12.5</generator>
    <item>
      
        <dc:creator>chris</dc:creator>

      <pubDate>Mon, 30 Apr 2012 13:16:32 GMT</pubDate>
      <title>hours, status, totalhours changed; resolution set</title>
      <link>http://localhost:8080/trac/ticket/409#comment:1</link>
      <guid isPermaLink="false">http://localhost:8080/trac/ticket/409#comment:1</guid>
      <description>
          &lt;ul&gt;
            &lt;li&gt;&lt;strong&gt;hours&lt;/strong&gt;
                changed from &lt;em&gt;0.0&lt;/em&gt; to &lt;em&gt;1.0&lt;/em&gt;
            &lt;/li&gt;
            &lt;li&gt;&lt;strong&gt;status&lt;/strong&gt;
                changed from &lt;em&gt;new&lt;/em&gt; to &lt;em&gt;closed&lt;/em&gt;
            &lt;/li&gt;
            &lt;li&gt;&lt;strong&gt;resolution&lt;/strong&gt;
                set to &lt;em&gt;fixed&lt;/em&gt;
            &lt;/li&gt;
            &lt;li&gt;&lt;strong&gt;totalhours&lt;/strong&gt;
                changed from &lt;em&gt;0.0&lt;/em&gt; to &lt;em&gt;1.0&lt;/em&gt;
            &lt;/li&gt;
          &lt;/ul&gt;
        &lt;p&gt;
On quince this apache config:
&lt;/p&gt;
&lt;pre class="wiki"&gt;SSLCipherSuite HIGH
&lt;/pre&gt;&lt;p&gt;
Was changed to the following for all virtual servers:
&lt;/p&gt;
&lt;pre class="wiki"&gt;SSLHonorCipherOrder On
SSLCipherSuite RC4-SHA:HIGH:!ADH:!SSLv2:!aNULL
&lt;/pre&gt;&lt;p&gt;
And the gandi intermediate cert was recreated:
&lt;/p&gt;
&lt;pre class="wiki"&gt;wget http://crt.gandi.net/GandiStandardSSLCA.crt -O GandiStandardSSLCA.crt
wget http://crt.usertrust.com/UTNAddTrustServer_CA.crt -O UTNAddTrustServer_CA.crt
wget http://crt.usertrust.com/AddTrustExternalCARoot.crt -O AddTrustExternalCARoot.crt
openssl x509 -inform DER -in GandiStandardSSLCA.crt -out GandiStandardSSLCA.pem
openssl x509 -inform DER -in AddTrustExternalCARoot.crt -out AddTrustExternalCARoot.pem
openssl x509 -inform DER -in UTNAddTrustServer_CA.crt -out UTNAddTrustServer_CA.pem
cat GandiStandardSSLCA.pem &amp;gt; gandi.pem
cat UTNAddTrustServer_CA.pem &amp;gt;&amp;gt; gandi.pem
cat AddTrustExternalCARoot.pem &amp;gt;&amp;gt; gandi.pem
&lt;/pre&gt;&lt;p&gt;
And the docs updated, &lt;a class="wiki" href="http://localhost:8080/trac/wiki/NewLiveServer#HTTPS"&gt;wiki:NewLiveServer#HTTPS&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
For kiwi, this nginx configuration:
&lt;/p&gt;
&lt;pre class="wiki"&gt;ssl_protocols  SSLv3 TLSv1;
ssl_ciphers  ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv3:+EXP;
ssl_prefer_server_ciphers   on;
&lt;/pre&gt;&lt;p&gt;
Was updated to:
&lt;/p&gt;
&lt;pre class="wiki"&gt;ssl_protocols  SSLv3 TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers  RC4-SHA:HIGH:!ADH:!SSLv2:!aNULL;
ssl_prefer_server_ciphers   on;
&lt;/pre&gt;&lt;p&gt;
The nginx chained cert was recreated:
&lt;/p&gt;
&lt;pre class="wiki"&gt;cd /etc/ssl/transitionnetwork.org
wget http://crt.gandi.net/GandiStandardSSLCA.crt -O GandiStandardSSLCA.crt
wget http://crt.usertrust.com/UTNAddTrustServer_CA.crt -O UTNAddTrustServer_CA.crt
wget http://crt.usertrust.com/AddTrustExternalCARoot.crt -O AddTrustExternalCARoot.crt
openssl x509 -inform DER -in GandiStandardSSLCA.crt -out GandiStandardSSLCA.pem
openssl x509 -inform DER -in AddTrustExternalCARoot.crt -out AddTrustExternalCARoot.pem
openssl x509 -inform DER -in UTNAddTrustServer_CA.crt -out UTNAddTrustServer_CA.pem
cat transitionnetwork.org.crt &amp;gt; transitionnetwork.org.chained.pem
cat GandiStandardSSLCA.pem &amp;gt;&amp;gt; transitionnetwork.org.chained.pem
cat UTNAddTrustServer_CA.pem &amp;gt;&amp;gt; transitionnetwork.org.chained.pem
cat AddTrustExternalCARoot.pem &amp;gt;&amp;gt; transitionnetwork.org.chained.pem
&lt;/pre&gt;&lt;p&gt;
And now kiwi also scores a A: &lt;a class="ext-link" href="https://www.ssllabs.com/ssltest/analyze.html?d=kiwi%2etransitionnetwork%2eorg&amp;amp;s=81%2e95%2e52%2e78"&gt;&lt;span class="icon"&gt;​&lt;/span&gt;https://www.ssllabs.com/ssltest/analyze.html?d=kiwi%2etransitionnetwork%2eorg&amp;amp;s=81%2e95%2e52%2e78&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
And the notes here have been updated &lt;a class="wiki" href="http://localhost:8080/trac/wiki/SecurityInfo"&gt;wiki:SecurityInfo&lt;/a&gt;
&lt;/p&gt;
      </description>
      <category>Ticket</category>
    </item>
 </channel>
</rss>