Additional types for bad defer check (#897)

* Additional types for bad defer check

* Ignore new check in tlsconfig.go
This commit is contained in:
Dmitry Golushko 2022-11-30 09:38:46 +01:00 committed by GitHub
parent 2fe6c5b64a
commit 44f484fdc7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 46 additions and 2 deletions

View file

@ -68,7 +68,7 @@ func getTLSConfFromURL(url string) (*ServerSideTLSJson, error) {
if err != nil {
return nil, err
}
defer r.Body.Close()
defer r.Body.Close() //#nosec G307
var sstls ServerSideTLSJson
err = json.NewDecoder(r.Body).Decode(&sstls)

View file

@ -57,6 +57,34 @@ func NewDeferredClosing(id string, conf gosec.Config) (gosec.Rule, []ast.Node) {
typ: "os.File",
methods: []string{"Close"},
},
{
typ: "io.ReadCloser",
methods: []string{"Close"},
},
{
typ: "io.WriteCloser",
methods: []string{"Close"},
},
{
typ: "io.ReadWriteCloser",
methods: []string{"Close"},
},
{
typ: "io.ReadSeekCloser",
methods: []string{"Close"},
},
{
typ: "io.Closer",
methods: []string{"Close"},
},
{
typ: "net.Conn",
methods: []string{"Close"},
},
{
typ: "net.Listener",
methods: []string{"Close"},
},
},
MetaData: gosec.MetaData{
ID: id,

View file

@ -2756,7 +2756,23 @@ func main() {
n4, err := w.WriteString("buffered\n")
fmt.Printf("wrote %d bytes\n", n4)
w.Flush()
}`}, 1, gosec.NewConfig()},
}`}, 1, gosec.NewConfig()}, {[]string{`
package main
import (
"net"
"net/http"
)
func main() {
response, _ := http.Get("https://127.0.0.1")
defer response.Body.Close() // io.ReadCloser
conn, _ := net.Dial("tcp", "127.0.0.1:8080")
defer conn.Close() // net.Conn
}`}, 2, gosec.NewConfig()},
}
// SampleCodeG401 - Use of weak crypto MD5