2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Binwalkで-eオプション(抽出)ができないとき

Posted at

環境

  • Windows 10
  • Binwalk v2.1.2-4521cf6
  • git bash for windows

問題

git bash上で

$ binwalk -e data

のように-eオプションを付けても,含まれているデータが抽出できなかった.

解決

ヘルプにファイルのシグネチャ,拡張子及び実行コマンドを指定できる-Dオプション或いは--ddオプションを使用する.

$ binwalk --dd=".*" data

これにより,データが抽出できた.

-D--ddオプションは以下の通り.

$ binwalk --help
...
    -D, --dd=<type:ext:cmd>      Extract <type> signatures, give the files an extension of <ext>, and execute <cmd>
...
2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?