yara-x 1.15.0

A pure Rust implementation of YARA.
Documentation
1
2
3
4
5
6
7
8
9
10
11
error[E017]: `entrypoint` is unsupported
 --> line:3:5
  |
3 |     entrypoint == 0x1000
  |     ^^^^^^^^^^ the `entrypoint` keyword is not supported anymore
  |
help: use `pe.entry_point`, elf.entry_point` or `macho.entry_point`
  |
3 -     entrypoint == 0x1000
3 +     pe.entry_point == 0x1000
  |