aboutsummaryrefslogtreecommitdiff
path: root/sanitizers/src/test/java/com/example/ScriptEngineInjection.java
blob: 0785348e96c2b0ee570a0d2ed09ac1896fdcb374 (plain)
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
107
108
109
// Copyright 2022 Code Intelligence GmbH
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package com.example;

import com.code_intelligence.jazzer.api.FuzzedDataProvider;
import com.code_intelligence.jazzer.api.FuzzerSecurityIssueCritical;
import java.io.Reader;
import java.io.StringReader;
import javax.script.Bindings;
import javax.script.ScriptContext;
import javax.script.ScriptEngine;
import javax.script.ScriptEngineFactory;
import javax.script.ScriptEngineManager;
import javax.script.ScriptException;

class DummyScriptEngine implements ScriptEngine {
  @Override
  public Bindings createBindings() {
    return null;
  }

  @Override
  public Object eval(String script) throws ScriptException {
    return null;
  }

  @Override
  public Object eval(Reader reader) throws ScriptException {
    return null;
  }

  @Override
  public Object eval(String script, ScriptContext context) throws ScriptException {
    return null;
  }

  @Override
  public Object eval(Reader reader, ScriptContext context) throws ScriptException {
    return null;
  }

  @Override
  public Object eval(String script, Bindings n) throws ScriptException {
    return null;
  }

  @Override
  public Object eval(Reader reader, Bindings n) throws ScriptException {
    return null;
  }

  @Override
  public Object get(String key) {
    return null;
  }

  @Override
  public Bindings getBindings(int scope) {
    return null;
  }

  @Override
  public ScriptContext getContext() {
    return null;
  }

  @Override
  public ScriptEngineFactory getFactory() {
    return null;
  }

  @Override
  public void put(String key, Object value) {}

  @Override
  public void setBindings(Bindings bindings, int scope) {}

  @Override
  public void setContext(ScriptContext context) {}

  public DummyScriptEngine() {}
}

public class ScriptEngineInjection {
  static ScriptEngine engine = new DummyScriptEngine();

  static void insecureScriptEval(String input) throws Exception {
    engine.eval(new StringReader(input));
  }

  public static void fuzzerTestOneInput(FuzzedDataProvider data) throws Exception {
    try {
      insecureScriptEval(data.consumeRemainingAsAsciiString());
    } catch (Exception ignored) {
    }
  }
}