mirror of
https://github.com/safedep/pmg.git
synced 2026-08-03 07:24:09 +02:00
* paranoid mode blocks suspicious packages * enable sandbox for paranoid flag * rm sandbox enabling for paranoid mode * update docs
88 lines
2.7 KiB
Go
88 lines
2.7 KiB
Go
package analyzer
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"buf.build/gen/go/safedep/api/grpc/go/safedep/services/malysis/v1/malysisv1grpc"
|
|
malysisv1pb "buf.build/gen/go/safedep/api/protocolbuffers/go/safedep/messages/malysis/v1"
|
|
packagev1 "buf.build/gen/go/safedep/api/protocolbuffers/go/safedep/messages/package/v1"
|
|
malysisv1 "buf.build/gen/go/safedep/api/protocolbuffers/go/safedep/services/malysis/v1"
|
|
drygrpc "github.com/safedep/dry/adapters/grpc"
|
|
"github.com/safedep/pmg/config"
|
|
"google.golang.org/grpc"
|
|
)
|
|
|
|
type MalysisQueryAnalyzerConfig struct{}
|
|
|
|
type malysisQueryAnalyzer struct {
|
|
client malysisv1grpc.MalwareAnalysisServiceClient
|
|
Config MalysisQueryAnalyzerConfig
|
|
}
|
|
|
|
var _ Analyzer = &malysisQueryAnalyzer{}
|
|
var _ PackageVersionAnalyzer = &malysisQueryAnalyzer{}
|
|
|
|
func NewMalysisQueryAnalyzer(config MalysisQueryAnalyzerConfig) (*malysisQueryAnalyzer, error) {
|
|
client, err := drygrpc.GrpcClient("pmg-malysis-query",
|
|
"community-api.safedep.io", "443", "", http.Header{}, []grpc.DialOption{})
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to create gRPC client: %w", err)
|
|
}
|
|
|
|
return &malysisQueryAnalyzer{
|
|
client: malysisv1grpc.NewMalwareAnalysisServiceClient(client),
|
|
Config: config,
|
|
}, nil
|
|
}
|
|
|
|
func (a *malysisQueryAnalyzer) Name() string {
|
|
return "malysis-query"
|
|
}
|
|
|
|
func (a *malysisQueryAnalyzer) Analyze(ctx context.Context,
|
|
packageVersion *packagev1.PackageVersion) (*PackageVersionAnalysisResult, error) {
|
|
|
|
res, err := a.client.QueryPackageAnalysis(ctx, &malysisv1.QueryPackageAnalysisRequest{
|
|
Target: &malysisv1pb.PackageAnalysisTarget{
|
|
PackageVersion: packageVersion,
|
|
},
|
|
})
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to query package analysis: %w", err)
|
|
}
|
|
|
|
// By default, the analyzer allows the package version
|
|
analysisResult := &PackageVersionAnalysisResult{
|
|
PackageVersion: packageVersion,
|
|
ReferenceURL: malysisReportUrl(res.GetAnalysisId()),
|
|
Action: ActionAllow,
|
|
AnalysisID: res.GetAnalysisId(),
|
|
Summary: res.GetReport().GetInference().GetSummary(),
|
|
Data: res.GetReport(),
|
|
}
|
|
|
|
cfg := config.Get()
|
|
// Mark the package version to be confirmed if it is malicious (not confirmed)
|
|
if res.GetReport().GetInference().GetIsMalware() {
|
|
analysisResult.Action = ActionConfirm
|
|
|
|
// Treat suspicious package as malicious when `--paranoid` flag is set to true
|
|
if cfg.Config.Paranoid {
|
|
analysisResult.Action = ActionBlock
|
|
}
|
|
}
|
|
|
|
// This is a confirmed malicious package, we must always block it
|
|
if res.GetVerificationRecord().GetIsMalware() {
|
|
analysisResult.Action = ActionBlock
|
|
}
|
|
|
|
return analysisResult, nil
|
|
}
|
|
|
|
func malysisReportUrl(analysisId string) string {
|
|
return fmt.Sprintf("https://app.safedep.io/community/malysis/%s", analysisId)
|
|
}
|