Crates.io | aobscan-cli |
lib.rs | aobscan-cli |
version | 1.0.1 |
source | src |
created_at | 2023-03-30 14:00:57.719993 |
updated_at | 2023-03-30 14:00:57.719993 |
description | AOBscan CLI is a command-line utility for multi-threaded AOB memory scanning |
homepage | https://github.com/sonodima/aobscan-cli |
repository | https://github.com/sonodima/aobscan-cli |
max_upload_size | |
id | 825116 |
size | 910,970 |
AOBscan CLI is a command-line utility for multi-threaded AOB memory scanning based on the AOBscan library.
48 8b ? ? ? 48 8c ?? ?? ?? ??
488b??????00
aobscan -f "file" -- "48 8b ? ? ? ? ? 48 8c"
__text
section of a fileaobscan -f "file" -s "__text" -i -- "488b??????00"
See aobscan --help
for all the available arguments and their descriptions.
The easiest way to install AOBscan CLI is via Homebrew, using my TAP:
brew tap sonodima/sonodima
brew install aobscan
You can now launch the program with the aobscan
command.
Binaries for Windows, Linux and macOS are available on the releases page.
Rust is required to build from source. If you don't have it installed, you can install it using rustup.
git clone https://github.com/sonodima/aobscan-cli
cd aobscan-cli
cargo build --release
The compiled binary will be located at target/release/aobscan-cli
If you are interested in benchmarks or learning more about AOB scanning, check out the AOBscan library, which is the core of this project.