#framework #fugue #fugue-bv

fugue-bv

A binary analysis framework written in Rust

2 releases

0.2.35 Feb 3, 2024
0.2.34 May 9, 2023

#1100 in Debugging

Download history 35/week @ 2024-12-21 13/week @ 2024-12-28 93/week @ 2025-01-04 150/week @ 2025-01-11 121/week @ 2025-01-18 45/week @ 2025-01-25 38/week @ 2025-02-01 66/week @ 2025-02-08 65/week @ 2025-02-15 74/week @ 2025-02-22 70/week @ 2025-03-01 67/week @ 2025-03-08 52/week @ 2025-03-15 77/week @ 2025-03-22 42/week @ 2025-03-29 74/week @ 2025-04-05

253 downloads per month
Used in 26 crates (3 directly)

MIT and maybe LGPL-3.0+

270KB
9K SLoC

Fugue logo

Fugue Binary Analysis Framework

DOI

Fugue is a binary analysis framework in the spirit of B2R2 and BAP, with a focus on providing reusable components to rapidly prototype new binary analysis tools and techniques.

Fugue is built around a core collection of crates, i.e., fugue-core. These crates provide a number of fundamental capabilities:

  • Data structures and types:

    • Architecture definitions (fugue-arch).
    • Bit vectors (fugue-bv).
    • Floating point numbers (fugue-fp).
    • Endian-aware conversion to and from various primitive types (fugue-bytes).
  • Program representations and abstractions:

    • A knowledge database to represent program binaries that can be populated using third-party tools (fugue-db).
    • Disassembly and lifting to intermediate representations (fugue-ir).

Prerequisites

git submodule init
git submodule update --recursive

Build

cargo build

Dependencies

~1–2.8MB
~51K SLoC