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

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

レポートID: SA-C8087C39

7/8/2026, 6:03:20 AM

seo-geo セキュリティ評価 v4

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

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

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

中

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

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

履歴上の証拠

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

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

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

Most static findings are false positives from Markdown examples, JSON-LD templates, placeholder URLs, and words containing key. Real risks remain from outbound website audits, DataForSEO API communication, and environment-based API credentials. No prompt-injection evidence was found.

レポートの位置

過去のレポート

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

監査アテステーション

証明不可

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

人による検証

未検証

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

カバレッジ

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

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

制限事項

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

証拠チェーン

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

  1. ソース

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

  2. アーティファクト

    IDが不完全

  3. 監査

    完了

  4. インストール契約

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

    マニフェストを開く

確認された機能

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

スクリプトを含む

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

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

ネットワークアクセス

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

90 件の証拠箇所で確認

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

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

1 件の証拠箇所で確認

環境変数

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

3 件の証拠箇所で確認

外部コマンド

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

22 件の証拠箇所で確認

機能レビュー項目 (9)
低
Python environment access
login = os.environ.get("DATAFORSEO_LOGIN")
The helper reads DataForSEO credentials from environment variables. This is intended, but it gives the skill access to user-provided API secrets when scripts run.
低
Python environment access
password = os.environ.get("DATAFORSEO_PASSWORD")
The helper reads DataForSEO credentials from environment variables. This is intended, but it gives the skill access to user-provided API secrets when scripts run.
低
Python HTTP libraries
import urllib.request
The DataForSEO wrapper makes outbound HTTPS requests to the documented API endpoint. This network access is expected for keyword research, but it is real third-party communication.
低
Python HTTP libraries
req = urllib.request.Request(
The DataForSEO wrapper makes outbound HTTPS requests to the documented API endpoint. This network access is expected for keyword research, but it is real third-party communication.
低
Python HTTP libraries
with urllib.request.urlopen(req, timeout=60) as resp:
The DataForSEO wrapper makes outbound HTTPS requests to the documented API endpoint. This network access is expected for keyword research, but it is real third-party communication.
低
Hardcoded URL
API_BASE = "https://api.dataforseo.com/v3"
The DataForSEO wrapper makes outbound HTTPS requests to the documented API endpoint. This network access is expected for keyword research, but it is real third-party communication.
低
Python HTTP libraries
import urllib.request
The SEO audit script uses urllib to fetch a target page and related crawl files. The behavior is intended, but it performs outbound requests from the runtime environment.
低
Python HTTP libraries
req = urllib.request.Request(url, headers={"User-Agent": "SEO-Audit/1.0"})
The SEO audit script uses urllib to fetch a target page and related crawl files. The behavior is intended, but it performs outbound requests from the runtime environment.
低
Python HTTP libraries
with urllib.request.urlopen(req, timeout=timeout) as resp:
The SEO audit script uses urllib to fetch a target page and related crawl files. The behavior is intended, but it performs outbound requests from the runtime environment.

リスク指摘

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

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

RISK-001 中
Unrestricted URL Fetching in SEO Audit Script
The audit script accepts a URL argument and fetches that page, then derives robots.txt and sitemap.xml URLs from the same host. Without host validation, running it in a privileged agent environment could reach internal services or attacker-controlled hosts.
The code directly uses user-provided URL input in urllib requests and derives additional URLs from that host. This is intentional SEO behavior, but the absence of host controls creates SSRF-style risk.

是正措置

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

  1. FIX-001
    中
    The SEO audit script can fetch arbitrary user-supplied URLs.
    Validate URL schemes and hosts, block localhost and private IP ranges, limit redirects, and cap response size before fetching.
  2. FIX-002
    中
    A schema template includes a curl pipe-to-shell install example as placeholder text.
    Replace the install text with neutral signup guidance or a safer installation example that does not pipe remote content into a shell.
  3. FIX-003
    低
    DataForSEO scripts read API credentials from environment variables and send requests to a third-party API.
    Document the outbound API use clearly, require explicit user consent before running paid API scripts, and recommend least-privilege credentials.
  4. FIX-004
    低
    Command examples can trigger network requests when copied or executed by an agent.
    Mark command examples as optional, require target-domain confirmation, and remind users to run them only for authorized sites.

専門家による証拠

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

アーティファクト主体

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

分析メタデータ

監査モデル: codex

分析状態: 完了

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

検証とエクスポート

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

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