_ Polypyus _ learns to locate functions in raw binaries by extracting known functions from similar binaries. Thus, it is a firmware historian. _ Polypyus _ works without disassembling these binaries, which is an advantage for binaries that are complex to disassemble and where common tools miss functions. In addition, the binary-only approach makes it very fast and run within a few seconds. However, this approach requires the binaries to be for the same architecture and have similar compiler options.
_ Polypyus _ integrates into the workflow of existing tools like _ Ghidra _ , _ IDA _ , _ BinDiff _ , and _ Diaphora _ . For example, it can import previously annotated functions and learn from these, and also export found functions to be imported into _ IDA _ . Since _ Polypyus _ uses rather strict thresholds, it only found correct matches in our experiments. While this leads to fewer results than in existing tools, it is a good entry point for loading these matches into _ IDA _ to improve its auto analysis results and then run _ BinDiff _ on top.
What Polypyus solves
When working on raw firmware binaries, namely various _ Broadcom _ and _ Cypress _ Bluetooth firmware versions, we found that _ IDA _ auto analysis often identified function starts incorrectly. In _ IDA Pro 6.8 _ the auto analysis is a bit more aggressive, leading to more results but also more false positives. Overall, _ IDA Pro 7.2 _ was more pessimistic, but missed a lot of functions. This led to only a few _ BinDiff _ matches between our firmwares in _ IDA Pro 6.8 _ and no useful matches at all in _ IDA Pro 7.2 _ .
Interestingly, _ BinDiff _ often failed to identify functions that, except from branches, were byte-identical. Note that _ Polypyus _ searches exactly for these byte-identical functions. We assume that _ BinDiff _ fails at these functions due to a different call graph produced by missing functions and false positives. Sometimes, these functions were already recognized by _ IDA _ , but often, _ IDA _ did either not recognize these as code or not mark them as function. Note that _ Diaphora _ has similar problems, as it exports functions identified by _ IDA _ before further processing them.
Moreover, while we found that _ Amnesia _ finds many functions, it also finds many false positives. However, many functions have a similar stack frame setup in the beginning. Thus, _ Polypyus _ has an option to learn common function starts from the annotated input binaries and apply this to other binaries to identify functions without matching their name. This optional step is only applied to the regions in which no functions were previously located, this way the common function starts method and the main function finding do not conflict.
How it works
_ Polypyus _ creates fuzzy binary matchers by comparing common functions in a collection of annotated firmware binaries.
Currently, the following annotations are supported:
patch.elf
file, which is a special ELF file containing only symbol definitions. .symdefs
file as it is produced by most ARM compilers. .csv
file with a format documented in the examples. These annotations contain the address, size, and name of known functions. The more commonalities the input binaries in the history collection have, the better for _ Polypyus _ performance and results. Given several slightly different functions, _ Polypyus _ creates very good matchers.
How to install it
_ Polypyus _ requires Python 3 >= 3.6. We advise the use of a virtualenv for the following installation. Clone this repository and in this folder run:
pip install .
How to run it
After the installation the following commands are available:
polypyus-gui
polypyus-cli
Using Polypyus
_ Polypyus _ is available through a graphical and a command-line interface. Both, the GUI polypyus-gui
and the CLI polypyus-cli
, take these arguments during invocation:
--verbose is the verbosity level. By default, it shows warnings -v shows info -vv show debug information.
--project sets the location of the project file. This is either a file path or ":memory:".
--help Show help message.
The project option facilitates you to store your work for different contexts in different files and also reopen them again.
Using the GUI
The general GUI workflow goes from the left-hand side of the window to the right. First, binaries are added to the history. Then, symbol annotations to the entries in the history follow. Afterward, target binaries can be added. For the matching, hit Create matchers from history
. Once the matchers are created, single targets can be selected, or all targets can be matched by selecting batch match
. Finally, the findings can be exported to a .csv
file.
In the following you can see a demo video where _ Polypyus _ only takes a few seconds to learn from two input binaries, annotate them, create matchers, and apply matches to a new binary.
Using the CLI
The upside to using the CLI is its ability to be automated. As of now, the output format of the CLI is subject to change. However, here is an example of calling it:
polypyus-cli --history examples/history/20819-A1.bin --annotation examples/history/20819-A1_patch.elf --history examples/history/20735B1.bin --annotation examples/history/20735B1_patch.elf --project test.sqlite
polypyus-cli --target examples/history/20739B1.bin --project test.sqlite
The first command creates test.sqlite
as a new project file and imports 20819-A1.bin
and 20735B1.bin
with their respective patch.elf
files. The second invocation reuses the same project file and matches against the binary 20739B1.bin
. For each command, the number of --history
and --annotation
needs to match. These two commands could also be combined into one by adding the --target
argument to the first command.
How does it work internally?
We will release a paper soon. Until then, you can take a look into Jan's Master thesis final presentation , which covers the issues encountered when working with conventional binary diffing approaches in ARM Thumb2 mode, and how the alternate binary-only approach works.
Recommended IDA Workflow
After some internal testing, we can recommend the following workflow when working with _ IDA Pro _ and _ Polypyus _ :
Alt-g
, T=0x1
). 0x0
with rx
, RAM at 0x200000
with rwx
(at least for the Bluetooth firmware). 0x4
( o
). On the _ CYW20735 _ firmware it points to 0x3bc+1
. Go back one byte and create a function ( p
). ...now your IDA database might be somewhat useful :) Still a lot of things the disassembler fails at within ARM Thumb2 but way better than anything IDA does on its own.