mirror of
https://github.com/securego/gosec.git
synced 2024-11-05 11:35:51 +00:00
2aad3f02a5
Signed-off-by: Cosmin Cojocar <gcojocar@adobe.com>
19 lines
305 B
Go
19 lines
305 B
Go
package testutils
|
|
|
|
import "github.com/securego/gosec/v2"
|
|
|
|
// SampleCodeG504 - Blocklisted import CGI
|
|
var SampleCodeG504 = []CodeSample{
|
|
{[]string{`
|
|
package main
|
|
|
|
import (
|
|
"net/http/cgi"
|
|
"net/http"
|
|
)
|
|
|
|
func main() {
|
|
cgi.Serve(http.FileServer(http.Dir("/usr/share/doc")))
|
|
}
|
|
`}, 1, gosec.NewConfig()},
|
|
}
|