yara-x-parser 1.4.0

A parsing library for YARA rules.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
 rule test
 ├─ strings
 │  ├─ $a = "a" ascii
 │  ├─ $b = "b" ascii wide
 │  ├─ $c = "c" base64
 │  ├─ $d = "d" base64wide
 │  ├─ $e = "e" base64("foo")
 │  ├─ $f = "f" base64wide("foo")
 │  ├─ $g = "g" xor
 │  ├─ $h = "h" xor(1)
 │  └─ $i = "i" xor(20-30) private
 └─ condition
    └─ true