Search for dependencies inside a compiled rust executable, download them and create a signature.
- Allows you to create a signature out of dependencies and proper rust stdlib, using the right toolchain.
- Give information about the version of the compiler used
- Give information about detected dependencies used
- Allows you to easily download a crate
Before | After |
---|---|
git clone https://github.com/N0fix/rustbininfo
cd rustbininfo
poetry install
rustbininfo --help
usage: rbi [-h] [-l {DEBUG,INFO,WARNING,ERROR,CRITICAL}] {info,download,download_sign,sign_stdlib,sign_target,sign_libs,get_std_lib} ...
This script aims at facilitate creation of signatures for rust executables. It can detect dependencies and rustc version used in a target, and create signatures using a signature provider.
options:
-h, --help show this help message and exit
-l {DEBUG,INFO,WARNING,ERROR,CRITICAL}, --log {DEBUG,INFO,WARNING,ERROR,CRITICAL}
Set the logging level
mode:
{info,download,download_sign,sign_stdlib,sign_target,sign_libs,get_std_lib}
Mode to use
info Get information about an executable
download Download a crate. Exemple: rand_chacha-0.3.1
download_sign Download a crate. And signs it. Exemple: rand_chacha-0.3.1
sign_stdlib Sign standard lib toolchain
sign_target Generate a signature for a given executable, using choosed signature provider
sign_libs Generate a signature for a given list of libs, using choosed signature provider
get_std_lib Download stdlib with symbols for a specific version of rustc
Usage examples:
rustbininfo -l DEBUG info 'challenge.exe'
rustbininfo download_sign IDA 'C:\Program Files\IDA Pro\idat64.exe' .\sigmake.exe hyper-0.14.27 1.70.0-x86_64-unknown-linux-gnu
rustbininfo download hyper-0.14.27
rustbininfo sign_stdlib --template ./profiles/ivanti_rust_sample.json -t 1.70.0-x86_64-unknown-linux-musl IDA ~/idat64 ~/sigmake
rustbininfo get_std_lib 1.70.0-x86_64-unknown-linux-musl
rustbininfo sign_libs -l .\sha2-0.10.8\target\release\sha2.lib -l .\crypt-0.4.2\target\release\crypt.lib IDA 'C:\Program Files\IDA Pro\idat64.exe' .\sigmake.exe
rustbininfo sign_target -t 1.70.0-x86_64-unknown-linux-musl --target ~/Downloads/target --no-std --signature_name malware_1.70.0_musl
> rustbininfo info C:\Users\user\Documents\flareon2023\infector.exe.mal_
[---- rustc ----]
version: ~1.68.2 (9eb3afe9ebe9c7d2b84b71002d44f4a0edac95e0)
[---- Dependencies ----]
rand-0.8.5
rand_chacha-0.3.1
This can be used to apply the proper signature, available here.
You have to build on the same platform then the platform used to build your target (likely linux if your target is an ELF, likely windows if your target is an EXE). IDA's provider requires IDA with IDAPython.
This tool is meant to be used with IDA. If you want to extend it to Ghidra, binja, r2, or watever tool you are using, just create a new provider that inherits BaseSigProvider
. You might need to adapt the command line to add your provider's argument.
While Ariane or Cerberus tries to recognize functions and sign them themselves, reinventing the wheel, this tool focuses on providing accurate information about the Rust compiler (rustc) version used in your target, as well as its dependencies. I delegate function recognition and signature tasks to tools specifically designed for those purposes (IDA, binja...). These tasks are incredibly complex to execute correctly, and these tools perform them much more effectively than I could.
This tool generates a signature using a signature provider defined under sig_providers/. You should be able to effortlessly add your own provider to generate a signature that your favorite tool will recognize.
Limitations are described in this blogpost.
This tool uses the great Mandiant's idb2pat.