-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
7 changed files
with
128 additions
and
29 deletions.
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
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
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
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
66 changes: 66 additions & 0 deletions
66
src/test/java/org/jenkinsci/plugins/configfiles/sec/Security2002Test.java
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
package org.jenkinsci.plugins.configfiles.sec; | ||
|
||
import com.gargoylesoftware.htmlunit.html.HtmlAnchor; | ||
import com.gargoylesoftware.htmlunit.html.HtmlPage; | ||
import jenkins.model.GlobalConfiguration; | ||
import org.jenkinsci.plugins.configfiles.GlobalConfigFiles; | ||
import org.jenkinsci.plugins.configfiles.custom.CustomConfig; | ||
import org.junit.Rule; | ||
import org.junit.Test; | ||
import org.jvnet.hudson.test.Issue; | ||
import org.jvnet.hudson.test.JenkinsRule; | ||
|
||
import java.util.concurrent.atomic.AtomicReference; | ||
|
||
import static org.hamcrest.CoreMatchers.is; | ||
import static org.hamcrest.collection.IsCollectionWithSize.hasSize; | ||
import static org.hamcrest.collection.IsEmptyCollection.empty; | ||
import static org.junit.Assert.assertNotNull; | ||
import static org.junit.Assert.assertThat; | ||
|
||
public class Security2002Test { | ||
private static final String CONFIG_ID = "ConfigFilesTestId"; | ||
|
||
@Rule | ||
public JenkinsRule j = new JenkinsRule(); | ||
|
||
@Test | ||
@Issue("SECURITY-2202") | ||
public void xssPrevention() throws Exception { | ||
|
||
// ---------- | ||
// Create a new configuration | ||
GlobalConfigFiles store = j.getInstance().getExtensionList(GlobalConfiguration.class).get(GlobalConfigFiles.class); | ||
assertNotNull(store); | ||
assertThat(store.getConfigs(), empty()); | ||
|
||
CustomConfig config = new CustomConfig(CONFIG_ID, "My configuration", "comment", "content"); | ||
store.save(config); | ||
|
||
assertThat(store.getConfigs(), hasSize(1)); | ||
|
||
// ---------- | ||
// Check removing it by GET doesn't work | ||
JenkinsRule.WebClient wc = j.createWebClient(); | ||
|
||
// If we try to call the URL directly (via GET), it fails with a 405 - Method not allowed | ||
wc.assertFails("configfiles/removeConfig?id=" + CONFIG_ID, 405); | ||
|
||
// ---------- | ||
// Clicking the button works | ||
// If we click on the link, it goes via POST, therefore it removes it successfully | ||
HtmlPage configFiles = wc.goTo("configfiles"); | ||
HtmlAnchor removeAnchor = configFiles.getDocumentElement().getFirstByXPath("//a[contains(@onclick, 'removeConfig?id=" + CONFIG_ID + "')]"); | ||
|
||
AtomicReference<Boolean> confirmCalled = new AtomicReference<>(false); | ||
wc.setConfirmHandler((page, s) -> { | ||
confirmCalled.set(true); | ||
return true; | ||
}); | ||
|
||
assertThat(confirmCalled.get(), is(false)); | ||
removeAnchor.click(); | ||
assertThat(confirmCalled.get(), is(true)); | ||
assertThat(store.getConfigs(), empty()); | ||
} | ||
} |