Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork3
Reverse engineering assistant that extracts strings and related pseudo-code from a binary file.
License
0xdea/augur
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
"In fact I've actually triggered buffer overflows by just entering my real name."
-- A.
Augur is a blazing fast IDA Pro headless plugin that extracts strings and related pseudo-code from a binary file.It stores pseudo-code of functions that reference strings in an organized directory tree.
- Blazing fast, headless user experience courtesy of IDA Pro 9 and Binarly's idalib Rust bindings.
- Support for binary targets for any architecture implemented by IDA Pro's Hex-Rays decompiler.
- Decompilation feature based on the
decompile_to_file
API exported byharuspex. - Pseudo-code of each function that references a specific string is stored in a separate directory.
- https://github.com/0xdea/rhabdomancer
- https://github.com/0xdea/haruspex
- https://docs.hex-rays.com/release-notes/9_0#headless-processing-with-idalib
- https://github.com/binarly-io/idalib
The easiest way to get the latest release is viacrates.io:
- Download, install, and configure IDA Pro (seehttps://hex-rays.com/ida-pro).
- Download and extract the IDA SDK (seehttps://docs.hex-rays.com/developer-guide).
- Install LLVM/Clang (seehttps://rust-lang.github.io/rust-bindgen/requirements.html).
- On Linux/macOS, install as follows:On Windows, instead, use the following commands:
export IDASDKDIR=/path/to/idasdkexport IDADIR=/path/to/ida# if not set, the build script will check common locationscargo install augur
$env:LIBCLANG_PATH="\path\to\clang+llvm\bin"$env:PATH="\path\to\ida;$env:PATH"$env:IDASDKDIR="\path\to\idasdk"$env:IDADIR="\path\to\ida"# if not set, the build script will check common locationscargo install augur
Alternatively, you can build fromsource:
- Download, install, and configure IDA Pro (seehttps://hex-rays.com/ida-pro).
- Download and extract the IDA SDK (seehttps://docs.hex-rays.com/developer-guide).
- Install LLVM/Clang (seehttps://rust-lang.github.io/rust-bindgen/requirements.html).
- On Linux/macOS, compile as follows:On Windows, instead, use the following commands:
git clone --depth 1 https://github.com/0xdea/augurcd augurexport IDASDKDIR=/path/to/idasdk# or edit .cargo/config.tomlexport IDADIR=/path/to/ida# if not set, the build script will check common locationscargo build --release
git clone--depth1 https://github.com/0xdea/augurcd augur$env:LIBCLANG_PATH="\path\to\clang+llvm\bin"$env:PATH="\path\to\ida;$env:PATH"$env:IDASDKDIR="\path\to\idasdk"$env:IDADIR="\path\to\ida"# if not set, the build script will check common locationscargo build--release
- Make sure IDA Pro is properly configured with a valid license.
- Run as follows:
augur<binary_file>
- Find the extracted pseudo-code of each decompiled function in the
binary_file.str
directory, organized by string:vim<binary_file>.strcode<binary_file>.str
- IDA Pro 9.0.241217 - Latest compatible: v0.2.3.
- IDA Pro 9.1.250226 - Latest compatible: current version.
Note: checkidalib documentation for additional information.
- Integrate withoneiromancer.
- Allow users to choose to process string cross-references even if the decompiler is unavailable.
- Implement functionality similar tohttps://github.com/joxeankoret/idamagicstrings.
About
Reverse engineering assistant that extracts strings and related pseudo-code from a binary file.
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Sponsor this project
Uh oh!
There was an error while loading.Please reload this page.
Packages0
Uh oh!
There was an error while loading.Please reload this page.