nyx/tests/dynamic_fixtures/java/xss_unsupported.java
2026-06-05 10:16:30 -05:00

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");
}
}