将 Scout 与不同的神器类型一起使用
一些 Docker Scout CLI 命令支持用于指定 要分析的对象的位置或类型。
默认情况下,使用命令
以 Docker Engine 的本地镜像存储中的镜像为目标。
以下命令始终使用本地镜像(如果存在):docker scout cves
$ docker scout cves <image>
如果本地不存在该镜像,Docker 会在运行分析之前拉取该镜像。 默认情况下,再次分析同一镜像将使用相同的本地版本。 即使标记在注册表中已更改。
通过向镜像引用添加前缀,
您可以强制 Docker Scout 分析镜像的注册表版本:registry://
$ docker scout cves registry://<image>
支持的前缀
支持的前缀包括:
前缀 | 描述 |
---|---|
image:// (默认) | 使用本地镜像,或回退到注册表查找 |
local:// | 使用本地镜像存储中的镜像(不执行注册表查找) |
registry:// | 使用注册表中的镜像(不要使用本地镜像) |
oci-dir:// | 使用 OCI 布局目录 |
archive:// | 使用 tarball 存档,由docker save |
fs:// | 使用本地目录或文件 |
您可以通过以下命令使用前缀:
docker scout compare
docker scout cves
docker scout quickview
docker scout recommendations
docker scout sbom
例子
本节包含一些示例,说明如何使用前缀
为命令指定对象。docker scout
分析本地项目
前缀允许您直接分析本地源代码,
而无需将其构建到容器镜像中。
以下命令为您提供
当前工作目录中源代码的漏洞概览摘要:fs://
docker scout quickview
$ docker scout quickview fs://.
要查看在本地源代码中发现的漏洞的详细信息,您可以
使用命令。将其与
other 标志将结果缩小到软件包和漏洞
你感兴趣。docker scout cves --details fs://.
$ docker scout cves --details --only-severity high fs://.
✓ File system read
✓ Indexed 323 packages
✗ Detected 1 vulnerable package with 1 vulnerability
## Overview
│ Analyzed path
────────────────────┼──────────────────────────────
Path │ /Users/david/demo/scoutfs
vulnerabilities │ 0C 1H 0M 0L
## Packages and Vulnerabilities
0C 1H 0M 0L fastify 3.29.0
pkg:npm/fastify@3.29.0
✗ HIGH CVE-2022-39288 [OWASP Top Ten 2017 Category A9 - Using Components with Known Vulnerabilities]
https://scout.docker.com/v/CVE-2022-39288
fastify is a fast and low overhead web framework, for Node.js. Affected versions of
fastify are subject to a denial of service via malicious use of the Content-Type
header. An attacker can send an invalid Content-Type header that can cause the
application to crash. This issue has been addressed in commit fbb07e8d and will be
included in release version 4.8.1. Users are advised to upgrade. Users unable to
upgrade may manually filter out http content with malicious Content-Type headers.
Affected range : <4.8.1
Fixed version : 4.8.1
CVSS Score : 7.5
CVSS Vector : CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
1 vulnerability found in 1 package
LOW 0
MEDIUM 0
HIGH 1
CRITICAL 0
将本地项目与镜像进行比较
使用 ,您可以比较 上的源代码分析
您的本地文件系统与容器镜像的分析。
以下示例比较本地源代码 ()
替换为注册表镜像 .
在这种情况下,比较的基准和目标都使用前缀。docker scout compare
fs://.
registry://docker/scout-cli:latest
$ docker scout compare fs://. --to registry://docker/scout-cli:latest --ignore-unchanged
WARN 'docker scout compare' is experimental and its behaviour might change in the future
✓ File system read
✓ Indexed 268 packages
✓ SBOM of image already cached, 234 packages indexed
## Overview
│ Analyzed File System │ Comparison Image
─────────────────────────┼────────────────────────────────────────────────┼─────────────────────────────────────────────
Path / Image reference │ /Users/david/src/docker/scout-cli-plugin │ docker/scout-cli:latest
│ │ bb0b01303584
platform │ │ linux/arm64
provenance │ https://github.com/dvdksn/scout-cli-plugin.git │ https://github.com/docker/scout-cli-plugin
│ 6ea3f7369dbdfec101ac7c0fa9d78ef05ffa6315 │ 67cb4ef78bd69545af0e223ba5fb577b27094505
vulnerabilities │ 0C 0H 1M 1L │ 0C 0H 1M 1L
│ │
size │ 7.4 MB (-14 MB) │ 21 MB
packages │ 268 (+34) │ 234
│ │
## Packages and Vulnerabilities
+ 55 packages added
- 21 packages removed
213 packages unchanged
为简洁起见,前面的示例被截断。
查看镜像 tarball 的 SBOM
以下示例显示了如何使用前缀
获取镜像 tarball 的 SBOM,使用 .
本例中的镜像为 ,
并将 SBOM 导出为 SPDX 格式的文件。archive://
docker save
docker/scout-cli:latest
sbom.spdx.json
$ docker pull docker/scout-cli:latest
latest: Pulling from docker/scout-cli
257973a141f5: Download complete
1f2083724dd1: Download complete
5c8125a73507: Download complete
Digest: sha256:13318bb059b0f8b0b87b35ac7050782462b5d0ac3f96f9f23d165d8ed68d0894
$ docker save docker/scout-cli:latest -o scout-cli.tar
$ docker scout sbom --format spdx -o sbom.spdx.json archive://scout-cli.tar
了解更多信息
在 CLI 参考文档中阅读命令和支持标志的信息: