このレポートには指定された言語の翻訳がありません。代わりに正規の英語レポートを表示しています。

バージョン付きセキュリティ評価

レポートID: SA-1212028B

7/5/2026, 10:26:36 PM

gitops-workflow セキュリティ評価 v4

スキルセキュリティ認証レポート

監査履歴
監査モデル: codex 過去のレポート
スキル名
gitops-workflow
バージョン
v4
メンテナー
sickn33
カバレッジ
3 スキャンされたファイル · 571 解析済み行数
ポリシーバージョン
利用不可

確認済みの検出結果における最高重大度

中

2 件の確認済みセキュリティ検出結果に対応が必要です。

インストールのコンテキスト

履歴上の証拠

このレポートは、現在インストール可能な成果物を説明していない可能性があります。インストールに関するガイダンスについては、現在の Skill ページを開いてください。

現在のスキルページを開く

このレポートは、マニフェストまたは ZIP をブロックも承認もしません。

Most static code-execution alerts were markdown code fence false positives, not Ruby backtick execution. Confirmed issues remain around cluster-changing setup commands, direct remote manifest application, and a Flux install command that pipes network content to sudo bash. No prompt injection text was found.

レポートの位置

過去のレポート

このレポートを使用してインストールする前に、監査履歴を開いてください。

監査アテステーション

証明不可

必要な不変のバインディングは不完全です。

人による検証

未検証

このレポートには人による検証は記録されていません。

カバレッジ

3 スキャンされたファイル · 571 解析済み行数

レビュー対象の項目を 11 件表示

制限事項

このレポートはランタイムまたはサンドボックスでの実行を主張するものではなく、副作用がないことを証明するものでもありません。

証拠チェーン

ソースバインディングからインストール契約まで証拠をたどってください。利用可能な証拠は検証を支援しますが、安全性を保証するものではありません。

  1. ソース

    バインディングは利用できません

  2. アーティファクト

    IDが不完全

  3. 監査

    完了

  4. インストール契約

    検証するためにマニフェストを開く

    マニフェストを開く

確認された機能

「確認」とは、このレポートで裏付けとなる証拠が記録されていることを意味します。「記録なし」は、機能が存在しないことを証明するものではありません。

スクリプトを含む

Skillに含まれるコードを実行する場合があります。

この監査では記録されていません

ネットワークアクセス

外部サービスに接続する場合があります。

14 件の証拠箇所で確認

ファイルシステムへのアクセス

ローカルファイルの読み取りまたは書き込みを行う可能性があります。

この監査では記録されていません

環境変数

プロセス環境から値を読み取る可能性があります。

この監査では記録されていません

外部コマンド

Skillの外部にあるコマンドまたはプログラムを呼び出す場合があります。

34 件の証拠箇所で確認

機能レビュー項目 (9)
高
Ruby/shell backtick execution
```bash
This bash block includes curl fetching an install script and piping it to sudo bash. That gives network content privileged execution if copied or run.
高
sudo privilege escalation
curl -s https://fluxcd.io/install.sh | sudo bash
The command pipes an install script from the network directly into sudo bash. This is privileged remote code execution if the user or agent runs it.
高
Hardcoded URL
curl -s https://fluxcd.io/install.sh | sudo bash
The hardcoded Flux install URL is fetched with curl and piped to sudo bash. This combines network dependency with privileged execution.
中
Ruby/shell backtick execution
```bash
This fenced bash block creates namespaces, applies a remote manifest, and reads the initial admin secret. It is legitimate setup guidance but can mutate clusters and expose sensitive credentials if run automatically.
中
Ruby/shell backtick execution
```bash
The troubleshooting block includes argocd app sync with prune, which can change or delete cluster resources. It should require explicit cluster and environment confirmation.
中
Ruby/shell backtick execution
```bash
The troubleshooting block includes argocd app sync --force, which can override live cluster state. It is legitimate but risky operational guidance.
低
Hardcoded URL
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/insta
The example applies a remote Kubernetes manifest directly from GitHub. This can install cluster resources from network content without local review.
低
Hardcoded URL
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/ha/in
The high-availability install also applies a remote GitHub manifest directly to the cluster. This is legitimate setup guidance but carries supply-chain risk.
低
Hardcoded URL
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/insta
The setup example applies a Kubernetes manifest from a remote GitHub URL. This is common but should be reviewed and pinned before cluster installation.

リスク指摘

確認済みのセキュリティ上の懸念事項は、引き続きレビューが必要な項目と分けて表示されます。

確認済みのセキュリティ上の懸念 (2)

RISK-001 中
Production Auto-Sync With Prune Example
The production Application example uses apps/production/my-app with automated sync, prune, and selfHeal. If copied directly, it can delete or rewrite production resources without approval.
The file warns against production auto-sync at line 38, but the later production path example enables automated prune and selfHeal. This is a clear operational safety gap.
RISK-002 中
Credential Passed On Command Line
The repo-add example places a repository token in a command-line password argument. Users could expose tokens through shell history, logs, or process listings.
The token value is a placeholder, but the documented pattern teaches command-line secret handling. No real secret is embedded.

是正措置

この監査で推奨される修正が記録されています。これらを適用する責任はメンテナーにあります。

  1. FIX-001
    高
    Remote install script with root privileges
    Replace the curl-to-sudo Flux install command with a pinned package, checksum verification, or manual review step.
  2. FIX-002
    中
    Remote Kubernetes manifest application
    Pin exact ArgoCD release URLs and tell users to inspect manifests before applying them to a cluster.
  3. FIX-003
    中
    Production auto-sync with prune in examples
    Change production examples to manual sync or approval-gated sync. Reserve automated prune and selfHeal for lower environments.
  4. FIX-004
    中
    Repository token shown as a command argument
    Use credential prompts, environment-specific secret stores, or documented secure token handling instead of command-line password arguments.

専門家による証拠

不変の対象ID、スキャナーメタデータ、除外された一致項目、およびソースレベルの証拠。

アーティファクト主体

Marketplace コミット
利用不可
コンテンツハッシュ
利用不可
ツリーハッシュ
利用不可
Skill パス
利用不可
監査ペイロードハッシュ
利用不可

分析メタデータ

監査モデル: codex

分析状態: 完了

対象範囲は、記録されたファイル、行、メソッド、および証拠に限定されます。ランタイムまたはサンドボックスでの実行は主張していません。

検証とエクスポート

マニフェストとロックファイルは、インストール成果物を暗号学的ハッシュに結び付けます。この完全性に関する主張は、セキュリティ評価とは別のものです。

監査アテステーション: not_attestable