ffind
ファームウェアの解析やファイルの種類特定、ext2/3/4やF2FSファイルシステム抽出に役立ち、組み込みファイルシステムを分析・取り出す高度なファイル検索を実行するSkill。
📜 元の英語説明(参考)
Advanced file finder with type detection and filesystem extraction for analyzing firmware and extracting embedded filesystems. Use when you need to analyze firmware files, identify file types, or extract ext2/3/4 or F2FS filesystems.
🇯🇵 日本人クリエイター向け解説
ファームウェアの解析やファイルの種類特定、ext2/3/4やF2FSファイルシステム抽出に役立ち、組み込みファイルシステムを分析・取り出す高度なファイル検索を実行するSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o ffind.zip https://jpskill.com/download/17606.zip && unzip -o ffind.zip && rm ffind.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/17606.zip -OutFile "$d\ffind.zip"; Expand-Archive "$d\ffind.zip" -DestinationPath $d -Force; ri "$d\ffind.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
ffind.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
ffindフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 1
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
Ffind - 抽出機能を備えた高度なファイルファインダー
あなたは、ffind ツールを使用して、高度な型検出とオプションのファイルシステム抽出機能を備えたファイルを見つけて分析するのをユーザーを支援します。
ツールの概要
Ffind は、ファイルとディレクトリを分析し、ファイルの種類を識別し、より詳細な分析のためにファイルシステム (ext2/3/4、F2FS) を抽出できます。これは、ファームウェアおよび IoT デバイスの分析用に設計されています。
指示
ユーザーがファイルを分析したり、特定のファイルの種類を見つけたり、ファイルシステムを抽出したりするように求めてきた場合:
-
ターゲットを理解する:
- 分析したいパスを尋ねる
- ファイルシステムを抽出したいのか、それとも分析だけを行いたいのかを判断する
- すべてのファイルの種類が必要なのか、それともアーティファクトの種類だけが必要なのかを尋ねる
-
分析を実行する:
- iothackbot の bin ディレクトリから
ffindコマンドを使用する - 基本的な使用法:
ffind <path> [<path2> ...] - ファイルシステムを抽出するには:
ffind <path> -e - カスタム抽出ディレクトリ:
ffind <path> -e -d /path/to/output - すべてのファイルの種類を表示する:
ffind <path> -a - 詳細な出力:
ffind <path> -v
- iothackbot の bin ディレクトリから
-
出力形式:
--format text(デフォルト): 種類ごとの概要を含む、人間が読める色分けされた出力--format json: 機械可読な JSON--format quiet: 最小限の出力
-
抽出機能:
- ext2/ext3/ext4 ファイルシステムをサポート (e2fsprogs が必要)
- F2FS ファイルシステムをサポート (f2fs-tools が必要)
- 抽出には sudo 権限が必要
- デフォルトの抽出場所:
/tmp/ffind_<timestamp>
例
ファームウェアファイルを分析してファイルの種類を確認する:
ffind /path/to/firmware.bin
ファームウェアイメージからすべてのファイルシステムを抽出する:
sudo ffind /path/to/firmware.bin -e
複数のファイルを分析し、すべての種類を表示する:
ffind /path/to/file1.bin /path/to/file2.bin -a
カスタムディレクトリに抽出する:
sudo ffind /path/to/firmware.bin -e -d /tmp/my-extraction
重要な注意点
- 抽出には root/sudo 権限が必要
- 外部ツールが必要: e2fsprogs, f2fs-tools, util-linux
- デフォルトでは、セキュリティ分析に関連する「artifact」ファイルの種類を識別する
- 一般的な形式を含むすべてのファイルの種類を表示するには、
-aフラグを使用する
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
Ffind - Advanced File Finder with Extraction
You are helping the user find and analyze files with advanced type detection and optional filesystem extraction capabilities using the ffind tool.
Tool Overview
Ffind analyzes files and directories, identifies file types, and can extract filesystems (ext2/3/4, F2FS) for deeper analysis. It's designed for firmware and IoT device analysis.
Instructions
When the user asks to analyze files, find specific file types, or extract filesystems:
-
Understand the target:
- Ask what path(s) they want to analyze
- Determine if they want to extract filesystems or just analyze
- Ask if they want all file types or just artifact types
-
Execute the analysis:
- Use the ffind command from the iothackbot bin directory
- Basic usage:
ffind <path> [<path2> ...] - To extract filesystems:
ffind <path> -e - Custom extraction directory:
ffind <path> -e -d /path/to/output - Show all file types:
ffind <path> -a - Verbose output:
ffind <path> -v
-
Output formats:
--format text(default): Human-readable colored output with type summaries--format json: Machine-readable JSON--format quiet: Minimal output
-
Extraction capabilities:
- Supports ext2/ext3/ext4 filesystems (requires e2fsprogs)
- Supports F2FS filesystems (requires f2fs-tools)
- Requires sudo privileges for extraction
- Default extraction location:
/tmp/ffind_<timestamp>
Examples
Analyze a firmware file to see file types:
ffind /path/to/firmware.bin
Extract all filesystems from a firmware image:
sudo ffind /path/to/firmware.bin -e
Analyze multiple files and show all types:
ffind /path/to/file1.bin /path/to/file2.bin -a
Extract to a custom directory:
sudo ffind /path/to/firmware.bin -e -d /tmp/my-extraction
Important Notes
- Extraction requires root/sudo privileges
- Requires external tools: e2fsprogs, f2fs-tools, util-linux
- Identifies "artifact" file types relevant to security analysis by default
- Use
-aflag to see all file types including common formats