mirror of
https://github.com/securego/gosec.git
synced 2024-11-05 19:45:51 +00:00
24 lines
375 B
Go
24 lines
375 B
Go
|
package testutils
|
||
|
|
||
|
import "github.com/securego/gosec/v2"
|
||
|
|
||
|
// SampleCodeG507 - Blocklisted import RIPEMD160
|
||
|
var SampleCodeG507 = []CodeSample{
|
||
|
{[]string{`
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
"encoding/hex"
|
||
|
"fmt"
|
||
|
|
||
|
"golang.org/x/crypto/ripemd160"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
h := ripemd160.New()
|
||
|
h.Write([]byte("test"))
|
||
|
fmt.Println(hex.EncodeToString(h.Sum(nil)))
|
||
|
}
|
||
|
`}, 1, gosec.NewConfig()},
|
||
|
}
|