13 releases
0.1.13 | Oct 10, 2024 |
---|---|
0.1.12 | May 6, 2024 |
0.1.11 | Dec 4, 2022 |
0.1.10 | Nov 28, 2022 |
#532 in Parser implementations
679 downloads per month
1MB
19K
SLoC
Vivisect
A crate to perform static analysis. This is a port of the vivisect library written in python.
Requirements
- Rust 1.70+ (2021 edition)
Usage
[dependencies]
vivisect = "0.1.12"
OR
[dependencies]
vivisect = { git = "https://github.com/marirs/vivisect-rs", branch = "master" }
Example
use vivisect::workspace::VivWorkspace;
pub fn main() {
let sample_path = "path_to_the_workspace";
let mut workspace = VivWorkspace::new("", false);
workspace.load_from_file(sample_path, None, None);
workspace.analyze();
}
Contribution
Feel free to make a pull request to update or fix any bug.
License: Apache 2.0
Dependencies
~43MB
~1M SLoC