mirror of
https://github.com/elicpeter/nyx.git
synced 2026-07-03 20:41:00 +02:00
14 lines
281 B
Go
14 lines
281 B
Go
|
|
// XSS — unsupported fixture.
|
||
|
|
// Entry is a method on a struct; test sets confidence = Low.
|
||
|
|
// Expected verdict: Unsupported
|
||
|
|
|
||
|
|
package entry
|
||
|
|
|
||
|
|
import "fmt"
|
||
|
|
|
||
|
|
type Renderer struct{}
|
||
|
|
|
||
|
|
func (r *Renderer) Render(input string) {
|
||
|
|
fmt.Print("<html><body>" + input + "</body></html>\n")
|
||
|
|
}
|