Revert "Add String to the default whitelisted receivers"

This reverts commit f493b98259.
This commit is contained in:
Lee Hinman 2015-02-23 22:30:05 -07:00
parent f493b98259
commit f610774546
2 changed files with 0 additions and 3 deletions

View File

@ -92,7 +92,6 @@ public class GroovySandboxExpressionChecker implements SecureASTCustomizer.Expre
private final static String[] defaultReceiverWhitelist = new String [] {
groovy.util.GroovyCollections.class.getName(),
java.lang.Math.class.getName(),
java.lang.String.class.getName(),
java.lang.Integer.class.getName(), "[I", "[[I", "[[[I",
java.lang.Float.class.getName(), "[F", "[[F", "[[[F",
java.lang.Double.class.getName(), "[D", "[[D", "[[[D",

View File

@ -60,8 +60,6 @@ public class GroovySandboxScriptTests extends ElasticsearchIntegrationTest {
testSuccess("def t = Instant.now().getMillis()");
// GroovyCollections
testSuccess("def n = [1,2,3]; GroovyCollections.max(n)");
// String
testSuccess("def s = String.format(\\\"%d\\\", 4)");
// Fail cases
testFailure("pr = Runtime.getRuntime().exec(\\\"touch /tmp/gotcha\\\"); pr.waitFor()",