Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计异常

vulnerability-remediation漏洞修复

Agent Skill

用于辅助安全审计、权限检查、凭据风险、认证流程和常见漏洞排查。它适合让 Agent 梳理敏感配置、检查依赖风险、分析鉴权逻辑或生成安全复核清单。使用时不能把工具输出直接当最终结论,涉及密钥、令牌、用户数据或生产系统时,应先确认最小权限、脱敏方式和操作边界。

总安装

539

周安装

22

GitHub Stars

547

下载量

174
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:vulnerability-remediation(漏洞修复)
来源仓库:https://github.com/chainloop-dev/chainloop
仓库路径:skills/vulnerability-remediation
安装命令:
npx skills add https://github.com/chainloop-dev/chainloop --skill vulnerability-remediation
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/chainloop-dev/chainloop --skill vulnerability-remediation

简介

用于指导漏洞修复方案设计、补丁应用与回归测试。

  • 适合编写安全加固脚本、更新依赖版本或重构危险代码。
  • 通过 GitHub 安装,提供修复模板与最佳实践参考。
  • 修复后必须进行充分测试,防止引入新问题。
  • vulnerability-remediation 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Vulnerability Remediation for chainloop

This skill reviews open vulnerability policy violations recorded in Chainloop for the chainloop project and applies fixes to the affected source files.

Step 1: Find the Latest Project Version

Use list_products_with_versions (no parameters needed — uses the current chainloop org) and locate the Chainloop Community Edition product. Find the chainloop project version entry and note its projectVersionId (UUID).

Step 2: Gather Compliance Results and Evidence in Parallel

Once the projectVersionId is known, make both of these calls at the same time:

Call Aget_frameworks_compliance:

  • project_version_id: the UUID from Step 1
  • framework_ids: ["0ceef195-6900-4166-8407-77eb84954ed3"] (chainloop-best-practices)

Call Blist_pieces_of_evidence:

  • project_name: chainloop
  • project_version_name: the version name from Step 1 (e.g. v1.77.0)
  • latest: true

Parsing the compliance result (Call A)

The response will be large — parse it programmatically using a Bash subagent:

import json

with open('<tool-result-file>') as f:
    raw = json.load(f)
data = json.loads(raw[0]['text'])

for req in data:
    if 'vulnerabilit' in req.get('name', '').lower():
        status = req.get('status', '')
        failed = [e for e in req.get('policyEvaluations', [])
                  if e.get('status') not in ('PASSED', 'SKIPPED')]
        print(f"Requirement: {req['name']} — Status: {status}")
        for e in failed:
            print(f"  FAILED: policy={e['name']} material={e.get('materialName','-')} status={e.get('status','-')}")

This gives you the list of failing material names (e.g. control-plane-migrations-report).

Step 3: Download the SARIF for Each Failing Material

From the list_pieces_of_evidence result (Call B above), find the item whose name matches the failing material name and whose kind is SARIF. Use its digest field directly — no need to decode attestations.

Call download_evidence_by_digest with:

  • digest: the digest of the matching SARIF item
  • download_content: true

The SARIF logicalLocations[].fullyQualifiedName field contains the full image reference, e.g.:

ghcr.io/chainloop-dev/chainloop/control-plane-migrations:v1.77.0@sha256:<digest>:/atlas

The binary path (e.g. /atlas, /app) tells you which binary inside the image is vulnerable.

Step 4: Identify the Fix

4a. Atlas / Migration Dockerfile vulnerabilities

Symptom: SARIF location is /atlas, image is control-plane-migrations

Source file: app/controlplane/Dockerfile.migrations

Fix procedure:

  1. Check the current atlas version in the comment at the top of the Dockerfile (e.g. # atlas version v1.2.0)
  2. Find the latest available stable version: curl -s "https://registry.hub.docker.com/v2/repositories/arigaio/atlas/tags?page_size=20&ordering=last_updated" \ | python3 -c "import json,sys; [print(t['name']) for t in json.load(sys.stdin)['results'] if t['name'][0].isdigit() and '-' not in t['name']]"
  3. Run grype on the current and candidate versions to confirm the CVEs are present then gone: grype arigaio/atlas:<current-version> --only-fixed 2>&1 grype arigaio/atlas:<new-version> --only-fixed 2>&1 A clean run has only the header line and no CVE rows.
  4. If the latest stable tag still has CVEs, also check the latest tag — atlas rebuilds it frequently with updated Go toolchain and dependencies: docker pull arigaio/atlas:latest grype arigaio/atlas:latest --only-fixed 2>&1 docker run --rm arigaio/atlas:latest version If latest is clean and the version is a reasonable increment (e.g. canary of the next patch), it is acceptable since the image is pinned by digest.
  5. Once a clean version is confirmed, pull it and get its digest: docker pull arigaio/atlas:<new-version> docker inspect --format='{{index.RepoDigests 0}}' arigaio/atlas:<new-version>
  6. Update app/controlplane/Dockerfile.migrations: # from: arigaio/atlas:<NEW_VERSION> # docker run arigaio/atlas@sha256:<NEW_DIGEST> version # atlas version v<NEW_VERSION> FROM arigaio/atlas@sha256:<NEW_DIGEST> as base
  7. Update ATLAS_VERSION in the following files to match the latest stable version (used for CLI tool installation, not the Docker image):

- common.mk — the ATLAS_VERSION=vX.X.X in the init target - .github/workflows/test.yml — the ATLAS_VERSION: vX.X.X env variable

4b. Go stdlib / Go module vulnerabilities (backend)

Symptom: SARIF location is a Go binary (e.g. /app, /server), package is stdlib or a Go module

Fix options (in order of preference):

Option A — Upgrade Go version (for stdlib CVEs): Use the upgrading-golang skill to bump the Go version in go.mod and all Dockerfiles.

Option B — Upgrade a specific Go dependency (for third-party modules):

  1. Identify the affected module from the SARIF purls field (e.g. pkg:golang/github.com/foo/bar@v1.2.3)
  2. Update go.mod: go get github.com/foo/bar@<fixed-version> go mod tidy
  3. Verify with grype: grype dir:. --only-fixed 2>&1

Step 5: Verify the Fix with Grype

Always run grype before and after the change to confirm the CVEs are resolved:

# Before — should show the CVE rows
grype <image>:<current-version> --only-fixed 2>&1

# After — should show header only, no CVE rows
grype <image>:<new-version> --only-fixed 2>&1

A clean run has only the column header line and zero data rows.

Step 6: Commit and Create a PR

  1. Check which branch you are on — do not create a new branch if one already exists: git branch --show-current
  2. Commit with signoff (no co-author): git add <changed-files> git commit -s -m "fix(<scope>): <short description of the CVE fix>" git push -u origin <current-branch>
  3. Create the PR with gh pr create: gh pr create --title "fix(<scope>): <short description>" --body "$(cat <<'EOF' ## Summary - <bullet: what was upgraded and why> - Fixes <CVE-ID> (<Severity>) and <CVE-ID> (<Severity>) in <package> - <brief note on how the fix works, e.g. new version built with Go X.Y.Z> EOF)"

Step 7: Report Results

Summarise the findings and changes in this format:

## Vulnerability Remediation Summary

**Project**: chainloop v<version>
**Requirement**: no-vulnerabilities-high — was: FAIL

### Fixed

| CVE | Severity | Package | Old Version | Fix Applied |
|-----|----------|---------|-------------|-------------|
| CVE-XXXX-XXXXX | Critical | <pkg> | <old> | Upgraded <file> to <new> |

### Files Changed
- `app/controlplane/Dockerfile.migrations` — atlas vX.X.X → vX.X.X
- `common.mk` — ATLAS_VERSION vX.X.X → vX.X.X (if upgraded)
- `.github/workflows/test.yml` — ATLAS_VERSION vX.X.X → vX.X.X (if upgraded)

### PR
<GitHub PR URL>

Key Reference Data

ItemValue
Chainloop orgchainloop
Project namechainloop
chainloop-best-practices framework ID0ceef195-6900-4166-8407-77eb84954ed3
Continuous-scanning workflow IDc506a425-d307-4a59-9132-659ffd417b57
Migrations Dockerfileapp/controlplane/Dockerfile.migrations
Atlas CLI version (Makefile)common.mkATLAS_VERSION=vX.X.X in init target
Atlas CLI version (CI).github/workflows/test.ymlATLAS_VERSION: vX.X.X env
Backend go.modgo.mod (root)

Important Notes

  • Always pin Docker images by SHA256 digest, not tag alone
  • For Go stdlib CVEs, upgrading the atlas or golang builder image is usually sufficient — check via grype before touching go.mod
  • Run go mod tidy after any go.mod change
  • The compliance-scanning runs daily, so the policy status will update automatically after the fix is merged and a new image is built

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.36%
按下载量换算65

Claude

27.41%
按下载量换算48

Cursor

19.01%
按下载量换算33

Gemini CLI

10.12%
按下载量换算18

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills