You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by sr...@apache.org on 2015/02/20 05:57:29 UTC

[1/3] storm git commit: STORM-640. Storm UI vulnerable to poodle attack.

Repository: storm
Updated Branches:
  refs/heads/master 7d8196ceb -> a8eab5021


STORM-640. Storm UI vulnerable to poodle attack.


Project: http://git-wip-us.apache.org/repos/asf/storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/e3ee3a3c
Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/e3ee3a3c
Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/e3ee3a3c

Branch: refs/heads/master
Commit: e3ee3a3c3f3f8da03dcecf2c7cd617ec6826b445
Parents: 103de9a
Author: Sriharsha Chintalapani <ma...@harsha.io>
Authored: Mon Feb 2 16:49:40 2015 -0800
Committer: Sriharsha Chintalapani <ma...@harsha.io>
Committed: Mon Feb 2 16:49:40 2015 -0800

----------------------------------------------------------------------
 storm-core/src/clj/backtype/storm/ui/helpers.clj | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/e3ee3a3c/storm-core/src/clj/backtype/storm/ui/helpers.clj
----------------------------------------------------------------------
diff --git a/storm-core/src/clj/backtype/storm/ui/helpers.clj b/storm-core/src/clj/backtype/storm/ui/helpers.clj
index 413a68d..925b9dc 100644
--- a/storm-core/src/clj/backtype/storm/ui/helpers.clj
+++ b/storm-core/src/clj/backtype/storm/ui/helpers.clj
@@ -156,6 +156,7 @@ $(\"table#%s\").each(function(i) { $(this).tablesorter({ sortList: %s, headers:
 (defn- mk-ssl-connector [port ks-path ks-password ks-type]
   (doto (SslSocketConnector.)
     (.setExcludeCipherSuites (into-array String ["SSL_RSA_WITH_RC4_128_MD5" "SSL_RSA_WITH_RC4_128_SHA"]))
+    (.setExcludeProtocols (into-array String ["SSLv3"]))
     (.setAllowRenegotiate false)
     (.setKeystore ks-path)
     (.setKeystoreType ks-type)


[2/3] storm git commit: Merge branch 'STORM-640' of https://github.com/harshach/incubator-storm into STORM-640

Posted by sr...@apache.org.
Merge branch 'STORM-640' of https://github.com/harshach/incubator-storm into STORM-640


Project: http://git-wip-us.apache.org/repos/asf/storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/f38b4b87
Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/f38b4b87
Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/f38b4b87

Branch: refs/heads/master
Commit: f38b4b872fd1766b21984036f21e301bea2e54da
Parents: 7d8196c e3ee3a3
Author: Sriharsha Chintalapani <ha...@hortonworks.com>
Authored: Thu Feb 19 20:38:15 2015 -0800
Committer: Sriharsha Chintalapani <ha...@hortonworks.com>
Committed: Thu Feb 19 20:38:15 2015 -0800

----------------------------------------------------------------------
 storm-core/src/clj/backtype/storm/ui/helpers.clj | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------



[3/3] storm git commit: Added STORM-640 to CHANGELOG.

Posted by sr...@apache.org.
 Added STORM-640 to CHANGELOG.


Project: http://git-wip-us.apache.org/repos/asf/storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/a8eab502
Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/a8eab502
Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/a8eab502

Branch: refs/heads/master
Commit: a8eab502123244af5fc9b895145f3fd1557762e6
Parents: f38b4b8
Author: Sriharsha Chintalapani <ha...@hortonworks.com>
Authored: Thu Feb 19 20:56:17 2015 -0800
Committer: Sriharsha Chintalapani <ha...@hortonworks.com>
Committed: Thu Feb 19 20:56:17 2015 -0800

----------------------------------------------------------------------
 CHANGELOG.md | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/a8eab502/CHANGELOG.md
----------------------------------------------------------------------
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 67498d8..4c7ebb1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,5 @@
 ## 0.10.0
+ * STORM-640: Storm UI vulnerable to poodle attack.
  * STORM-651: improvements to storm.cmd
  * STORM-456: Storm UI: cannot navigate to topology page when name contains spaces.
  * STORM-627: Storm-hbase configuration error.