yara-x-parser 1.6.0

A parsing library for YARA rules.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
rule test {
	meta:
	  some_int = 1
	  some_int = -2
	  some_float = 3.14
	  some_float = -3.14
	  some_bool = true
	  some_bool = false
	  some_str = "foo"
	  some_str = """foo
	  bar"""
	condition:
		true
}