Skip to content

A combined disassembler/static analysis/symbolic execution/debugger framework.

License

Notifications You must be signed in to change notification settings

marirs/vivisect-rs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

45 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Vivisect

Linux Arm7 Linux x86_64 macOS Windows

A crate to perform static analysis. This is a port of the vivisect library written in python.

See the original project.

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