30 releases (breaking)

0.25.0 Feb 16, 2024
0.24.0 Nov 29, 2023
0.23.0 Nov 17, 2023
0.20.0 May 12, 2023
0.1.0 May 30, 2018

#140 in Profiling

Download history 281/week @ 2023-12-18 84/week @ 2023-12-25 147/week @ 2024-01-01 166/week @ 2024-01-08 603/week @ 2024-01-15 535/week @ 2024-01-22 548/week @ 2024-01-29 748/week @ 2024-02-05 673/week @ 2024-02-12 763/week @ 2024-02-19 671/week @ 2024-02-26 535/week @ 2024-03-04 767/week @ 2024-03-11 888/week @ 2024-03-18 344/week @ 2024-03-25 1047/week @ 2024-04-01

3,077 downloads per month
Used in 6 crates (via yara)

MIT/Apache

4MB
99K SLoC

C 57K SLoC // 0.1% comments Rust 34K SLoC // 0.0% comments Happy 3K SLoC Visual Studio Project 2K SLoC C++ 785 SLoC // 0.3% comments Bazel 698 SLoC // 0.3% comments Automake 317 SLoC // 0.1% comments Batch 212 SLoC Visual Studio Solution 192 SLoC M4 191 SLoC // 0.4% comments RPM Specfile 85 SLoC // 0.1% comments JavaScript 85 SLoC // 0.0% comments NuGet Config 48 SLoC Python 35 SLoC // 0.8% comments Shell 4 SLoC // 0.3% comments Bitbake 2 SLoC

Contains (Windows exe, 2MB) 756684f4017ba7e931a26724ae61606b16b5f8cc84ed38a260a34e50c5016f59, (DOS exe, 360KB) ca21e1c32065352d352be6cde97f89c141d7737ea92434831f998080783d5386, (DOS exe, 320KB) yara/tests/data/pe_mingw, (Windows exe, 265KB) clusterfuzz-testcase-minimized-pe_fuzzer-5671228022718464, (DOS exe, 140KB) 33fc70f99be6d2833ae48852d611c8048d0c053ed0b2c626db4dbe902832a08b, (DOS exe, 79KB) yara/tests/data/pe_imports and 65 more.

yara-sys

Crates.io Documentation

Native bindings for the Yara library from VirusTotal. Only works with Yara v4.

More documentation can be found on the Yara's documentation.

Features

By default, this crate uses bindgen to generate bindings on-the-fly, but you can also use the following features to use pre-built bindings file for different version of Yara. Just make sure the version you specify is the same that the version on your system!

  • bindgen: recommended: this is the default feature, to use generated bindings.
  • vendored: automatically compile and link libyara v4.5.0.
  • bundled-4_5_0: use pre-generated bindings for Yara 4.5.0. Useful if you do not want to install LLVM to run bindgen. However, you'll have to make sure you use a version of Yara with the same major and minor version number. List of supported targets:
    • x86_64-apple-darwin
    • x86_64-pc-windows-gnu
    • x86_64-pc-windows-msvc
    • x86_64-unknown-linux-gnu
    • x86_64-unknown-linux-musl

This is the default, when the vendored option is disabled. You can specify the following environment variables:

  • YARA_LIBRARY_PATH specifies the directory containing the Yara library binary.
  • YARA_INCLUDE_DIR specifies the directory containing the Yara include files, if you use the bindgen feature.

You can also specify the yara-static feature to link Yara statically rather than dynamically.

Compile options for libyara v4.5.0

When using the vendored feature, Yara will be automatically built and linked statically with yara-sys. You can set the following features change how Yara is built:

Features:

  • module-cuckoo: enable cuckoo module (depends on Jansson for parsing JSON).
  • module-magic: enable magic module (depends on libmagic).
  • module-macho: enable macho module.
  • module-dex: enable dex module.
  • module-debug-dex: enable dex module debugging.
  • module-dotnet: enable dotnet module.
  • module-hash: enable hash module.
  • profiling: enable rules profiling support.
  • ndebug: enable NDEBUG.
  • openssl-static: enable static link to OpenSSL rather then dynamically link.

ENV variables

  • YARA_CRYPTO_LIB - which crypto lib to use for the hash and pe modules. Header files must be available during compilation, and the lib must be installed on the target platform. Recognized values: OpenSSL, BoringSSL, Wincrypt, CommonCrypto or disable. (default: will choose based on target os).
  • YARA_DEBUG_VERBOSITY - Set debug level information on runtime (default: 0)
  • YARA_OPENSSL_DIR - If specified, the directory of an OpenSSL installation. The directory should contain lib and include subdirectories containing the libraries and headers respectively.
  • YARA_OPENSSL_LIB_DIR and YARA_OPENSSL_INCLUDE_DIR - If specified, the directories containing the OpenSSL libraries and headers respectively. This can be used if the OpenSSL installation is split in a nonstandard directory layout.

Each of these variables can also be supplied with certain prefixes and suffixes, in the following prioritized order:

  1. <var>_<target> - for example, YARA_CRYPTO_LIB_x86_64-unknown-linux-gnu
  2. <var>_<target_with_underscores> - for example, YARA_CRYPTO_LIB_x86_64_unknown_linux_gnu
  3. <var> - a plain YARA_CRYPTO_LIB, as above.

If none of these variables exist, yara-sys uses built-in defaults

License

Licensed under either of

at your option.

Dependencies