$ git show e7f72e5
commit e7f72e502377138a36e65d52d3c2b7311b07a5ec
Author: Daniel Beck <daniel-beck@github.com>
Date: Sun May 11 00:19:45 2014 +0200
[FIX SECURITY-134] Restrict access to admin monitor info page
This could contain sensitive information in the list of solutions
provided. It also shows the path to JENKINS_HOME, exposing OS and
configuration information.
diff --git a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index.jelly b/core/src/main/resources/hudson/diagnosis/Hudso
index fb29dd5..eb39bea 100644
--- a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index.jelly
+++ b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index.jelly
@@ -24,7 +24,7 @@ THE SOFTWARE.
<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define" xmlns:l="/lib/layout" xmlns:t="/lib/hudson" xmlns:f="/lib/form
- <l:layout title="${%JENKINS_HOME is almost full}">
+ <l:layout title="${%JENKINS_HOME is almost full}" permission="${app.ADMINISTER}">
<l:main-panel>
<h1>
<img src="${imagesURL}/48x48/warning.png" height="48" width="48" />
It also exposes the path to JENKINS_HOME which will reveal master OS and could reveal configuration details. I don't think this should be public.