Skip to content
This repository was archived by the owner on Sep 11, 2026. It is now read-only.

Commit f1b0aa0

Browse files
authored
refactor the OSV scanner from the ground up (#1124)
1 parent 1169f42 commit f1b0aa0

6,627 files changed

Lines changed: 7467472 additions & 32367 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Used only to build Go binaries.
2+
FROM golang:1.24.6 AS builder
3+
4+
ARG SDK_VERSION=unset
5+
ARG COMPONENT_PATH=.
6+
ARG COMPONENT_BINARY_SOURCE_PATH=cmd/main.go
7+
8+
WORKDIR /wrk
9+
10+
# Copy only go related files.
11+
COPY ${COMPONENT_PATH} ./
12+
13+
# Security hardening and building flags for minimal binaries.
14+
#
15+
# These CGO_CPPFLAGS help preventing overflows.
16+
# Add a small overhead at compile time.
17+
RUN CGO_CPPFLAGS="-D_FORTIFY_SOURCE=2 -fstack-protector-all" \
18+
# Makes memory exploitation harder.
19+
# Add a small overhead at compile time.
20+
GOFLAGS="-buildmode=pie" \
21+
go build \
22+
-ldflags "-X github.com/smithy-security/smithy/sdk.Version=${SDK_VERSION} -s -w" \
23+
-trimpath \
24+
-o \
25+
app \
26+
${COMPONENT_BINARY_SOURCE_PATH}
27+
28+
# Create a workspace to clone repos to.
29+
RUN mkdir -p /workspace
30+
31+
# Used to actually run the binary in minimal image.
32+
FROM gcr.io/distroless/base-debian12
33+
34+
COPY --from=builder /wrk/app /bin/app
35+
36+
# Setting the workdir where we'll clone repositories.
37+
WORKDIR /workspace
38+
39+
# Set the binary as the entry point
40+
ENTRYPOINT ["/bin/app"]
File renamed without changes.
Lines changed: 22 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,24 @@
11
# osv-scanner
22

33
This component implements a [scanner](https://github.com/smithy-security/smithy/blob/main/sdk/component/component.go)
4-
that parses json reports output by [osv-scan](https://google.github.io/osv-scanner/) into [ocsf](https://github.com/ocsf) format.
4+
that invokes [osv-scan](https://google.github.io/osv-scanner/) for all modules in the repository and adds information
5+
in the output related to the lines where each vulnerable dependency discovered is located to assist the reviewing
6+
process. The results generated will be in [ocsf](https://github.com/ocsf) format.
7+
8+
The module discovery is not left to the OSV scanner itself but it is implemented by us so that we can add more
9+
intelligence. When a repository is scanned, if there is no git diff available, we will search for modules of supported
10+
languages and pass them to the scanner. If a module is identified the scanner will not look further down the filesystem
11+
tree. If a git diff is available, it will be loaded and we will look in it for modifications to dependency files of
12+
supported languages.
13+
14+
Supporting a language means that we can get the results from the OSV scanner and add information about which line of
15+
the dependency file they are declared.
16+
17+
## Supported Languages
18+
19+
1. Golang
20+
2. JavaScript/TypeScript
21+
3. Elixir
522

623
## Environment variables
724

@@ -13,9 +30,10 @@ as the following:
1330

1431
| Environment Variable | Type | Required | Default | Description |
1532
|--------------------------|--------|----------|------------|---------------------------------------------------------|
16-
| RAW\_OUT\_FILE\_PATH | string | yes | - | The path where to find the osv-scan report |
17-
| TARGET\_TYPE | string | false | repository | The type of target that was used to generate the report |
33+
| WORKSPACE\_PATH | string | yes | . | The path where root of the repository is located |
34+
| GIT\_RAW\_DIFF\_PATH | string | no | - | The path of the git diff file |
1835

1936
## Test data
2037

21-
The `results.json` file used in tests was generated with the following steps:
38+
The `raw-results.json` files used in the internal/transformer tests were generated by running the OSV scanner for well
39+
known vulnerable repositories.

components/scanners/osv-scanner/cmd/main.go

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,34 +3,38 @@ package main
33
import (
44
"context"
55
"log"
6-
"time"
76

87
"github.com/go-errors/errors"
9-
108
"github.com/smithy-security/smithy/sdk/component"
119

12-
"github.com/smithy-security/smithy/components/scanners/osv-scanner/internal/transformer"
10+
"github.com/smithy-security/smithy/components/scanners/osv-scanner/pkg/config"
11+
"github.com/smithy-security/smithy/components/scanners/osv-scanner/pkg/transformer"
1312
)
1413

1514
func main() {
16-
ctx, cancel := context.WithTimeout(context.Background(), 1*time.Minute)
15+
ctx, cancel := context.WithCancel(context.Background())
1716
defer cancel()
1817

1918
if err := Main(ctx); err != nil {
2019
log.Fatalf("unexpected error: %v", err)
2120
}
2221
}
2322

24-
// Main is the main entrypoint of this component
23+
// Main is the entrypoint to the scanner
2524
func Main(ctx context.Context, opts ...component.RunnerOption) error {
26-
opts = append(opts, component.RunnerWithComponentName("bandit"))
25+
opts = append(opts, component.RunnerWithComponentName("osv-scanner"))
26+
27+
cfg, err := config.New()
28+
if err != nil {
29+
return errors.Errorf("could not extract configuration values from environment: %w", err)
30+
}
2731

28-
ocsfTransformer, err := transformer.New()
32+
osvScannerTranformer, err := transformer.New(cfg)
2933
if err != nil {
3034
return errors.Errorf("could not create transformer: %w", err)
3135
}
3236

33-
if err := component.RunScanner(ctx, ocsfTransformer, opts...); err != nil {
37+
if err := component.RunScanner(ctx, osvScannerTranformer, opts...); err != nil {
3438
return errors.Errorf("could not run scanner: %w", err)
3539
}
3640

components/scanners/osv-scanner/component.yaml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,8 @@ description: "Scans third party dependencies of multiple languages."
33
type: scanner
44
steps:
55
- name: scanner
6-
image: components/scanners/osv-scanner/scanner
7-
executable: /bin/bash
8-
env_vars:
9-
RAW_OUT_FILE: "{{ scratchWorkspace }}/output.json"
10-
args:
11-
- -c
12-
- /entrypoint.sh scan source -r --format=sarif --call-analysis=true {{ sourceCodeWorkspace }}
13-
- name: parser
146
image: components/scanners/osv-scanner
157
env_vars:
16-
RAW_OUT_FILE: "{{ scratchWorkspace }}/output.json"
8+
GIT_RAW_DIFF_PATH: "{{ targetMetadataWorkspace }}/raw.diff"
179
WORKSPACE_PATH: "{{ sourceCodeWorkspace }}"
1810
executable: /bin/app
Lines changed: 180 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,67 +1,226 @@
11
module github.com/smithy-security/smithy/components/scanners/osv-scanner
22

3-
go 1.23.4
3+
go 1.24.6
4+
5+
toolchain go1.24.10
46

57
require (
8+
github.com/bluekeyes/go-gitdiff v0.8.1
69
github.com/go-errors/errors v1.5.1
7-
github.com/jonboulle/clockwork v0.5.0
10+
github.com/google/osv-scanner/v2 v2.2.4
11+
github.com/ossf/osv-schema/bindings/go v0.0.0-20251012234424-434020c6442f
12+
github.com/pandatix/go-cvss v0.6.2
813
github.com/smithy-security/pkg/env v0.0.3
9-
github.com/smithy-security/pkg/sarif v0.0.14
10-
github.com/smithy-security/smithy/sdk v0.0.19-alpha
11-
github.com/stretchr/testify v1.10.0
12-
google.golang.org/protobuf v1.36.6
14+
github.com/smithy-security/pkg/languages v0.0.2-0.20251114203348-2ddb8b3c56f8
15+
github.com/smithy-security/pkg/utils v0.0.2
16+
github.com/smithy-security/smithy/sdk v0.0.23-alpha
17+
github.com/stretchr/testify v1.11.1
18+
google.golang.org/protobuf v1.36.10
1319
)
1420

1521
require (
1622
ariga.io/atlas v0.29.0 // indirect
23+
bitbucket.org/creachadair/stringset v0.0.14 // indirect
24+
cloud.google.com/go/compute/metadata v0.8.4 // indirect
25+
dario.cat/mergo v1.0.2 // indirect
26+
deps.dev/api/v3 v3.0.0-20250917073939-6ff3dd7d2eea // indirect
27+
deps.dev/api/v3alpha v0.0.0-20250903005441-604c45d5b44b // indirect
28+
deps.dev/util/maven v0.0.0-20250917073939-6ff3dd7d2eea // indirect
29+
deps.dev/util/pypi v0.0.0-20250903005441-604c45d5b44b // indirect
30+
deps.dev/util/resolve v0.0.0-20250917073939-6ff3dd7d2eea // indirect
31+
deps.dev/util/semver v0.0.0-20250917073939-6ff3dd7d2eea // indirect
32+
github.com/AdaLogics/go-fuzz-headers v0.0.0-20240806141605-e8a1dd7889d6 // indirect
33+
github.com/AdamKorcz/go-118-fuzz-build v0.0.0-20250520111509-a70c2aa677fa // indirect
34+
github.com/BurntSushi/toml v1.5.0 // indirect
35+
github.com/CycloneDX/cyclonedx-go v0.9.3 // indirect
36+
github.com/GehirnInc/crypt v0.0.0-20230320061759-8cc1b52080c5 // indirect
1737
github.com/Masterminds/goutils v1.1.1 // indirect
1838
github.com/Masterminds/semver/v3 v3.2.0 // indirect
1939
github.com/Masterminds/sprig/v3 v3.2.3 // indirect
40+
github.com/Microsoft/go-winio v0.6.2 // indirect
41+
github.com/Microsoft/hcsshim v0.13.0 // indirect
42+
github.com/ProtonMail/go-crypto v1.3.0 // indirect
2043
github.com/abice/go-enum v0.6.0 // indirect
2144
github.com/agext/levenshtein v1.2.3 // indirect
45+
github.com/anchore/go-lzo v0.1.0 // indirect
46+
github.com/anchore/go-struct-converter v0.0.0-20250211213226-cce56d595160 // indirect
2247
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
2348
github.com/bmatcuk/doublestar v1.3.4 // indirect
24-
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
25-
github.com/davecgh/go-spew v1.1.1 // indirect
49+
github.com/cloudflare/circl v1.6.1 // indirect
50+
github.com/compose-spec/compose-go/v2 v2.8.1 // indirect
51+
github.com/containerd/cgroups/v3 v3.0.5 // indirect
52+
github.com/containerd/containerd v1.7.27 // indirect
53+
github.com/containerd/containerd/api v1.9.0 // indirect
54+
github.com/containerd/continuity v0.4.5 // indirect
55+
github.com/containerd/errdefs v1.0.0 // indirect
56+
github.com/containerd/errdefs/pkg v0.3.0 // indirect
57+
github.com/containerd/fifo v1.1.0 // indirect
58+
github.com/containerd/log v0.1.0 // indirect
59+
github.com/containerd/platforms v1.0.0-rc.1 // indirect
60+
github.com/containerd/stargz-snapshotter/estargz v0.16.3 // indirect
61+
github.com/containerd/ttrpc v1.2.7 // indirect
62+
github.com/containerd/typeurl/v2 v2.2.3 // indirect
63+
github.com/cpuguy83/go-md2man/v2 v2.0.7 // indirect
64+
github.com/cyphar/filepath-securejoin v0.4.1 // indirect
65+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
66+
github.com/deitch/magic v0.0.0-20240306090643-c67ab88f10cb // indirect
67+
github.com/diskfs/go-diskfs v1.7.0 // indirect
68+
github.com/distribution/reference v0.6.0 // indirect
69+
github.com/djherbis/times v1.6.0 // indirect
70+
github.com/docker/cli v28.3.3+incompatible // indirect
71+
github.com/docker/distribution v2.8.3+incompatible // indirect
72+
github.com/docker/docker v28.3.3+incompatible // indirect
73+
github.com/docker/docker-credential-helpers v0.9.3 // indirect
74+
github.com/docker/go-connections v0.5.0 // indirect
75+
github.com/docker/go-events v0.0.0-20250114142523-c867878c5e32 // indirect
76+
github.com/docker/go-units v0.5.0 // indirect
77+
github.com/dsoprea/go-exfat v0.0.0-20190906070738-5e932fbdb589 // indirect
78+
github.com/dsoprea/go-logging v0.0.0-20200710184922-b02d349568dd // indirect
79+
github.com/dustin/go-humanize v1.0.1 // indirect
80+
github.com/edsrzf/mmap-go v1.2.0 // indirect
81+
github.com/elliotwutingfeng/asciiset v0.0.0-20230602022725-51bbb787efab // indirect
82+
github.com/emirpasic/gods v1.18.1 // indirect
83+
github.com/erikvarga/go-rpmdb v0.0.0-20250523120114-a15a62cd4593 // indirect
84+
github.com/felixge/httpsnoop v1.0.4 // indirect
85+
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
86+
github.com/go-git/go-billy/v5 v5.6.2 // indirect
87+
github.com/go-git/go-git/v5 v5.16.3 // indirect
88+
github.com/go-logr/logr v1.4.3 // indirect
89+
github.com/go-logr/stdr v1.2.2 // indirect
90+
github.com/go-ole/go-ole v1.2.6 // indirect
2691
github.com/go-openapi/inflect v0.19.0 // indirect
92+
github.com/go-restruct/restruct v1.2.0-alpha // indirect
93+
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
94+
github.com/gobwas/glob v0.2.3 // indirect
95+
github.com/gogo/protobuf v1.3.2 // indirect
96+
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
2797
github.com/golang/mock v1.6.0 // indirect
28-
github.com/google/go-cmp v0.6.0 // indirect
98+
github.com/google/go-cmp v0.7.0 // indirect
99+
github.com/google/go-containerregistry v0.20.6 // indirect
100+
github.com/google/osv-scalibr v0.3.7-0.20251023161426-90e9ac9cc1b3 // indirect
29101
github.com/google/uuid v1.6.0 // indirect
30102
github.com/hashicorp/hcl/v2 v2.18.1 // indirect
31103
github.com/huandu/xstrings v1.3.3 // indirect
104+
github.com/ianlancetaylor/demangle v0.0.0-20250628045327-2d64ad6b7ec5 // indirect
32105
github.com/imdario/mergo v0.3.13 // indirect
33106
github.com/jackc/pgpassfile v1.0.0 // indirect
34107
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
35108
github.com/jackc/pgx/v5 v5.6.0 // indirect
109+
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
110+
github.com/jedib0t/go-pretty/v6 v6.6.8 // indirect
111+
github.com/jonboulle/clockwork v0.5.0 // indirect
112+
github.com/kevinburke/ssh_config v1.2.0 // indirect
113+
github.com/klauspost/compress v1.18.0 // indirect
36114
github.com/labstack/gommon v0.4.1 // indirect
115+
github.com/lunixbochs/struc v0.0.0-20200707160740-784aaebc1d40 // indirect
116+
github.com/masahiro331/go-ext4-filesystem v0.0.0-20240620024024-ca14e6327bbd // indirect
37117
github.com/mattn/go-colorable v0.1.13 // indirect
38118
github.com/mattn/go-isatty v0.0.20 // indirect
119+
github.com/mattn/go-runewidth v0.0.16 // indirect
120+
github.com/mattn/go-shellwords v1.0.12 // indirect
39121
github.com/mattn/go-sqlite3 v1.14.24 // indirect
40122
github.com/mattn/goveralls v0.0.12 // indirect
123+
github.com/micromdm/plist v0.2.1 // indirect
41124
github.com/mitchellh/copystructure v1.2.0 // indirect
125+
github.com/mitchellh/go-homedir v1.1.0 // indirect
42126
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
43-
github.com/mitchellh/mapstructure v1.5.0 // indirect
44127
github.com/mitchellh/reflectwalk v1.0.2 // indirect
128+
github.com/moby/buildkit v0.23.2 // indirect
129+
github.com/moby/docker-image-spec v1.3.1 // indirect
130+
github.com/moby/locker v1.0.1 // indirect
131+
github.com/moby/sys/mountinfo v0.7.2 // indirect
132+
github.com/moby/sys/sequential v0.6.0 // indirect
133+
github.com/moby/sys/signal v0.7.1 // indirect
134+
github.com/moby/sys/user v0.4.0 // indirect
135+
github.com/moby/sys/userns v0.1.0 // indirect
136+
github.com/ncruces/go-strftime v0.1.9 // indirect
137+
github.com/opencontainers/go-digest v1.0.0 // indirect
138+
github.com/opencontainers/image-spec v1.1.1 // indirect
139+
github.com/opencontainers/runtime-spec v1.2.1 // indirect
140+
github.com/opencontainers/selinux v1.12.0 // indirect
141+
github.com/owenrumney/go-sarif/v3 v3.2.3 // indirect
45142
github.com/package-url/packageurl-go v0.1.3 // indirect
46-
github.com/pmezard/go-difflib v1.0.0 // indirect
143+
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
144+
github.com/pierrec/lz4/v4 v4.1.17 // indirect
145+
github.com/pjbgf/sha1cd v0.4.0 // indirect
146+
github.com/pkg/errors v0.9.1 // indirect
147+
github.com/pkg/xattr v0.4.9 // indirect
148+
github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 // indirect
149+
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
150+
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
151+
github.com/rivo/uniseg v0.4.7 // indirect
47152
github.com/russross/blackfriday/v2 v2.1.0 // indirect
153+
github.com/rust-secure-code/go-rustaudit v0.0.0-20250226111315-e20ec32e963c // indirect
154+
github.com/saferwall/pe v1.5.7 // indirect
155+
github.com/santhosh-tekuri/jsonschema/v6 v6.0.1 // indirect
156+
github.com/secDre4mer/pkcs7 v0.0.0-20240322103146-665324a4461d // indirect
157+
github.com/sergi/go-diff v1.4.0 // indirect
158+
github.com/shirou/gopsutil v3.21.11+incompatible // indirect
48159
github.com/shopspring/decimal v1.2.0 // indirect
49-
github.com/smithy-security/pkg/utils v0.0.2 // indirect
160+
github.com/sirupsen/logrus v1.9.4-0.20230606125235-dd1b4c2e81af // indirect
161+
github.com/skeema/knownhosts v1.3.1 // indirect
162+
github.com/spdx/gordf v0.0.0-20250128162952-000978ccd6fb // indirect
163+
github.com/spdx/tools-golang v0.5.5 // indirect
50164
github.com/spf13/cast v1.3.1 // indirect
51165
github.com/sqlc-dev/sqlc v1.27.0 // indirect
166+
github.com/thoas/go-funk v0.9.3 // indirect
167+
github.com/tidwall/gjson v1.18.0 // indirect
168+
github.com/tidwall/jsonc v0.3.2 // indirect
169+
github.com/tidwall/match v1.1.1 // indirect
170+
github.com/tidwall/pretty v1.2.1 // indirect
171+
github.com/tink-crypto/tink-go/v2 v2.4.0 // indirect
172+
github.com/tklauser/go-sysconf v0.3.15 // indirect
173+
github.com/tklauser/numcpus v0.10.0 // indirect
174+
github.com/tonistiigi/go-csvvalue v0.0.0-20240814133006-030d3b2625d0 // indirect
175+
github.com/ulikunitz/xz v0.5.15 // indirect
52176
github.com/urfave/cli/v2 v2.26.0 // indirect
177+
github.com/vbatts/tar-split v0.12.1 // indirect
178+
github.com/xanzy/ssh-agent v0.3.3 // indirect
179+
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
180+
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
181+
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
182+
github.com/xhit/go-str2duration/v2 v2.1.0 // indirect
53183
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
184+
github.com/yusufpapurcu/wmi v1.2.4 // indirect
54185
github.com/zclconf/go-cty v1.14.4 // indirect
186+
go.etcd.io/bbolt v1.4.2 // indirect
187+
go.opencensus.io v0.24.0 // indirect
188+
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
189+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.62.0 // indirect
190+
go.opentelemetry.io/otel v1.37.0 // indirect
191+
go.opentelemetry.io/otel/metric v1.37.0 // indirect
192+
go.opentelemetry.io/otel/trace v1.37.0 // indirect
55193
go.uber.org/mock v0.5.0 // indirect
56-
golang.org/x/crypto v0.24.0 // indirect
57-
golang.org/x/mod v0.18.0 // indirect
58-
golang.org/x/net v0.26.0 // indirect
59-
golang.org/x/sync v0.8.0 // indirect
60-
golang.org/x/sys v0.22.0 // indirect
61-
golang.org/x/text v0.16.0 // indirect
62-
golang.org/x/tools v0.22.0 // indirect
194+
go.uber.org/multierr v1.11.0 // indirect
195+
go.uber.org/zap v1.26.0 // indirect
196+
go.yaml.in/yaml/v2 v2.4.2 // indirect
197+
go.yaml.in/yaml/v3 v3.0.4 // indirect
198+
golang.org/x/crypto v0.43.0 // indirect
199+
golang.org/x/exp v0.0.0-20250711185948-6ae5c78190dc // indirect
200+
golang.org/x/mod v0.28.0 // indirect
201+
golang.org/x/net v0.46.0 // indirect
202+
golang.org/x/oauth2 v0.30.0 // indirect
203+
golang.org/x/sync v0.17.0 // indirect
204+
golang.org/x/sys v0.37.0 // indirect
205+
golang.org/x/telemetry v0.0.0-20250908211612-aef8a434d053 // indirect
206+
golang.org/x/text v0.30.0 // indirect
207+
golang.org/x/tools v0.37.0 // indirect
63208
golang.org/x/tools/cmd/cover v0.1.0-deprecated // indirect
64-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240528184218-531527333157 // indirect
65-
google.golang.org/grpc v1.65.0 // indirect
209+
golang.org/x/vuln v1.1.4 // indirect
210+
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
211+
google.golang.org/genproto v0.0.0-20250707201910-8d1bb00bc6a7 // indirect
212+
google.golang.org/genproto/googleapis/api v0.0.0-20250804133106-a7a43d27e69b // indirect
213+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250804133106-a7a43d27e69b // indirect
214+
google.golang.org/grpc v1.76.0 // indirect
215+
gopkg.in/ini.v1 v1.67.0 // indirect
216+
gopkg.in/warnings.v0 v0.1.2 // indirect
66217
gopkg.in/yaml.v3 v3.0.1 // indirect
218+
modernc.org/libc v1.66.3 // indirect
219+
modernc.org/mathutil v1.7.1 // indirect
220+
modernc.org/memory v1.11.0 // indirect
221+
modernc.org/sqlite v1.38.0 // indirect
222+
osv.dev/bindings/go v0.0.0-20251013010847-b847e93bd9b0 // indirect
223+
sigs.k8s.io/yaml v1.5.0 // indirect
224+
www.velocidex.com/golang/go-ntfs v0.2.0 // indirect
225+
www.velocidex.com/golang/regparser v0.0.0-20250203141505-31e704a67ef7 // indirect
67226
)

0 commit comments

Comments
 (0)