Files
CyberStrikeAI/tools/trivy.yaml
2025-11-08 22:57:03 +08:00

51 lines
1.1 KiB
YAML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
name: "trivy"
command: "trivy"
enabled: true
short_description: "容器和文件系统漏洞扫描器"
description: |
Trivy是一个简单而全面的容器和文件系统漏洞扫描器。
**主要功能:**
- 容器镜像扫描
- 文件系统扫描
- 代码仓库扫描
- 配置文件扫描
**使用场景:**
- 容器安全扫描
- CI/CD集成
- 漏洞检测
- 安全审计
parameters:
- name: "scan_type"
type: "string"
description: "扫描类型image, fs, repo, config"
required: false
default: "image"
- name: "target"
type: "string"
description: "扫描目标(镜像名、目录、仓库)"
required: true
position: 0
format: "positional"
- name: "severity"
type: "string"
description: "严重程度过滤UNKNOWN,LOW,MEDIUM,HIGH,CRITICAL"
required: false
flag: "--severity"
format: "flag"
- name: "output_format"
type: "string"
description: "输出格式json, table, sarif"
required: false
flag: "--format"
format: "flag"
default: "json"