Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

# containers-resolver
This Go module simplifies the process of analyzing images by providing tools to extract images from various file formats and resolve the software packages within them. It enables users to gain insights into the contents of Docker images, facilitating tasks such as vulnerability assessments and software inventory management. With support for debugging and flexible extraction methods, it's a valuable resource for developers, DevOps engineers, and security professionals working with containerized environments.

Expand Down
10 changes: 9 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,15 @@ require (
)

replace (
github.com/containerd/containerd/v2 => github.com/containerd/containerd/v2 v2.1.4
// CVE-2025-64329, CVE-2024-25621 - fixed in v2.1.5
github.com/containerd/containerd/v2 => github.com/containerd/containerd/v2 v2.1.5
// CVE-2025-22868 - fixed in v1.2.31
github.com/lestrrat-go/jwx => github.com/lestrrat-go/jwx v1.2.31
// CVE-2025-46569 - fixed in v1.4.0
github.com/open-policy-agent/opa => github.com/open-policy-agent/opa v1.4.0
// CVE-2025-31133, CVE-2025-52881, CVE-2025-52565 - fixed in v1.3.3
github.com/opencontainers/runc => github.com/opencontainers/runc v1.3.3
// CVE-2026-24137 - fixed in v1.10.4
github.com/sigstore/sigstore => github.com/sigstore/sigstore v1.10.4
google.golang.org/protobuf => google.golang.org/protobuf v1.33.0
)
Loading