Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/axt/cfg-explorer
CFG explorer for binaries
https://github.com/axt/cfg-explorer
analysis angr binary cfg visualization
Last synced: 3 months ago
JSON representation
CFG explorer for binaries
- Host: GitHub
- URL: https://github.com/axt/cfg-explorer
- Owner: axt
- License: bsd-2-clause
- Created: 2017-08-30T12:44:13.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-02-07T14:16:06.000Z (9 months ago)
- Last Synced: 2024-04-14T11:20:18.853Z (7 months ago)
- Topics: analysis, angr, binary, cfg, visualization
- Language: JavaScript
- Homepage:
- Size: 4.7 MB
- Stars: 70
- Watchers: 7
- Forks: 14
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-hacking-lists - axt/cfg-explorer - CFG explorer for binaries (JavaScript)
README
# cfg-explorer
[![license](https://img.shields.io/github/license/axt/cfg-explorer?style=flat-square)](https://github.com/axt/cfg-explorer)
![platform](https://img.shields.io/badge/platform-Linux-yellowgreen?style=flat-square)
[![pyversion](https://img.shields.io/pypi/pyversions/cfg-explorer?style=flat-square)](https://pypi.org/project/cfg-explorer/)
[![version](https://img.shields.io/pypi/v/cfg-explorer?style=flat-square)](https://pypi.org/project/cfg-explorer/)
[![download](https://img.shields.io/pypi/dm/cfg-explorer?style=flat-square)](https://pypi.org/project/cfg-explorer/)CFG explorer is a simple utility which can be used to explore control flow graphs of binary programs.
It uses [angr](https://github.com/angr/angr) binary analysis framework, for CFG recovery, and renders the CFG to SVGs, with the help of [bingraphvis](http://github.com/axt/bingraphvis/).
The generated SVGs can be navigated by clicking on the _function_ or the _callsite_ nodes.
Besides, now it can also export multiple formats of static CFG files to your local machine, including:
- .canon
- .cmap
- .cmapx
- .cmapx_np
- **.dot**
- .fig
- .gd
- .gd2
- .gif
- .imap
- .imap_np
- .ismap
- .jpe
- **.jpeg**
- **.jpg**
- .mp
- **.pdf**
- .plain
- .plain-ext
- **.png**
- .ps
- .ps2
- **.svg**
- .svgz
- .vml
- .vmlz
- .vrml
- .wbmp
- .xdot
- **.raw**CFGs starting from multiple start addresses or for multiple functions can also be automatically exported to multiple files at once with different suffixes in their filenames.
## Note
This project is in its very early stage!
## Install
```
$ pip install cfg-explorer
```## Usage
### CLI
After installation, `cfg_explorer` can be easily called in command lines as:
```
$ cfgexplorer --helpusage: cfgexplorer [-h] [-v] [-s [STARTS [STARTS ...]]] [-P PORT] [-p] [-l]
[-o OUTFILE]
binarypositional arguments:
binary the binary to exploreoptional arguments:
-h, --help show this help message and exit
-v, --verbose increase output verbosity
-s [STARTS [STARTS ...]], --start [STARTS [STARTS ...]]
start addresses
-P PORT, --port PORT server port
-p, --pie is position independent
-l, --launch launch browser
-o OUTFILE, --output OUTFILE
output file path, only support for ['canon', 'cmap',
'cmapx', 'cmapx_np', 'dot', 'fig', 'gd', 'gd2', 'gif',
'imap', 'imap_np', 'ismap', 'jpe', 'jpeg', 'jpg',
'mp', 'pdf', 'plain', 'plain-ext', 'png', 'ps', 'ps2',
'svg', 'svgz', 'vml', 'vmlz', 'vrml', 'wbmp', 'xdot',
'raw']
```For example:
```
$ cfgexplorer /your/binary -l
```The command above will build the CFG, spawn a web server, and open it in your browser.
### Module
You can also utilize `cfg_explore` function in it as other common modules in Python:
```py
from cfgexplorer import cfg_explorecfg_explore(binary=r'/your/binary', launch=True)
```The codes will do what the `cfgexplorer` does in the previous example. If you want to shut down the app, you need to interrupt your Python interpreter as well. So the function is more often used by specifying `output` to generate output files in a Python program like:
```py
cfg_explore(binary=r'/your/binary', output='./cfg_output.svg')
```The code above exports CFG as `svg` format to file path `./cfg_output.svg`
The function is defined as follow:
```py
cfg_explore(binary, starts=[], port=5000, pie=False, launch=False, output='')
```- binary(*str*): the path of the binary file to analysis
- starts(*list*): the start points (address) in CFGs, if none, the CFG will start with main func entry address
- port(*int*): server port to host the web app. make sure the port is idle now.
- pie(*bool*): whether the analysis position-independent
- launch(*bool*): Whether launch a browser to view CFG immediately
- output(*str*): the output file path. only support certain formats. If you leave it an empty string, no output will be generated and the interactive web app will start. Otherwise, no app will be launched and the CFGs will be exported to specified files.Detailed usages of this function are available in [examples/demo.ipynb](./examples/demo.ipynb).
## Annotation Style
Edges:
Edge class | Color | Style
---------|----------|---------
Conditional True | Green |
Conditional False | Red |
Unconditional | Blue|
Next | Blue | Dashed
Call | Black |
Return | Gray |
Fake Return | Gray | Dotted
Unknown | Orange |## Limitations
* works on Linux only
* at the moment, the result is simply an SVG file, i plan to add a small frontend around it## Screenshots
### Function graph mode (`/function/0x123456`)
![fgraph][fgraph]### CFG mode (`/cfg/0x123456`)
![cfg][cfg]
[fgraph]: http://i.imgur.com/9c1Ah9y.png
[cfg]: http://i.imgur.com/UrFroxt.png