yara-x 1.15.0

A pure Rust implementation of YARA.
Documentation
1
2
3
4
5
6
7
8
9
10
11
rule test_1 {
   condition:
       with a = 1, b = 2, c = 3 : ( a == b )
}

rule test_2 {
   condition:
       with a = 1, b = 2, c = 3 : (
         a == 1 and b == 2 and with c = 4 : ( c == 4 )
       )
}