Build Status Coverage Status

Welcome to Falcon

Falcon is a formal binary analysis framework in Rust. Falcon provides a platform for implementing data-flow analysis and abstract interpretation over binary executables.

Questions / Support

Is Falcon suitable for use / Is Falcon stable?

As of the 0.2.0 release, I have implemented analyses over Falcon that have found bugs. The IL is stable, the lifters work, and Falcon is a usable platform for static analysis.

While not required, my analyses make heavy use of gluon bindings in a sister project named osprey. I find rust compile times frustrating for exploratory analysis, and if you wish to use Falcon, I recommed you learn the osprey bindings.

Falcon is suitable for Symbolic Execution, though support for Symbolic Execution has been removed from the public repository.

Building and Using

Falcon builds and runs on Rust stable.

I push to master for development. If you want to build off a Falcon which does not have unstable API changes, use a tagged release.

You will need the correct dependencies for bindgen to build the capstone bindings. The Dockerfile has everything required to get you set up.