mirror of
https://github.com/securego/gosec.git
synced 2024-11-05 11:35:51 +00:00
43 lines
1.1 KiB
Go
43 lines
1.1 KiB
Go
package rules
|
|
|
|
import (
|
|
"go/ast"
|
|
|
|
"github.com/securego/gosec/v2"
|
|
"github.com/securego/gosec/v2/issue"
|
|
)
|
|
|
|
type pprofCheck struct {
|
|
issue.MetaData
|
|
importPath string
|
|
importName string
|
|
}
|
|
|
|
// ID returns the ID of the check
|
|
func (p *pprofCheck) ID() string {
|
|
return p.MetaData.ID
|
|
}
|
|
|
|
// Match checks for pprof imports
|
|
func (p *pprofCheck) Match(n ast.Node, c *gosec.Context) (*issue.Issue, error) {
|
|
if node, ok := n.(*ast.ImportSpec); ok {
|
|
if p.importPath == unquote(node.Path.Value) && node.Name != nil && p.importName == node.Name.Name {
|
|
return c.NewIssue(node, p.ID(), p.What, p.Severity, p.Confidence), nil
|
|
}
|
|
}
|
|
return nil, nil
|
|
}
|
|
|
|
// NewPprofCheck detects when the profiling endpoint is automatically exposed
|
|
func NewPprofCheck(id string, _ gosec.Config) (gosec.Rule, []ast.Node) {
|
|
return &pprofCheck{
|
|
MetaData: issue.MetaData{
|
|
ID: id,
|
|
Severity: issue.High,
|
|
Confidence: issue.High,
|
|
What: "Profiling endpoint is automatically exposed on /debug/pprof",
|
|
},
|
|
importPath: "net/http/pprof",
|
|
importName: "_",
|
|
}, []ast.Node{(*ast.ImportSpec)(nil)}
|
|
}
|