mirror of
https://github.com/aquasecurity/kube-bench.git
synced 2024-11-22 16:18:07 +00:00
c3f94dd89f
* add aasf * add AASF format * credentials provider * add finding publisher * add finding publisher * add write AASF path * add testing * read config from file * update docker file * refactor * remove sample * add comments * Add comment in EKS config.yaml * Fix comment typo * Fix spelling of ASFF * Fix typo and other small code review suggestions * Limit length of Actual result field Avoids this message seen in testing: Message:Finding does not adhere to Amazon Finding Format. data.ProductFields['Actual result'] should NOT be longer than 1024 characters. * Add comment for ASFF schema * Add Security Hub documentation * go mod tidy * remove dupe lines in docs * support integration in any region * fix README link * fix README links Co-authored-by: Liz Rice <liz@lizrice.com>
70 lines
1.8 KiB
Go
70 lines
1.8 KiB
Go
package findings
|
|
|
|
import (
|
|
"github.com/aws/aws-sdk-go/service/securityhub"
|
|
"github.com/aws/aws-sdk-go/service/securityhub/securityhubiface"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
// A Publisher represents an object that publishes finds to AWS Security Hub.
|
|
type Publisher struct {
|
|
client securityhubiface.SecurityHubAPI // AWS Security Hub Service Client
|
|
}
|
|
|
|
// A PublisherOutput represents an object that contains information about the service call.
|
|
type PublisherOutput struct {
|
|
// The number of findings that failed to import.
|
|
//
|
|
// FailedCount is a required field
|
|
FailedCount int64
|
|
|
|
// The list of findings that failed to import.
|
|
FailedFindings []*securityhub.ImportFindingsError
|
|
|
|
// The number of findings that were successfully imported.
|
|
//
|
|
// SuccessCount is a required field
|
|
SuccessCount int64
|
|
}
|
|
|
|
// New creates a new Publisher.
|
|
func New(client securityhubiface.SecurityHubAPI) *Publisher {
|
|
return &Publisher{
|
|
client: client,
|
|
}
|
|
}
|
|
|
|
// PublishFinding publishes findings to AWS Security Hub Service
|
|
func (p *Publisher) PublishFinding(finding []*securityhub.AwsSecurityFinding) (*PublisherOutput, error) {
|
|
o := PublisherOutput{}
|
|
i := securityhub.BatchImportFindingsInput{}
|
|
i.Findings = finding
|
|
var errs error
|
|
|
|
// Split the slice into batches of 100 finding.
|
|
batch := 100
|
|
|
|
for i := 0; i < len(finding); i += batch {
|
|
j := i + batch
|
|
if j > len(finding) {
|
|
j = len(finding)
|
|
}
|
|
i := securityhub.BatchImportFindingsInput{}
|
|
i.Findings = finding
|
|
r, err := p.client.BatchImportFindings(&i) // Process the batch.
|
|
if err != nil {
|
|
errs = errors.Wrap(err, "finding publish failed")
|
|
}
|
|
if r.FailedCount != nil {
|
|
o.FailedCount += *r.FailedCount
|
|
}
|
|
if r.SuccessCount != nil {
|
|
o.SuccessCount += *r.SuccessCount
|
|
}
|
|
for _, ff := range r.FailedFindings {
|
|
o.FailedFindings = append(o.FailedFindings, ff)
|
|
}
|
|
}
|
|
return &o, errs
|
|
}
|