A crate to perform static analysis. This is a port of the vivisect library written in python.
- Rust 1.70+ (2021 edition)
[dependencies]
vivisect = "0.1.13"
OR
[dependencies]
vivisect = { git = "https://github.com/marirs/vivisect-rs", branch = "master" }
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();
}
Feel free to make a pull request to update or fix any bug.
License: Apache 2.0