mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-15 20:05:13 +02:00
13 lines
281 B
Go
13 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")
|
|
}
|