mirror of
https://github.com/aquasecurity/trivy.git
synced 2026-01-31 13:53:14 +08:00
71 lines
1.4 KiB
Go
71 lines
1.4 KiB
Go
package yaml
|
|
|
|
import (
|
|
"context"
|
|
"io"
|
|
"os"
|
|
"path/filepath"
|
|
"regexp"
|
|
|
|
"golang.org/x/xerrors"
|
|
|
|
"github.com/aquasecurity/trivy/pkg/fanal/analyzer"
|
|
"github.com/aquasecurity/trivy/pkg/fanal/types"
|
|
)
|
|
|
|
const version = 1
|
|
|
|
var requiredExts = []string{".yaml", ".yml"}
|
|
|
|
type ConfigAnalyzer struct {
|
|
filePattern *regexp.Regexp
|
|
}
|
|
|
|
func NewConfigAnalyzer(filePattern *regexp.Regexp) ConfigAnalyzer {
|
|
return ConfigAnalyzer{
|
|
filePattern: filePattern,
|
|
}
|
|
}
|
|
|
|
func (a ConfigAnalyzer) Analyze(_ context.Context, input analyzer.AnalysisInput) (*analyzer.AnalysisResult, error) {
|
|
b, err := io.ReadAll(input.Content)
|
|
if err != nil {
|
|
return nil, xerrors.Errorf("failed to read %s: %w", input.FilePath, err)
|
|
}
|
|
|
|
return &analyzer.AnalysisResult{
|
|
Files: map[types.HandlerType][]types.File{
|
|
// it will be passed to misconfig post handler
|
|
types.MisconfPostHandler: {
|
|
{
|
|
Type: types.YAML,
|
|
Path: input.FilePath,
|
|
Content: b,
|
|
},
|
|
},
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
func (a ConfigAnalyzer) Required(filePath string, _ os.FileInfo) bool {
|
|
if a.filePattern != nil && a.filePattern.MatchString(filePath) {
|
|
return true
|
|
}
|
|
|
|
ext := filepath.Ext(filePath)
|
|
for _, required := range requiredExts {
|
|
if ext == required {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (ConfigAnalyzer) Type() analyzer.Type {
|
|
return analyzer.TypeYaml
|
|
}
|
|
|
|
func (ConfigAnalyzer) Version() int {
|
|
return version
|
|
}
|