nyx/tests/dynamic_fixtures/go/xss_unsupported.go
2026-06-05 10:16:30 -05:00

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")
}