nyx/tests/dynamic_fixtures/java/xss_unsupported.java

10 lines
265 B
Java
Raw Permalink Normal View History

2026-06-05 10:16:30 -05:00
// 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");
}
}