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 = { 01 02 [1-2][3-4][1-3] 03 04 } 
  |                  --------------- these consecutive jumps will be treated as [5-9]
  |
help: consider the following change
  |
3 -     $a = { 01 02 [1-2][3-4][1-3] 03 04 } 
3 +     $a = { 01 02 [5-9] 03 04 } 
  |