mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
10 lines
260 B
PHP
10 lines
260 B
PHP
<?php
|
|
// XSS — unsupported fixture.
|
|
// Entry is a class method; test sets confidence = Low.
|
|
// Expected verdict: Unsupported
|
|
|
|
class TemplateEngine {
|
|
public function render($input) {
|
|
echo '<html><body>' . $input . '</body></html>' . "\n";
|
|
}
|
|
}
|