mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
10 lines
265 B
Java
10 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");
|
||
|
|
}
|
||
|
|
}
|