Files
trufflehog/pkg/engine/elasticsearch.go
0x1andMiccah Castorina 1276d262f2 [scan-9] Update enumeration logic (#3626)
* renaming to enumeration

* update enumeration

* comments

* remove commented out func

---------

Co-authored-by: Miccah Castorina <[email protected]>
2024-11-25 14:13:03 -05:00

46 lines
1.5 KiB
Go

package engine
import (
"runtime"
"google.golang.org/protobuf/proto"
"google.golang.org/protobuf/types/known/anypb"
"github.com/trufflesecurity/trufflehog/v3/pkg/context"
"github.com/trufflesecurity/trufflehog/v3/pkg/pb/sourcespb"
"github.com/trufflesecurity/trufflehog/v3/pkg/sources"
"github.com/trufflesecurity/trufflehog/v3/pkg/sources/elasticsearch"
)
// ScanElasticsearch scans a Elasticsearch installation.
func (e *Engine) ScanElasticsearch(ctx context.Context, c sources.ElasticsearchConfig) (sources.JobProgressRef, error) {
connection := &sourcespb.Elasticsearch{
Nodes: c.Nodes,
Username: c.Username,
Password: c.Password,
CloudId: c.CloudID,
ApiKey: c.APIKey,
ServiceToken: c.ServiceToken,
IndexPattern: c.IndexPattern,
QueryJson: c.QueryJSON,
SinceTimestamp: c.SinceTimestamp,
BestEffortScan: c.BestEffortScan,
}
var conn anypb.Any
err := anypb.MarshalFrom(&conn, connection, proto.MarshalOptions{})
if err != nil {
ctx.Logger().Error(err, "failed to marshal Elasticsearch connection")
return sources.JobProgressRef{}, err
}
sourceName := "trufflehog - Elasticsearch"
sourceID, jobID, _ := e.sourceManager.GetIDs(ctx, sourceName, elasticsearch.SourceType)
elasticsearchSource := &elasticsearch.Source{}
if err := elasticsearchSource.Init(ctx, sourceName, jobID, sourceID, true, &conn, runtime.NumCPU()); err != nil {
return sources.JobProgressRef{}, err
}
return e.sourceManager.EnumerateAndScan(ctx, sourceName, elasticsearchSource)
}