https://github.com/marirs/vivisect-rs
A combined disassembler/static analysis/symbolic execution/debugger framework.
https://github.com/marirs/vivisect-rs
disassembler emulation pe reverse-engineering rust rust-crate rust-lang rust-library vivisect
Last synced: about 1 year ago
JSON representation
A combined disassembler/static analysis/symbolic execution/debugger framework.
- Host: GitHub
- URL: https://github.com/marirs/vivisect-rs
- Owner: marirs
- License: apache-2.0
- Created: 2022-11-27T13:01:31.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-10-10T06:08:44.000Z (over 1 year ago)
- Last Synced: 2025-03-24T13:05:15.550Z (about 1 year ago)
- Topics: disassembler, emulation, pe, reverse-engineering, rust, rust-crate, rust-lang, rust-library, vivisect
- Language: Rust
- Homepage:
- Size: 501 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Vivisect
[](https://github.com/marirs/vivisect-rs/actions/workflows/linux_arm7.yml)
[](https://github.com/marirs/vivisect-rs/actions/workflows/linux_x86-64.yml)
[](https://github.com/marirs/vivisect-rs/actions/workflows/macos.yml)
[](https://github.com/marirs/vivisect-rs/actions/workflows/windows.yml)
A crate to perform static analysis. This is a port of the vivisect library written in python.
[See the original project.](https://github.com/vivisect/vivisect)
### Requirements
- Rust 1.70+ (2021 edition)
### Usage
```toml
[dependencies]
vivisect = "0.1.13"
```
OR
```toml
[dependencies]
vivisect = { git = "https://github.com/marirs/vivisect-rs", branch = "master" }
```
### Example
```rust
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