mirror of
https://github.com/aquasecurity/trivy.git
synced 2025-12-22 07:10:41 -08:00
144 lines
3.6 KiB
Go
144 lines
3.6 KiB
Go
package scanner
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/aquasecurity/defsec/pkg/framework"
|
|
"github.com/aquasecurity/defsec/pkg/scan"
|
|
"github.com/aquasecurity/defsec/pkg/scanners/cloud/aws"
|
|
"github.com/aquasecurity/defsec/pkg/scanners/options"
|
|
"github.com/aquasecurity/defsec/pkg/state"
|
|
"github.com/aquasecurity/trivy/pkg/cloud/aws/cache"
|
|
"github.com/aquasecurity/trivy/pkg/commands/operation"
|
|
"github.com/aquasecurity/trivy/pkg/flag"
|
|
"github.com/aquasecurity/trivy/pkg/log"
|
|
)
|
|
|
|
type AWSScanner struct {
|
|
}
|
|
|
|
func NewScanner() *AWSScanner {
|
|
return &AWSScanner{}
|
|
}
|
|
|
|
func (s *AWSScanner) Scan(ctx context.Context, option flag.Options) (scan.Results, bool, error) {
|
|
|
|
awsCache := cache.New(option.CacheDir, option.MaxCacheAge, option.Account, option.Region)
|
|
included, missing := awsCache.ListServices(option.Services)
|
|
|
|
var scannerOpts []options.ScannerOption
|
|
if !option.NoProgress {
|
|
tracker := newProgressTracker()
|
|
defer tracker.Finish()
|
|
scannerOpts = append(scannerOpts, aws.ScannerWithProgressTracker(tracker))
|
|
}
|
|
|
|
if len(missing) > 0 {
|
|
scannerOpts = append(scannerOpts, aws.ScannerWithAWSServices(missing...))
|
|
}
|
|
|
|
if option.Debug {
|
|
scannerOpts = append(scannerOpts, options.ScannerWithDebug(&defsecLogger{}))
|
|
}
|
|
|
|
if option.Trace {
|
|
scannerOpts = append(scannerOpts, options.ScannerWithTrace(&defsecLogger{}))
|
|
}
|
|
|
|
if option.Region != "" {
|
|
scannerOpts = append(
|
|
scannerOpts,
|
|
aws.ScannerWithAWSRegion(option.Region),
|
|
)
|
|
}
|
|
|
|
if option.Endpoint != "" {
|
|
scannerOpts = append(
|
|
scannerOpts,
|
|
aws.ScannerWithAWSEndpoint(option.Endpoint),
|
|
)
|
|
}
|
|
|
|
var policyPaths []string
|
|
var downloadedPolicyPaths []string
|
|
var err error
|
|
downloadedPolicyPaths, err = operation.InitBuiltinPolicies(context.Background(), option.CacheDir, option.Quiet, option.SkipPolicyUpdate)
|
|
if err != nil {
|
|
if !option.SkipPolicyUpdate {
|
|
log.Logger.Errorf("Falling back to embedded policies: %s", err)
|
|
}
|
|
} else {
|
|
log.Logger.Debug("Policies successfully loaded from disk")
|
|
policyPaths = append(policyPaths, downloadedPolicyPaths...)
|
|
scannerOpts = append(scannerOpts,
|
|
options.ScannerWithEmbeddedPolicies(false))
|
|
}
|
|
policyPaths = append(policyPaths, option.RegoOptions.PolicyPaths...)
|
|
scannerOpts = append(scannerOpts, options.ScannerWithPolicyDirs(policyPaths...))
|
|
|
|
if len(option.RegoOptions.PolicyNamespaces) > 0 {
|
|
scannerOpts = append(
|
|
scannerOpts,
|
|
options.ScannerWithPolicyNamespaces(option.RegoOptions.PolicyNamespaces...),
|
|
)
|
|
}
|
|
|
|
if len(option.Compliance) > 0 {
|
|
scannerOpts = append(scannerOpts, options.ScannerWithSpec(option.Compliance))
|
|
} else {
|
|
scannerOpts = append(scannerOpts, options.ScannerWithFrameworks(
|
|
framework.Default,
|
|
framework.CIS_AWS_1_2))
|
|
}
|
|
|
|
scanner := aws.New(scannerOpts...)
|
|
|
|
var freshState *state.State
|
|
if len(missing) > 0 {
|
|
var err error
|
|
freshState, err = scanner.CreateState(ctx)
|
|
if err != nil {
|
|
return nil, false, err
|
|
}
|
|
}
|
|
|
|
var fullState *state.State
|
|
if previousState, err := awsCache.LoadState(); err == nil {
|
|
if freshState != nil {
|
|
fullState, err = previousState.Merge(freshState)
|
|
if err != nil {
|
|
return nil, false, err
|
|
}
|
|
} else {
|
|
fullState = previousState
|
|
}
|
|
} else {
|
|
fullState = freshState
|
|
}
|
|
|
|
if fullState == nil {
|
|
return nil, false, fmt.Errorf("no resultant state found")
|
|
}
|
|
|
|
if err := awsCache.AddServices(fullState, missing); err != nil {
|
|
return nil, false, err
|
|
}
|
|
|
|
defsecResults, err := scanner.Scan(ctx, fullState)
|
|
if err != nil {
|
|
return nil, false, err
|
|
}
|
|
|
|
return defsecResults, len(included) > 0, nil
|
|
}
|
|
|
|
type defsecLogger struct {
|
|
}
|
|
|
|
func (d *defsecLogger) Write(p []byte) (n int, err error) {
|
|
log.Logger.Debug("[defsec] " + strings.TrimSpace(string(p)))
|
|
return len(p), nil
|
|
}
|