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 언어
영어
스타
846
포크
194

설치 방법

기본적으로 소스를 먼저 확인하는 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에서 보기