-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Expand file tree
/
Copy pathweb.go
More file actions
42 lines (35 loc) · 1.28 KB
/
web.go
File metadata and controls
42 lines (35 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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/web"
)
// ScanWeb scans a given web connection.
func (e *Engine) ScanWeb(ctx context.Context, c sources.WebConfig) (sources.JobProgressRef, error) {
connection := &sourcespb.Web{
Urls: c.URLs,
Crawl: c.Crawl,
Depth: int64(c.Depth),
Delay: int64(c.Delay),
Timeout: int64(c.Timeout),
UserAgent: c.UserAgent,
IgnoreRobots: c.IgnoreRobots,
}
var conn anypb.Any
err := anypb.MarshalFrom(&conn, connection, proto.MarshalOptions{})
if err != nil {
ctx.Logger().Error(err, "failed to marshal web connection")
return sources.JobProgressRef{}, err
}
sourceName := "trufflehog - web"
sourceID, jobID, _ := e.sourceManager.GetIDs(ctx, sourceName, web.SourceType)
webSource := &web.Source{}
if err := webSource.Init(ctx, sourceName, jobID, sourceID, true, &conn, runtime.NumCPU()); err != nil {
return sources.JobProgressRef{}, err
}
return e.sourceManager.EnumerateAndScan(ctx, sourceName, webSource)
}