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

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

レポートID: SA-C5DA72CF

7/7/2026, 10:55:45 PM

extract-from-pdfs セキュリティ評価 v7

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

監査履歴
監査モデル: codex 過去のレポート
スキル名
extract-from-pdfs
バージョン
v7
メンテナー
brunoasm
カバレッジ
20 スキャンされたファイル · 5,302 解析済み行数
ポリシーバージョン
利用不可

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

重大

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

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

履歴上の証拠

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

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

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

The scripts use file writes, API calls, and environment variables for the declared PDF extraction workflow. The audit confirms the curl-to-shell installer guidance, shell-profile API key persistence, and plaintext HTTP validation calls as security issues. Most backtick, key-name, ID, SQLite, and output-write alerts are benign examples or normal user-directed operations; no prompt injection text was found.

レポートの位置

過去のレポート

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

監査アテステーション

証明不可

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

人による検証

未検証

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

カバレッジ

20 スキャンされたファイル · 5,302 解析済み行数

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

制限事項

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

証拠チェーン

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

  1. ソース

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

  2. アーティファクト

    IDが不完全

  3. 監査

    完了

  4. インストール契約

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

    マニフェストを開く

確認された機能

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

スクリプトを含む

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

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

ネットワークアクセス

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

29 件の証拠箇所で確認

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

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

17 件の証拠箇所で確認

環境変数

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

13 件の証拠箇所で確認

外部コマンド

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

48 件の証拠箇所で確認

機能レビュー項目 (10)
高
Hidden file in home directory
Add to your shell profile (~/.bashrc, ~/.zshrc) for persistence:
The guide recommends hidden shell profile files as the persistence location for an API key. The nearby command shows this is intended credential persistence, not a harmless path mention.
高
Hidden file in home directory
echo 'export ANTHROPIC_API_KEY="your-api-key-here"' >> ~/.bashrc
The command appends ANTHROPIC_API_KEY to ~/.bashrc, persisting a credential in a hidden startup file. This can expose the key through dotfile sharing, backups, or local reads.
高
Generic API/secret keys
echo 'export ANTHROPIC_API_KEY="your-api-key-here"' >> ~/.bashrc
The setup guide directs users to store an API key in ~/.bashrc instead of a dedicated secret store. That persistent credential handling increases accidental disclosure risk.
中
Hidden file access
Add to your shell profile (~/.bashrc, ~/.zshrc) for persistence:
The line directs users toward hidden shell profile files for persistent API key storage. The concern is contextual but real because the next command writes the secret there.
中
Hidden file access
echo 'export ANTHROPIC_API_KEY="your-api-key-here"' >> ~/.bashrc
This writes an API key export into ~/.bashrc. Persistent secrets in hidden startup files are easier to leak through backups, dotfile repositories, or broad local access.
中
Python HTTP libraries
response = requests.get(url, timeout=10)
This request sends WFO validation queries over plaintext HTTP. The workflow is user initiated, but the transport creates confidentiality and integrity risk.
中
Python HTTP libraries
response = requests.get(url, timeout=10)
This request sends the GeoNames URL over plaintext HTTP, including username and location parameters. The transport can leak data or permit tampered validation responses.
中
Hardcoded URL
url = f"http://www.worldfloraonline.org/api/1.0/search?query={quote(scientific_name)}"
The WFO validator uses a plaintext HTTP endpoint for remote lookups. Extracted scientific names can be observed or altered in transit.
中
Hardcoded URL
url = f"http://api.geonames.org/searchJSON?q={quote(location)}&maxRows=1&username={username}"
The GeoNames validator builds a plaintext HTTP URL containing GEONAMES_USERNAME and the location query. This exposes the username and query to network observers.
低
Hardcoded URL
curl -fsSL https://ollama.com/install.sh | sh
The hardcoded Ollama URL is used in a curl command whose output is piped to sh. The network fetch is part of an unverified remote code execution path.

リスク指摘

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

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

RISK-001 重大
Pipe to shell pattern
curl -fsSL https://ollama.com/install.sh | sh
The Linux installation instruction pipes a remote installer directly into sh. This executes downloaded code without inspection or checksum verification.

是正措置

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

  1. FIX-001
    重大
    Remote installer is piped directly to a shell.
    Replace the curl-to-shell instruction with package manager installation, manual download, and checksum verification steps.
  2. FIX-002
    高
    Setup guide recommends storing an API key in a shell profile.
    Remove the echo-to-bashrc guidance. Recommend session-only variables, ignored local env files, or a secret manager.
  3. FIX-003
    中
    Some validation calls use plaintext HTTP.
    Use HTTPS endpoints where available, or document the privacy risk and disable those validators by default.
  4. FIX-004
    低
    External validation sends extracted values to third-party services.
    Document each external API destination and recommend skip-validation for confidential datasets.

専門家による証拠

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

アーティファクト主体

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

分析メタデータ

監査モデル: codex

分析状態: 完了

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

検証とエクスポート

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

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