Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/redthing1/infoflow
experimental multiarch dynamic binary analysis
https://github.com/redthing1/infoflow
Last synced: 5 days ago
JSON representation
experimental multiarch dynamic binary analysis
- Host: GitHub
- URL: https://github.com/redthing1/infoflow
- Owner: redthing1
- Created: 2022-07-03T06:09:45.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-19T22:59:36.000Z (over 1 year ago)
- Last Synced: 2024-11-08T08:27:33.689Z (about 2 months ago)
- Language: D
- Size: 4.45 MB
- Stars: 8
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# infoflow
experimental multiarch dynamic binary analysis
\[more information coming soon™\]
## overview
infoflow is an experimental framework for **opaque binary optimization via dynamic analysis**.
by observing the behavior of a program at runtime at the architectural level, we can **fully analyze its computation graph** and provide a suite of optimizations and introspection.
infoflow's flagship algorithm is **InfoFlow IFT**, which traces the flow of abstract information through a program to fully describe how any value in the cpu registers or memory was computed, with its value history and dependency graph. this dependency graph also allows us to optimize how the value is computed on the architectural level.
infoflow is designed to be as **architecture-agnostic** as possible, to maximize where it can be applied. this is accomplished with flexible abstractions to avoid duplicating logic but also retain the ability to make specializations to a particular architecture when needed.
## cite
```
@misc{redthing2022infoflow,
title={InfoFlow: Experimental Multiarch Dynamic Binary Analysis via Information Flow Tracking},
author={redthing1},
year={2022},
}
```