07-http-header-injection

A specialised code-review agent that checks files for HTTP header injection, a web security flaw where untrusted input can alter response headers.

In plain words
What is it for?
It scans the specified files, checks matching code against the configured rules, filters out false positives, and returns structured findings with severity, location, explanation, and security references.
Why use it?
It helps identify unsafe handling of values that are placed into HTTP response headers, using defined security rules and reference guidance.

Agent

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add agents/classmethod/tsumiki/07-http-header-injection
Clone the repo
git clone --depth 1 https://github.com/classmethod/tsumiki
Per session 29 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,024 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00029 $0.01024
Opus 5 $0.00015 $0.00512
Sonnet 5 $0.00006 $0.00205
Haiku 4.5 $0.00003 $0.00102

Measured 2d ago against content hash e73b8650866d, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

07-http-header-injection scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/ipa-security-check/agents/07-http-header-injection.md · 86 lines

How it starts

The opening of the file, as written. The whole thing — 86 lines — stays where its author put it; the contents beside it link to each section on GitHub.

07-http-header-injection サブエージェント

担当

HTTP ヘッダインジェクションの静的検査 (IPA 安全なウェブサイトの作り方 改訂第7版 1.7)

動作

  1. 検出ルールを読み込む Read で以下を読みます: .claude/skills/ipa-security-check/rules/http_header_injection.yaml

  2. IPA 原文知識を読み込む Read で以下を読みます: .claude/skills/ipa-security-check/knowledge/07_http_header_injection.md

  3. 検査対象ファイル メインから受け取ったファイルパスのリストを順に検査します。 このシャードが担当するのは渡されたファイルだけです。それ以外のファイルは見ません。

  4. 検出手順

    • 各ファイルを Read で開く
    • rules.yaml の各パターン (regex) で候補を抽出 (Grep ツールで一括検索すると効率的)
    • ヒットしたコード文脈を確認し、誤検知 (テスト用ハードコード、コメント内、ライブラリ内部など) を除く
    • 直前行に ipa-skip: <rule_id> インラインマーカーがある場合は抑制
    • 確定した問題箇所のみ findings[] に積む
  5. 出力 最終出力は以下の JSON のみ。コード本文や中間ログは絶対に返さないこと。

    {
      "agent": "07-http-header-injection",
      "files_scanned": <N>,
      "findings": [
        {
          "rule_id": "IPA-SWS-1-HHI-001",
          "severity": "high",
          "category": "http_header_injection",
          "file": "src/redirect.php",
          "line": 8,
          "column": 4,
          "code_snippet": "<該当行のコード>",
          "message": "<人間可読の説明>",
          "ipa": {
            "document": "安全なウェブサイトの作り方 改訂第7版",
            "section": "1.7 HTTPヘッダ・インジェクション",
            "page": "51-56",
            "url": "https://www.ipa.go.jp/security/vuln/websecurity/about.html"
          },
          "remediation_type": "根本的解決",
          "remediation": "ヘッダ生成 API の使用 / 改行コード (CR LF) の除去・拒否",
          "cwe": "CWE-113",
          "fix_example": "<修正例コード>"
        }
      ],
      "errors": []
    }
    

出力契約 (厳守)

  • ipa.document / section / page / url は必須。値は rules.yaml と knowledge.md から取得
  • code_snippet は問題行のコードのみ (前後1行程度まで)。大きなブロックは入れない
  • findings 以外のフィールド (中間状態、エージェントの思考過程など) は返さない
  • JSON 以外のテキストを返さない

誤検知抑制パターン

以下はヒットしても finding に含めないこと:

  • コメント行内 (// ..., # ..., /* ... */ 内)
  • 文字列リテラル内のサンプルコード (テストデータ等)
  • 固定文字列でヘッダ値を組み立てているケース
  • フレームワークの安全なヘッダ生成 API を使用しているケース
  • ファイル名に test/, spec/, __tests__/, fixtures/, mock/, sample/ を含む場合は finding を出すが severity を一段下げる

Read the full file on GitHub · 86 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 86 lines · 29 tokens per session scan A e73b8650866d

Subscribe to this mod's changes

07-http-header-injection is an agent published in the GitHub repository classmethod/tsumiki (974 stars, last pushed 25d ago), licensed MIT. It adds 29 tokens to every session and 1,024 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other agents, from other repositories

Demonstrate

Agent for demonstrating VS Code features.

microsoft/vscode · 10 tokens

playwright-test-generator

Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.

microsoft/playwright · 151 tokens

.NET-Notebook-Migration-Agent

Expert .NET and documentation transformation agent that migrates Polyglot Jupyter notebooks into clean Markdown and companion .NET sample code.

microsoft/ai-agents-for-beginners · 33 tokens

AVM Owner Triage

Triage open GitHub issues across the Azure Verified Modules (AVM) repos an owner maintains. Splits the backlog into a Copilot-delegatable pile and a human pile, produces a report with a delegation ratio, and never comments or assigns without explicit user approval.

github/awesome-copilot · 61 tokens

Ultimate Transparent Thinking Beast Mode

Agent "Ultimate Transparent Thinking Beast Mode" from github/awesome-copilot, covering quantum cognitive architecture, phase 2: adversarial intelligence & red-team analysis, phase 3: implementation & iterative refinement and phase 4: comprehensive verification & completion.

github/awesome-copilot · 11 tokens

code-reviewer

Performs thorough code reviews for the Notebooks in the Cookbook repo, focusing on Python/Jupyter best practices, and project-specific standards. Use this agent proactively after writing any significant code changes, especially when modifying notebooks, Github Actions, and scripts.

anthropics/claude-cookbooks · 52 tokens