Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Merge pull request #1391 from daniel-beck/JENKINS-21881
[FIXED JENKINS-21881] System property for disabling X-Frame-Options
- Loading branch information
Showing
with
64 additions
and 1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,17 @@ | ||
package jenkins.security; | ||
|
||
import hudson.Extension; | ||
import hudson.model.PageDecorator; | ||
import org.kohsuke.accmod.Restricted; | ||
import org.kohsuke.accmod.restrictions.NoExternalUse; | ||
|
||
/** | ||
* Adds the 'X-Frame-Options' header to all web pages. | ||
* | ||
* @since TODO | ||
*/ | ||
@Extension(ordinal = 1000) | ||
public class FrameOptionsPageDecorator extends PageDecorator { | ||
@Restricted(NoExternalUse.class) | ||
public static boolean enabled = Boolean.valueOf(System.getProperty(FrameOptionsPageDecorator.class.getName() + ".enabled", "true")); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,6 @@ | ||
<?jelly escape-by-default='true'?> | ||
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler"> | ||
<j:if test="${it.enabled}"> | ||
<st:header name="X-Frame-Options" value="sameorigin"/> | ||
</j:if> | ||
</j:jelly> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,41 @@ | ||
package jenkins.security; | ||
|
||
import com.gargoylesoftware.htmlunit.WebResponse; | ||
import com.gargoylesoftware.htmlunit.html.HtmlPage; | ||
import org.apache.commons.httpclient.NameValuePair; | ||
import org.junit.Assert; | ||
import org.junit.Rule; | ||
import org.junit.Test; | ||
import org.jvnet.hudson.test.JenkinsRule; | ||
import org.xml.sax.SAXException; | ||
|
||
import java.io.IOException; | ||
|
||
public class FrameOptionsPageDecoratorTest { | ||
@Rule | ||
public JenkinsRule j = new JenkinsRule(); | ||
|
||
@Test | ||
public void defaultHeaderPresent() throws IOException, SAXException { | ||
JenkinsRule.WebClient wc = j.createWebClient(); | ||
HtmlPage page = wc.goTo(""); | ||
Assert.assertEquals("Expected different X-Frame-Options value", getFrameOptionsFromResponse(page.getWebResponse()), "sameorigin"); | ||
} | ||
|
||
@Test | ||
public void testDisabledFrameOptions() throws IOException, SAXException { | ||
FrameOptionsPageDecorator.enabled = false; | ||
JenkinsRule.WebClient wc = j.createWebClient(); | ||
HtmlPage page = wc.goTo(""); | ||
Assert.assertNull("Expected X-Frame-Options unset", getFrameOptionsFromResponse(page.getWebResponse())); | ||
} | ||
|
||
private static String getFrameOptionsFromResponse(WebResponse response) { | ||
for (NameValuePair pair : response.getResponseHeaders()) { | ||
if (pair.getName().equals("X-Frame-Options")) { | ||
return pair.getValue(); | ||
} | ||
} | ||
return null; | ||
} | ||
} |