mirror of
https://github.com/trufflesecurity/trufflehog.git
synced 2024-11-10 15:14:38 +00:00
651beff492
* Allow for the use of include/exclude path files for filesystem scans * remove oopsie
38 lines
1.2 KiB
Go
38 lines
1.2 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/filesystem"
|
|
)
|
|
|
|
// ScanFileSystem scans a given file system.
|
|
func (e *Engine) ScanFileSystem(ctx context.Context, c sources.FilesystemConfig) error {
|
|
connection := &sourcespb.Filesystem{
|
|
Paths: c.Paths,
|
|
IncludePathsFile: c.IncludePathsFile,
|
|
ExcludePathsFile: c.ExcludePathsFile,
|
|
}
|
|
var conn anypb.Any
|
|
err := anypb.MarshalFrom(&conn, connection, proto.MarshalOptions{})
|
|
if err != nil {
|
|
ctx.Logger().Error(err, "failed to marshal filesystem connection")
|
|
return err
|
|
}
|
|
|
|
sourceName := "trufflehog - filesystem"
|
|
sourceID, jobID, _ := e.sourceManager.GetIDs(ctx, sourceName, filesystem.SourceType)
|
|
|
|
fileSystemSource := &filesystem.Source{}
|
|
if err := fileSystemSource.Init(ctx, sourceName, jobID, sourceID, true, &conn, runtime.NumCPU()); err != nil {
|
|
return err
|
|
}
|
|
_, err = e.sourceManager.Run(ctx, sourceName, fileSystemSource)
|
|
return err
|
|
}
|