1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
|
Description: Disable diagnostic probing by default (Fixes CVE-2013-4112)
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: not-needed
Bug: http://bugs.debian.org/717031
Bug-RedHat: https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4112
--- a/conf/auth_regex.xml
+++ b/conf/auth_regex.xml
@@ -25,7 +25,7 @@
enable_bundling="true"
bundler_capacity="50000"
enable_unicast_bundling="true"
- enable_diagnostics="true"
+ enable_diagnostics="false"
thread_naming_pattern="cl"
timer_type="new"
--- a/conf/execution-service.xml
+++ b/conf/execution-service.xml
@@ -20,7 +20,7 @@
max_bundle_timeout="30"
ip_ttl="${jgroups.udp.ip_ttl:2}"
enable_bundling="true"
- enable_diagnostics="true"
+ enable_diagnostics="false"
thread_naming_pattern="cl"
timer_type="new"
--- a/conf/fast-local.xml
+++ b/conf/fast-local.xml
@@ -24,7 +24,7 @@
ip_ttl="${jgroups.udp.ip_ttl:0}"
enable_bundling="true"
enable_unicast_bundling="true"
- enable_diagnostics="true"
+ enable_diagnostics="false"
thread_naming_pattern="cl"
timer_type="new"
--- a/conf/flush-udp.xml
+++ b/conf/flush-udp.xml
@@ -19,7 +19,7 @@
max_bundle_timeout="30"
ip_ttl="${jgroups.udp.ip_ttl:2}"
enable_bundling="true"
- enable_diagnostics="true"
+ enable_diagnostics="false"
thread_naming_pattern="pl"
--- a/conf/sequencer.xml
+++ b/conf/sequencer.xml
@@ -21,7 +21,7 @@
max_bundle_timeout="30"
ip_ttl="${jgroups.udp.ip_ttl:2}"
enable_bundling="true"
- enable_diagnostics="true"
+ enable_diagnostics="false"
thread_naming_pattern="cl"
thread_pool.enabled="true"
--- a/conf/sfc.xml
+++ b/conf/sfc.xml
@@ -20,7 +20,7 @@
max_bundle_timeout="30"
ip_ttl="${jgroups.udp.ip_ttl:2}"
enable_bundling="true"
- enable_diagnostics="true"
+ enable_diagnostics="false"
thread_naming_pattern="cl"
thread_pool.enabled="true"
--- a/conf/udp-largecluster.xml
+++ b/conf/udp-largecluster.xml
@@ -23,7 +23,7 @@
max_bundle_timeout="30"
ip_ttl="${jgroups.udp.ip_ttl:8}"
enable_bundling="true"
- enable_diagnostics="true"
+ enable_diagnostics="false"
thread_naming_pattern="cl"
timer_type="new"
--- a/conf/udp.xml
+++ b/conf/udp.xml
@@ -21,7 +21,7 @@
max_bundle_timeout="30"
ip_ttl="${jgroups.udp.ip_ttl:2}"
enable_bundling="true"
- enable_diagnostics="true"
+ enable_diagnostics="false"
thread_naming_pattern="cl"
timer_type="new"
--- a/src/org/jgroups/protocols/TP.java
+++ b/src/org/jgroups/protocols/TP.java
@@ -202,8 +202,8 @@
@Property(description="Enable bundling of smaller messages into bigger ones for unicast messages. Default is false")
protected boolean enable_unicast_bundling=false;
- @Property(description="Switch to enable diagnostic probing. Default is true")
- protected boolean enable_diagnostics=true;
+ @Property(description="Switch to enable diagnostic probing. Default is false")
+ protected boolean enable_diagnostics=false;
@Property(description="Address for diagnostic probing. Default is 224.0.75.75",
defaultValueIPv4="224.0.75.75",defaultValueIPv6="ff0e::0:75:75")
|