yara-x 1.15.0

A pure Rust implementation of YARA.
Documentation
rule test_1 {
  strings:
    $aaa = { 61 61 61 }
  condition:
    all of them
}

rule test_2 {
   strings:
      $quoted_aaa = { 27 61 61 61 27 }
   condition:
      all of them
}

rule test_3 {
   strings:
      $quoted_aaa = { 22 61 61 61 22 }
   condition:
      all of them
}

rule test_4 {
   strings:
      $ = { 61 61 61 0D 0A 09 5C 62 62 62 }
   condition:
      all of them
}