nyx/tests/dynamic_fixtures/php/xss_unsupported.php

11 lines
260 B
PHP
Raw Normal View History

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