|
|
|
|
|
by hyper_reality
2328 days ago
|
|
It's a good article but there are much easier ways to use binwalk than presented here. In the first example he uses the "--signature" and "--term" flags, these are unnecessary. Running binwalk with no flags will produce the same output. To extract part of the file, he also uses dd with the "skip" and "count" options painfully calculated. You can just use: binwalk --dd='.*' img.bin and it will extract everything that matches the pattern - the pattern above will extract all found files. |
|