Crates.io | vivisect |
lib.rs | vivisect |
version | 0.1.13 |
source | src |
created_at | 2022-11-27 13:49:27.87633 |
updated_at | 2024-10-10 06:02:22.620442 |
description | A cross-platform, ELF, Mach-o, and PE binary parsing and loading crate. |
homepage | https://github.com/marirs/vivisect-rs |
repository | https://github.com/marirs/vivisect-rs |
max_upload_size | |
id | 723743 |
size | 1,033,381 |
A crate to perform static analysis. This is a port of the vivisect library written in python.
[dependencies]
vivisect = "0.1.12"
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