環境
- 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>
...