nyx/tests/dynamic_fixtures/java/xss_unsupported.java

9 lines
265 B
Java

// XSS — unsupported fixture.
// Entry is an instance method; test sets confidence = Low.
// Expected verdict: Unsupported
public class Entry {
public void render(String input) {
System.out.print("<html><body>" + input + "</body></html>\n");
}
}