Skip to main content

binwalk

Use binwalk for authorized firmware, binary blob, archive, filesystem, and embedded-content triage with bounded extraction and evidence handling.

跳到安装

来源信息

仓库
Aethena-Lab/Z3r0
最近来源活动
2026年9月3日 10:00
检测到的 SKILL.md 语言
英语
星标
891
分支
193

安装方式

默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。

检查来源文件

决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。

正在显示 SKILL.md

SKILL.md
来源说明 · 只读预览
name
binwalk
description
Use binwalk for authorized firmware, binary blob, archive, filesystem, and embedded-content triage with bounded extraction and evidence handling.
# binwalk Use `binwalk` for authorized triage of firmware images, binary blobs, packed artifacts, and files that may contain embedded filesystems or compressed content. ## Help first Before constructing commands, run the installed help and use it as the source of truth: ```sh binwalk --help ``` ## Usage rules - Work only on explicitly provided artifacts in scope. - Start with identification/listing before extraction. - Extract only into a task-scoped output directory. - Treat signatures and offsets as leads; verify extracted files with `file`, hashes, directory review, or follow-up analysis. - Keep extraction bounded and avoid recursive or broad extraction unless the user explicitly asks and the artifact scope permits it. - Do not execute extracted files. - Save large listings, extraction logs, and recursive output to files rather than streaming them into the conversation. ## Common workflows Signature scan without extraction: ```sh binwalk firmware.bin ``` Bounded extraction into a task directory: ```sh mkdir -p binwalk-out binwalk -e -C binwalk-out firmware.bin ``` Review extracted file types before further analysis: ```sh find binwalk-out -maxdepth 3 -type f -exec file '{}' + ``` Use recursive extraction only when the artifact scope and expected expansion are clear: ```sh binwalk -Me -C binwalk-out firmware.bin ``` ## Output Report the artifact path, command used, output directory, notable offsets or embedded content, extracted paths, and limitations such as failed extraction or unsupported formats.
在 GitHub 查看