yara-x 1.15.0

A pure Rust implementation of YARA.
Documentation
1
2
3
4
5
6
7
8
9
10
11
warning[consecutive_jumps]: consecutive jumps in hex pattern `$a`
 --> line:3:18
  |
3 |     $a = { 0F 84 [4] [0-7] 8D } 
  |                  --------- these consecutive jumps will be treated as [4-11]
  |
help: consider the following change
  |
3 -     $a = { 0F 84 [4] [0-7] 8D } 
3 +     $a = { 0F 84 [4-11] 8D } 
  |