-
Notifications
You must be signed in to change notification settings - Fork 342
Expand file tree
/
Copy pathmain.go
More file actions
183 lines (149 loc) · 6.29 KB
/
main.go
File metadata and controls
183 lines (149 loc) · 6.29 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
package main
// ------------------------------------------------------------------------------
// MIT License
// Copyright (c) 2020 deepfence
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
// ------------------------------------------------------------------------------
import (
"archive/tar"
"context"
"encoding/json"
"flag"
"io"
"io/fs"
"os"
"os/signal"
"path/filepath"
"strconv"
"github.com/deepfence/SecretScanner/core"
"github.com/deepfence/SecretScanner/jobs"
"github.com/deepfence/SecretScanner/output"
"github.com/deepfence/SecretScanner/server"
"github.com/rs/zerolog"
"github.com/rs/zerolog/log"
"google.golang.org/grpc"
out "github.com/deepfence/YaraHunter/pkg/output"
"github.com/deepfence/YaraHunter/pkg/runner"
yaraserver "github.com/deepfence/YaraHunter/pkg/server"
"github.com/deepfence/YaraHunter/pkg/threatintel"
pb "github.com/deepfence/agent-plugins-grpc/srcgo"
)
const (
PLUGIN_NAME = "SecretScanner"
)
var (
socketPath = flag.String("socket-path", "", "The gRPC server unix socket path")
version string
sourceRuleFile = "df-secret.json"
secretRuleFile = "secret.yar"
)
// Read the regex signatures from config file, options etc.
// and setup the session to start scanning for secrets
var session = core.GetSession()
type SecretsWriter interface {
WriteJSON() error
WriteTable() error
GetSecrets() []output.SecretFound
AddSecret(output.SecretFound)
}
func main() {
zerolog.CallerMarshalFunc = func(pc uintptr, file string, line int) string {
return filepath.Base(file) + ":" + strconv.Itoa(line)
}
log.Logger = zerolog.New(zerolog.ConsoleWriter{Out: os.Stderr, TimeFormat: "2006-01-02T15:04:05Z07:00"}).
With().Timestamp().Caller().Logger()
log.Info().Str("version", version).Msg("starting")
flag.Parse()
if *core.GetSession().Options.Debug {
zerolog.SetGlobalLevel(zerolog.DebugLevel)
} else {
zerolog.SetGlobalLevel(zerolog.InfoLevel)
}
ctx, _ := signal.NotifyContext(context.Background(), os.Interrupt)
out.ScanStatusFilename = jobs.GetDfInstallDir() + "/var/log/fenced/secret-scan-log/secret_scan_log.log"
out.ScanFilename = jobs.GetDfInstallDir() + "/var/log/fenced/secret-scan/secret_scan.log"
runnerOpts := runner.RunnerOptions{
SocketPath: *socketPath,
RulesPath: *core.GetSession().Options.RulesPath,
HostMountPath: *core.GetSession().Options.HostMountPath,
FailOnCompileWarning: *core.GetSession().Options.FailOnCompileWarning,
Local: *core.GetSession().Options.Local,
ImageName: *core.GetSession().Options.ImageName,
ContainerID: *core.GetSession().Options.ContainerID,
ConsoleURL: *core.GetSession().Options.ConsoleURL,
ConsolePort: *core.GetSession().Options.ConsolePort,
DeepfenceKey: *core.GetSession().Options.DeepfenceKey,
OutFormat: *core.GetSession().Options.OutFormat,
FailOnHighCount: *core.GetSession().Options.FailOnHighCount,
FailOnMediumCount: *core.GetSession().Options.FailOnMediumCount,
FailOnLowCount: *core.GetSession().Options.FailOnLowCount,
FailOnCount: *core.GetSession().Options.FailOnCount,
InactiveThreshold: *core.GetSession().Options.InactiveThreshold,
}
// Download rules if updater is enabled and in CLI mode
if *socketPath == "" && *core.GetSession().Options.EnableUpdater {
downloadRules(ctx, core.GetSession().Options)
}
runner.StartYaraHunter(ctx, runnerOpts, core.GetSession().ExtractorConfig,
func(base *yaraserver.GRPCScannerServer) server.SecretGRPCServer {
return server.SecretGRPCServer{
GRPCScannerServer: base,
UnimplementedSecretScannerServer: pb.UnimplementedSecretScannerServer{},
}
},
func(s grpc.ServiceRegistrar, impl any) {
pb.RegisterSecretScannerServer(s, impl.(pb.SecretScannerServer))
})
}
func downloadRules(ctx context.Context, opts *core.Options) {
log.Info().Msg("downloading secret rules")
// Check if rules already exist
rulesFile := filepath.Join(*opts.RulesPath, secretRuleFile)
if _, err := os.Stat(rulesFile); err == nil {
log.Info().Str("file", rulesFile).Msg("rules file already exists, skipping download")
return
}
// Make sure output rules directory exists
os.MkdirAll(*opts.RulesPath, fs.ModePerm)
// Download rules from versioned URL
rulesURL := threatintel.SecretRulesURL(version)
log.Info().Str("url", rulesURL).Msg("downloading rules")
content, err := threatintel.DownloadFile(ctx, rulesURL)
if err != nil {
log.Error().Err(err).Msg("failed to download rules, continuing with bundled rules if available")
return
}
log.Info().Int("bytes", content.Len()).Msg("rules file size")
// Process and write rules file
outRuleFile := filepath.Join(*opts.RulesPath, secretRuleFile)
err = threatintel.ProcessTarGz(content.Bytes(), sourceRuleFile, outRuleFile, processSecretRules)
if err != nil {
log.Error().Err(err).Msg("failed to process rules")
}
}
func processSecretRules(header *tar.Header, reader io.Reader, outPath string) error {
var fb threatintel.FeedsBundle
if err := json.NewDecoder(reader).Decode(&fb); err != nil {
log.Error().Err(err).Msg("failed to decode feeds bundle")
return err
}
if err := threatintel.ExportYaraRules(outPath, fb.ScannerFeeds.SecretRules, fb.Extra); err != nil {
log.Error().Err(err).Msg("failed to export yara rules")
return err
}
return nil
}